2017-11-19 03:15:29 -05:00
|
|
|
/*
|
|
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the 86Box distribution.
|
|
|
|
|
*
|
|
|
|
|
* user Interface module for WinAPI on Windows.
|
|
|
|
|
*
|
2020-03-25 00:46:02 +02:00
|
|
|
*
|
2017-11-19 03:15:29 -05:00
|
|
|
*
|
|
|
|
|
* Authors: Sarah Walker, <http://pcem-emulator.co.uk/>
|
|
|
|
|
* Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
|
|
|
|
*
|
2020-01-19 06:19:07 +01:00
|
|
|
* Copyright 2008-2020 Sarah Walker.
|
|
|
|
|
* Copyright 2016-2020 Miran Grca.
|
|
|
|
|
* Copyright 2017-2020 Fred N. van Kempen.
|
|
|
|
|
* Copyright 2019,2020 GH Cao.
|
2017-11-19 03:15:29 -05:00
|
|
|
*/
|
|
|
|
|
#define UNICODE
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
#include <commctrl.h>
|
|
|
|
|
#include <stdint.h>
|
2018-05-21 19:04:05 +02:00
|
|
|
#include <stdio.h>
|
2017-11-19 03:15:29 -05:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <time.h>
|
|
|
|
|
#include <wchar.h>
|
2020-03-29 14:24:42 +02:00
|
|
|
#include <86box/86box.h>
|
|
|
|
|
#include <86box/config.h>
|
|
|
|
|
#include <86box/device.h>
|
|
|
|
|
#include <86box/keyboard.h>
|
|
|
|
|
#include <86box/mouse.h>
|
|
|
|
|
#include <86box/video.h>
|
|
|
|
|
#include <86box/vid_ega.h> // for update_overscan
|
|
|
|
|
#include <86box/plat.h>
|
|
|
|
|
#include <86box/plat_midi.h>
|
|
|
|
|
#include <86box/ui.h>
|
|
|
|
|
#include <86box/win.h>
|
2020-07-19 19:21:03 -03:00
|
|
|
#include <86box/version.h>
|
2019-12-04 13:12:34 +01:00
|
|
|
#ifdef USE_DISCORD
|
2020-03-29 14:24:42 +02:00
|
|
|
# include <86box/win_discord.h>
|
2019-12-04 13:12:34 +01:00
|
|
|
#endif
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#define TIMER_1SEC 1 /* ID of the one-second timer */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Platform Public data, specific. */
|
|
|
|
|
HWND hwndMain, /* application main window */
|
|
|
|
|
hwndRender; /* machine render window */
|
|
|
|
|
HMENU menuMain; /* application main menu */
|
2018-07-15 01:41:53 +02:00
|
|
|
HICON hIcon[256]; /* icon data loaded from resources */
|
2017-11-19 03:15:29 -05:00
|
|
|
RECT oldclip; /* mouse rect */
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
int sbar_height = 23; /* statusbar height */
|
|
|
|
|
int minimized = 0;
|
2017-11-19 03:15:29 -05:00
|
|
|
int infocus = 1;
|
2018-02-10 00:01:52 +01:00
|
|
|
int rctrl_is_lalt = 0;
|
2018-10-28 18:26:51 +01:00
|
|
|
int user_resize = 0;
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2020-05-12 13:36:47 +02:00
|
|
|
extern char openfilestring[512];
|
|
|
|
|
extern WCHAR wopenfilestring[512];
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Local data. */
|
|
|
|
|
static wchar_t wTitle[512];
|
|
|
|
|
static HHOOK hKeyboardHook;
|
2019-11-02 16:18:18 +01:00
|
|
|
static int hook_enabled = 0, manager_wm = 0;
|
2019-11-03 03:18:30 +01:00
|
|
|
static int save_window_pos = 0, pause_state = 0;
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
|
2017-12-15 18:47:29 +01:00
|
|
|
static int vis = -1;
|
|
|
|
|
|
2017-12-15 00:42:10 -05:00
|
|
|
/* Set host cursor visible or not. */
|
|
|
|
|
void
|
|
|
|
|
show_cursor(int val)
|
|
|
|
|
{
|
2017-12-15 18:47:29 +01:00
|
|
|
if (val == vis)
|
|
|
|
|
return;
|
2017-12-15 00:42:10 -05:00
|
|
|
|
2017-12-15 18:47:29 +01:00
|
|
|
if (val == 0) {
|
2018-04-25 23:51:13 +02:00
|
|
|
while (1)
|
2017-12-15 18:47:29 +01:00
|
|
|
if (ShowCursor(FALSE) < 0) break;
|
2018-04-25 23:51:13 +02:00
|
|
|
} else
|
2017-12-15 18:47:29 +01:00
|
|
|
ShowCursor(TRUE);
|
|
|
|
|
|
2017-12-15 00:42:10 -05:00
|
|
|
vis = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
HICON
|
|
|
|
|
LoadIconEx(PCTSTR pszIconName)
|
|
|
|
|
{
|
|
|
|
|
return((HICON)LoadImage(hinstance, pszIconName, IMAGE_ICON,
|
|
|
|
|
16, 16, LR_SHARED));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
video_toggle_option(HMENU h, int *val, int id)
|
|
|
|
|
{
|
|
|
|
|
startblit();
|
|
|
|
|
video_wait_for_blit();
|
|
|
|
|
*val ^= 1;
|
|
|
|
|
CheckMenuItem(h, id, *val ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
endblit();
|
|
|
|
|
config_save();
|
|
|
|
|
device_force_redraw();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
ResetAllMenus(void)
|
|
|
|
|
{
|
2017-11-20 01:58:23 -05:00
|
|
|
#ifndef DEV_BRANCH
|
|
|
|
|
/* FIXME: until we fix these.. --FvK */
|
|
|
|
|
EnableMenuItem(menuMain, IDM_CONFIG_LOAD, MF_DISABLED);
|
|
|
|
|
EnableMenuItem(menuMain, IDM_CONFIG_SAVE, MF_DISABLED);
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-02-10 00:01:52 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_ACTION_RCTRL_IS_LALT, MF_UNCHECKED);
|
|
|
|
|
|
2018-02-11 20:51:42 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_UPDATE_ICONS, MF_UNCHECKED);
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
#ifdef ENABLE_LOG_TOGGLES
|
|
|
|
|
# ifdef ENABLE_BUSLOGIC_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_BUSLOGIC, MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_CDROM_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_CDROM, MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_D86F_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_D86F, MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_FDC_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_FDC, MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_IDE_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_IDE, MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_SERIAL_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_SERIAL, MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_NIC_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_NIC, MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_FORCE43, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_OVERSCAN, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_INVERT, MF_UNCHECKED);
|
|
|
|
|
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_RESIZE, MF_UNCHECKED);
|
2019-12-05 00:51:07 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_VID_SDL_SW, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_SDL_HW, MF_UNCHECKED);
|
2020-04-18 11:51:54 +02:00
|
|
|
#ifdef USE_VNC
|
2019-12-05 00:51:07 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_VID_VNC, MF_UNCHECKED);
|
2020-04-18 11:51:54 +02:00
|
|
|
#endif
|
2017-11-19 03:15:29 -05:00
|
|
|
CheckMenuItem(menuMain, IDM_VID_FS_FULL+0, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_FS_FULL+1, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_FS_FULL+2, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_FS_FULL+3, MF_UNCHECKED);
|
2018-01-17 18:43:36 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_VID_FS_FULL+4, MF_UNCHECKED);
|
2017-11-19 03:15:29 -05:00
|
|
|
CheckMenuItem(menuMain, IDM_VID_REMEMBER, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_SCALE_1X+0, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_SCALE_1X+1, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_SCALE_1X+2, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_SCALE_1X+3, MF_UNCHECKED);
|
|
|
|
|
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_CGACON, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAYCT_601+0, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAYCT_601+1, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAYCT_601+2, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAY_RGB+0, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAY_RGB+1, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAY_RGB+2, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAY_RGB+3, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAY_RGB+4, MF_UNCHECKED);
|
|
|
|
|
|
2018-02-10 00:01:52 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_ACTION_RCTRL_IS_LALT, rctrl_is_lalt ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
|
2018-02-11 20:51:42 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_UPDATE_ICONS, update_icons ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
#ifdef ENABLE_LOG_TOGGLES
|
|
|
|
|
# ifdef ENABLE_BUSLOGIC_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_BUSLOGIC, buslogic_do_log?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_CDROM_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_CDROM, cdrom_do_log?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_D86F_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_D86F, d86f_do_log?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_FDC_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_FDC, fdc_do_log?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_IDE_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_IDE, ide_do_log?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_SERIAL_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_SERIAL, serial_do_log?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
# ifdef ENABLE_NIC_LOG
|
|
|
|
|
CheckMenuItem(menuMain, IDM_LOG_NIC, nic_do_log?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_FORCE43, force_43?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_OVERSCAN, enable_overscan?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_INVERT, invert_display ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
|
|
|
|
|
if (vid_resize)
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_RESIZE, MF_CHECKED);
|
2019-12-05 00:51:07 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_VID_SDL_SW+vid_api, MF_CHECKED);
|
2017-11-19 03:15:29 -05:00
|
|
|
CheckMenuItem(menuMain, IDM_VID_FS_FULL+video_fullscreen_scale, MF_CHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_REMEMBER, window_remember?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_SCALE_1X+scale, MF_CHECKED);
|
|
|
|
|
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_CGACON, vid_cga_contrast?MF_CHECKED:MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAYCT_601+video_graytype, MF_CHECKED);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_VID_GRAY_RGB+video_grayscale, MF_CHECKED);
|
2019-12-04 21:55:35 +01:00
|
|
|
|
|
|
|
|
#ifdef USE_DISCORD
|
|
|
|
|
if (discord_loaded)
|
|
|
|
|
CheckMenuItem(menuMain, IDM_DISCORD, enable_discord ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
else
|
|
|
|
|
EnableMenuItem(menuMain, IDM_DISCORD, MF_DISABLED);
|
|
|
|
|
#endif
|
2017-11-19 03:15:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static LRESULT CALLBACK
|
|
|
|
|
LowLevelKeyboardProc(int nCode, WPARAM wParam, LPARAM lParam)
|
|
|
|
|
{
|
|
|
|
|
BOOL bControlKeyDown;
|
|
|
|
|
KBDLLHOOKSTRUCT *p;
|
|
|
|
|
|
2018-05-21 19:04:05 +02:00
|
|
|
if (nCode < 0 || nCode != HC_ACTION || (!mouse_capture && !video_fullscreen))
|
2017-11-19 03:15:29 -05:00
|
|
|
return(CallNextHookEx(hKeyboardHook, nCode, wParam, lParam));
|
|
|
|
|
|
|
|
|
|
p = (KBDLLHOOKSTRUCT*)lParam;
|
|
|
|
|
|
|
|
|
|
/* disable alt-tab */
|
|
|
|
|
if (p->vkCode == VK_TAB && p->flags & LLKHF_ALTDOWN) return(1);
|
|
|
|
|
|
|
|
|
|
/* disable alt-space */
|
|
|
|
|
if (p->vkCode == VK_SPACE && p->flags & LLKHF_ALTDOWN) return(1);
|
|
|
|
|
|
|
|
|
|
/* disable alt-escape */
|
|
|
|
|
if (p->vkCode == VK_ESCAPE && p->flags & LLKHF_ALTDOWN) return(1);
|
|
|
|
|
|
|
|
|
|
/* disable windows keys */
|
|
|
|
|
if((p->vkCode == VK_LWIN) || (p->vkCode == VK_RWIN)) return(1);
|
|
|
|
|
|
|
|
|
|
/* checks ctrl key pressed */
|
|
|
|
|
bControlKeyDown = GetAsyncKeyState(VK_CONTROL)>>((sizeof(SHORT)*8)-1);
|
|
|
|
|
|
|
|
|
|
/* disable ctrl-escape */
|
|
|
|
|
if (p->vkCode == VK_ESCAPE && bControlKeyDown) return(1);
|
|
|
|
|
|
|
|
|
|
return(CallNextHookEx(hKeyboardHook, nCode, wParam, lParam));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-11-03 03:18:30 +01:00
|
|
|
void
|
|
|
|
|
win_notify_dlg_open(void)
|
|
|
|
|
{
|
|
|
|
|
manager_wm = 1;
|
|
|
|
|
pause_state = dopause;
|
|
|
|
|
plat_pause(1);
|
|
|
|
|
if (source_hwnd)
|
|
|
|
|
PostMessage((HWND) (uintptr_t) source_hwnd, WM_SENDDLGSTATUS, (WPARAM) 1, (LPARAM) hwndMain);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
win_notify_dlg_closed(void)
|
|
|
|
|
{
|
|
|
|
|
if (source_hwnd)
|
|
|
|
|
PostMessage((HWND) (uintptr_t) source_hwnd, WM_SENDDLGSTATUS, (WPARAM) 0, (LPARAM) hwndMain);
|
|
|
|
|
plat_pause(pause_state);
|
|
|
|
|
manager_wm = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
static LRESULT CALLBACK
|
|
|
|
|
MainWindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
|
{
|
|
|
|
|
HMENU hmenu;
|
2018-02-14 12:04:54 +01:00
|
|
|
|
2019-09-22 21:10:47 +02:00
|
|
|
int i, sb_borders[3];
|
2019-07-28 05:10:03 +08:00
|
|
|
RECT rect;
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2018-02-14 15:23:02 +01:00
|
|
|
int temp_x, temp_y;
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
switch (message) {
|
|
|
|
|
case WM_CREATE:
|
|
|
|
|
SetTimer(hwnd, TIMER_1SEC, 1000, NULL);
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2017-11-19 03:15:29 -05:00
|
|
|
hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL,
|
|
|
|
|
LowLevelKeyboardProc,
|
|
|
|
|
GetModuleHandle(NULL), 0);
|
|
|
|
|
hook_enabled = 1;
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2017-11-19 03:15:29 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_COMMAND:
|
|
|
|
|
hmenu = GetMenu(hwnd);
|
|
|
|
|
switch (LOWORD(wParam)) {
|
|
|
|
|
case IDM_ACTION_SCREENSHOT:
|
|
|
|
|
take_screenshot();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_ACTION_HRESET:
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_open();
|
2020-06-19 00:26:13 -03:00
|
|
|
i = ui_msgbox_ex(MBX_QUESTION_YN, (wchar_t *) IDS_2112, NULL, (wchar_t *) IDS_2137, (wchar_t *) IDS_2138, NULL);
|
2019-09-22 21:10:47 +02:00
|
|
|
if (i == 0)
|
2020-05-31 04:49:23 +02:00
|
|
|
pc_reset_hard();
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_closed();
|
2017-11-19 03:15:29 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_ACTION_RESET_CAD:
|
2020-05-31 04:49:23 +02:00
|
|
|
pc_send_cad();
|
2017-11-19 03:15:29 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_ACTION_EXIT:
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_open();
|
2020-01-19 06:19:07 +01:00
|
|
|
if (no_quit_confirm)
|
|
|
|
|
i = 0;
|
|
|
|
|
else
|
2020-06-19 00:26:13 -03:00
|
|
|
i = ui_msgbox_ex(MBX_QUESTION_YN, (wchar_t *) IDS_2113, NULL, (wchar_t *) IDS_2119, (wchar_t *) IDS_2136, NULL);
|
2019-09-22 21:10:47 +02:00
|
|
|
if (i == 0) {
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2019-09-22 21:10:47 +02:00
|
|
|
UnhookWindowsHookEx(hKeyboardHook);
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2019-09-22 21:10:47 +02:00
|
|
|
KillTimer(hwnd, TIMER_1SEC);
|
|
|
|
|
PostQuitMessage(0);
|
2019-11-03 03:18:30 +01:00
|
|
|
}
|
|
|
|
|
win_notify_dlg_closed();
|
2017-11-19 03:15:29 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_ACTION_CTRL_ALT_ESC:
|
|
|
|
|
pc_send_cae();
|
|
|
|
|
break;
|
|
|
|
|
|
2018-02-10 00:01:52 +01:00
|
|
|
case IDM_ACTION_RCTRL_IS_LALT:
|
|
|
|
|
rctrl_is_lalt ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_ACTION_RCTRL_IS_LALT, rctrl_is_lalt ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
case IDM_ACTION_PAUSE:
|
|
|
|
|
plat_pause(dopause ^ 1);
|
2018-01-19 15:39:13 +01:00
|
|
|
CheckMenuItem(menuMain, IDM_ACTION_PAUSE, dopause ? MF_CHECKED : MF_UNCHECKED);
|
2017-11-19 03:15:29 -05:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_CONFIG:
|
|
|
|
|
win_settings_open(hwnd);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_ABOUT:
|
|
|
|
|
AboutDialogCreate(hwnd);
|
|
|
|
|
break;
|
|
|
|
|
|
2020-07-19 19:21:03 -03:00
|
|
|
case IDM_DOCS:
|
|
|
|
|
ShellExecute(hwnd, L"open", EMU_DOCS_URL, NULL, NULL, SW_SHOW);
|
|
|
|
|
break;
|
|
|
|
|
|
2018-02-11 20:51:42 +01:00
|
|
|
case IDM_UPDATE_ICONS:
|
|
|
|
|
update_icons ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_UPDATE_ICONS, update_icons ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
case IDM_VID_RESIZE:
|
|
|
|
|
vid_resize = !vid_resize;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_RESIZE, (vid_resize)? MF_CHECKED : MF_UNCHECKED);
|
2018-02-14 12:04:54 +01:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
if (vid_resize)
|
2018-02-01 14:46:17 +01:00
|
|
|
SetWindowLongPtr(hwnd, GWL_STYLE, (WS_OVERLAPPEDWINDOW) | WS_VISIBLE);
|
2017-11-19 03:15:29 -05:00
|
|
|
else
|
2018-02-01 14:46:17 +01:00
|
|
|
SetWindowLongPtr(hwnd, GWL_STYLE, (WS_OVERLAPPEDWINDOW & ~WS_SIZEBOX & ~WS_THICKFRAME & ~WS_MAXIMIZEBOX) | WS_VISIBLE);
|
2018-02-14 12:04:54 +01:00
|
|
|
|
|
|
|
|
SendMessage(hwndSBAR, SB_GETBORDERS, 0, (LPARAM) sb_borders);
|
|
|
|
|
|
2019-03-20 07:39:04 +08:00
|
|
|
GetWindowRect(hwnd, &rect);
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
|
2018-02-14 12:04:54 +01:00
|
|
|
/* Main Window. */
|
2019-07-28 05:10:03 +08:00
|
|
|
if (GetSystemMetrics(SM_CXPADDEDBORDER) == 0) {
|
|
|
|
|
/* For platforms that subsystem version < 6.0 (default on mingw/msys2) */
|
|
|
|
|
/* In this case, border sizes are different between resizable and non-resizable window */
|
|
|
|
|
MoveWindow(hwnd, rect.left, rect.top,
|
|
|
|
|
unscaled_size_x + (GetSystemMetrics(vid_resize ? SM_CXSIZEFRAME : SM_CXFIXEDFRAME) * 2),
|
|
|
|
|
unscaled_size_y + (GetSystemMetrics(vid_resize ? SM_CYSIZEFRAME : SM_CYFIXEDFRAME) * 2) + (GetSystemMetrics(SM_CYBORDER) + GetSystemMetrics(SM_CYMENUSIZE)) + GetSystemMetrics(SM_CYCAPTION) + sbar_height,
|
|
|
|
|
TRUE);
|
|
|
|
|
} else {
|
|
|
|
|
/* For platforms that subsystem version >= 6.0 (default on llvm-mingw, mainly for Windows/ARM) */
|
|
|
|
|
/* In this case, border sizes are the same between resizable and non-resizable window */
|
|
|
|
|
MoveWindow(hwnd, rect.left, rect.top,
|
|
|
|
|
unscaled_size_x + ((GetSystemMetrics(SM_CXFRAME) + GetSystemMetrics(SM_CXPADDEDBORDER)) * 2),
|
|
|
|
|
unscaled_size_y + ((GetSystemMetrics(SM_CYFRAME) + GetSystemMetrics(SM_CXPADDEDBORDER)) * 2) + (GetSystemMetrics(SM_CYBORDER) + GetSystemMetrics(SM_CYMENUSIZE)) + GetSystemMetrics(SM_CYCAPTION) + sbar_height,
|
|
|
|
|
TRUE);
|
|
|
|
|
}
|
2018-02-14 12:04:54 +01:00
|
|
|
|
|
|
|
|
/* Render window. */
|
|
|
|
|
MoveWindow(hwndRender, 0, 0, unscaled_size_x, unscaled_size_y, TRUE);
|
|
|
|
|
GetWindowRect(hwndRender, &rect);
|
|
|
|
|
|
|
|
|
|
/* Status bar. */
|
|
|
|
|
MoveWindow(hwndSBAR,
|
|
|
|
|
0, rect.bottom + GetSystemMetrics(SM_CYEDGE),
|
|
|
|
|
unscaled_size_x, 17, TRUE);
|
|
|
|
|
|
|
|
|
|
if (mouse_capture) {
|
|
|
|
|
GetWindowRect(hwndRender, &rect);
|
|
|
|
|
|
|
|
|
|
ClipCursor(&rect);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
if (vid_resize) {
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_SCALE_1X + scale, MF_UNCHECKED);
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_SCALE_2X, MF_CHECKED);
|
|
|
|
|
scale = 1;
|
|
|
|
|
}
|
|
|
|
|
EnableMenuItem(hmenu, IDM_VID_SCALE_1X, vid_resize ? MF_GRAYED : MF_ENABLED);
|
|
|
|
|
EnableMenuItem(hmenu, IDM_VID_SCALE_2X, vid_resize ? MF_GRAYED : MF_ENABLED);
|
|
|
|
|
EnableMenuItem(hmenu, IDM_VID_SCALE_3X, vid_resize ? MF_GRAYED : MF_ENABLED);
|
|
|
|
|
EnableMenuItem(hmenu, IDM_VID_SCALE_4X, vid_resize ? MF_GRAYED : MF_ENABLED);
|
|
|
|
|
doresize = 1;
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_REMEMBER:
|
|
|
|
|
window_remember = !window_remember;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_REMEMBER, window_remember ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
GetWindowRect(hwnd, &rect);
|
|
|
|
|
if (window_remember) {
|
|
|
|
|
window_x = rect.left;
|
|
|
|
|
window_y = rect.top;
|
|
|
|
|
window_w = rect.right - rect.left;
|
|
|
|
|
window_h = rect.bottom - rect.top;
|
|
|
|
|
}
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
2019-12-05 00:51:07 +01:00
|
|
|
case IDM_VID_SDL_SW:
|
|
|
|
|
case IDM_VID_SDL_HW:
|
2020-04-18 11:51:54 +02:00
|
|
|
#ifdef USE_VNC
|
2017-11-19 03:15:29 -05:00
|
|
|
case IDM_VID_VNC:
|
2020-04-18 11:51:54 +02:00
|
|
|
#endif
|
2019-12-05 00:51:07 +01:00
|
|
|
CheckMenuItem(hmenu, IDM_VID_SDL_SW + vid_api, MF_UNCHECKED);
|
|
|
|
|
plat_setvid(LOWORD(wParam) - IDM_VID_SDL_SW);
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_SDL_SW + vid_api, MF_CHECKED);
|
2017-11-19 03:15:29 -05:00
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_FULLSCREEN:
|
|
|
|
|
plat_setfullscreen(1);
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_FS_FULL:
|
|
|
|
|
case IDM_VID_FS_43:
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
case IDM_VID_FS_KEEPRATIO:
|
2017-11-19 03:15:29 -05:00
|
|
|
case IDM_VID_FS_INT:
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_FS_FULL+video_fullscreen_scale, MF_UNCHECKED);
|
|
|
|
|
video_fullscreen_scale = LOWORD(wParam) - IDM_VID_FS_FULL;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_FS_FULL+video_fullscreen_scale, MF_CHECKED);
|
|
|
|
|
device_force_redraw();
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_SCALE_1X:
|
|
|
|
|
case IDM_VID_SCALE_2X:
|
|
|
|
|
case IDM_VID_SCALE_3X:
|
|
|
|
|
case IDM_VID_SCALE_4X:
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_SCALE_1X+scale, MF_UNCHECKED);
|
|
|
|
|
scale = LOWORD(wParam) - IDM_VID_SCALE_1X;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_SCALE_1X+scale, MF_CHECKED);
|
|
|
|
|
device_force_redraw();
|
|
|
|
|
video_force_resize_set(1);
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_FORCE43:
|
|
|
|
|
video_toggle_option(hmenu, &force_43, IDM_VID_FORCE43);
|
|
|
|
|
video_force_resize_set(1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_INVERT:
|
|
|
|
|
video_toggle_option(hmenu, &invert_display, IDM_VID_INVERT);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_OVERSCAN:
|
|
|
|
|
update_overscan = 1;
|
|
|
|
|
video_toggle_option(hmenu, &enable_overscan, IDM_VID_OVERSCAN);
|
|
|
|
|
video_force_resize_set(1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_CGACON:
|
|
|
|
|
vid_cga_contrast ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_CGACON, vid_cga_contrast ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
cgapal_rebuild();
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_GRAYCT_601:
|
|
|
|
|
case IDM_VID_GRAYCT_709:
|
|
|
|
|
case IDM_VID_GRAYCT_AVE:
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_GRAYCT_601+video_graytype, MF_UNCHECKED);
|
|
|
|
|
video_graytype = LOWORD(wParam) - IDM_VID_GRAYCT_601;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_GRAYCT_601+video_graytype, MF_CHECKED);
|
|
|
|
|
device_force_redraw();
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case IDM_VID_GRAY_RGB:
|
|
|
|
|
case IDM_VID_GRAY_MONO:
|
|
|
|
|
case IDM_VID_GRAY_AMBER:
|
|
|
|
|
case IDM_VID_GRAY_GREEN:
|
|
|
|
|
case IDM_VID_GRAY_WHITE:
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_GRAY_RGB+video_grayscale, MF_UNCHECKED);
|
|
|
|
|
video_grayscale = LOWORD(wParam) - IDM_VID_GRAY_RGB;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_VID_GRAY_RGB+video_grayscale, MF_CHECKED);
|
|
|
|
|
device_force_redraw();
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
2019-12-04 21:55:35 +01:00
|
|
|
#ifdef USE_DISCORD
|
|
|
|
|
case IDM_DISCORD:
|
|
|
|
|
if (! discord_loaded) break;
|
|
|
|
|
enable_discord ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_DISCORD, enable_discord ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
if(enable_discord) {
|
|
|
|
|
discord_init();
|
|
|
|
|
discord_update_activity(dopause);
|
|
|
|
|
} else
|
|
|
|
|
discord_close();
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
#ifdef ENABLE_LOG_TOGGLES
|
|
|
|
|
# ifdef ENABLE_BUSLOGIC_LOG
|
|
|
|
|
case IDM_LOG_BUSLOGIC:
|
|
|
|
|
buslogic_do_log ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_LOG_BUSLOGIC, buslogic_do_log ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
break;
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef ENABLE_CDROM_LOG
|
|
|
|
|
case IDM_LOG_CDROM:
|
|
|
|
|
cdrom_do_log ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_LOG_CDROM, cdrom_do_log ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
break;
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef ENABLE_D86F_LOG
|
|
|
|
|
case IDM_LOG_D86F:
|
|
|
|
|
d86f_do_log ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_LOG_D86F, d86f_do_log ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
break;
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef ENABLE_FDC_LOG
|
|
|
|
|
case IDM_LOG_FDC:
|
|
|
|
|
fdc_do_log ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_LOG_FDC, fdc_do_log ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
break;
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef ENABLE_IDE_LOG
|
|
|
|
|
case IDM_LOG_IDE:
|
|
|
|
|
ide_do_log ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_LOG_IDE, ide_do_log ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
break;
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef ENABLE_SERIAL_LOG
|
|
|
|
|
case IDM_LOG_SERIAL:
|
|
|
|
|
serial_do_log ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_LOG_SERIAL, serial_do_log ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
break;
|
|
|
|
|
# endif
|
|
|
|
|
|
|
|
|
|
# ifdef ENABLE_NIC_LOG
|
|
|
|
|
case IDM_LOG_NIC:
|
|
|
|
|
nic_do_log ^= 1;
|
|
|
|
|
CheckMenuItem(hmenu, IDM_LOG_NIC, nic_do_log ? MF_CHECKED : MF_UNCHECKED);
|
|
|
|
|
break;
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_LOG_BREAKPOINT
|
|
|
|
|
case IDM_LOG_BREAKPOINT:
|
|
|
|
|
pclog("---- LOG BREAKPOINT ----\n");
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_VRAM_DUMP
|
|
|
|
|
case IDM_DUMP_VRAM:
|
|
|
|
|
svga_dump_vram();
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2020-04-23 01:24:01 +02:00
|
|
|
default:
|
2020-04-26 17:00:45 +02:00
|
|
|
media_menu_proc(hwnd, message, wParam, lParam);
|
2020-04-23 01:24:01 +02:00
|
|
|
break;
|
2017-11-19 03:15:29 -05:00
|
|
|
}
|
|
|
|
|
return(0);
|
|
|
|
|
|
|
|
|
|
case WM_ENTERMENULOOP:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_SIZE:
|
2018-10-28 18:26:51 +01:00
|
|
|
if (user_resize && !vid_resize)
|
|
|
|
|
break;
|
|
|
|
|
|
2018-02-14 15:23:02 +01:00
|
|
|
SendMessage(hwndSBAR, SB_GETBORDERS, 0, (LPARAM) sb_borders);
|
|
|
|
|
|
|
|
|
|
temp_x = (lParam & 0xFFFF);
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
temp_y = (lParam >> 16);
|
|
|
|
|
|
|
|
|
|
if ((temp_x <= 0) || (temp_y <= 0)) {
|
|
|
|
|
minimized = 1;
|
|
|
|
|
break;
|
|
|
|
|
} else if (minimized == 1) {
|
|
|
|
|
minimized = 0;
|
|
|
|
|
video_force_resize_set(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plat_vidapi_enable(0);
|
|
|
|
|
temp_y -= sbar_height;
|
2018-02-15 12:48:31 +01:00
|
|
|
if (temp_y < 1)
|
|
|
|
|
temp_y = 1;
|
2018-02-14 12:04:54 +01:00
|
|
|
|
2018-02-14 15:23:02 +01:00
|
|
|
if ((temp_x != scrnsz_x) || (temp_y != scrnsz_y))
|
|
|
|
|
doresize = 1;
|
|
|
|
|
|
|
|
|
|
scrnsz_x = temp_x;
|
|
|
|
|
scrnsz_y = temp_y;
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
MoveWindow(hwndRender, 0, 0, scrnsz_x, scrnsz_y, TRUE);
|
|
|
|
|
|
2018-02-14 15:23:02 +01:00
|
|
|
GetWindowRect(hwndRender, &rect);
|
|
|
|
|
|
|
|
|
|
/* Status bar. */
|
|
|
|
|
MoveWindow(hwndSBAR,
|
|
|
|
|
0, rect.bottom + GetSystemMetrics(SM_CYEDGE),
|
|
|
|
|
scrnsz_x, 17, TRUE);
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2018-02-15 12:48:31 +01:00
|
|
|
plat_vidsize(scrnsz_x, scrnsz_y);
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
if (mouse_capture) {
|
|
|
|
|
GetWindowRect(hwndRender, &rect);
|
|
|
|
|
|
|
|
|
|
ClipCursor(&rect);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (window_remember) {
|
|
|
|
|
GetWindowRect(hwnd, &rect);
|
|
|
|
|
window_x = rect.left;
|
|
|
|
|
window_y = rect.top;
|
|
|
|
|
window_w = rect.right - rect.left;
|
|
|
|
|
window_h = rect.bottom - rect.top;
|
|
|
|
|
save_window_pos = 1;
|
|
|
|
|
}
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
plat_vidapi_enable(1);
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_MOVE:
|
|
|
|
|
if (window_remember) {
|
|
|
|
|
GetWindowRect(hwnd, &rect);
|
|
|
|
|
window_x = rect.left;
|
|
|
|
|
window_y = rect.top;
|
|
|
|
|
window_w = rect.right - rect.left;
|
|
|
|
|
window_h = rect.bottom - rect.top;
|
|
|
|
|
save_window_pos = 1;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_TIMER:
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
if (wParam == TIMER_1SEC)
|
2017-11-19 03:15:29 -05:00
|
|
|
pc_onesec();
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
else if ((wParam >= 0x8000) && (wParam <= 0x80ff))
|
|
|
|
|
ui_sb_timer_callback(wParam & 0xff);
|
2017-11-19 03:15:29 -05:00
|
|
|
break;
|
2018-07-19 04:39:27 +02:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
case WM_LEAVEFULLSCREEN:
|
|
|
|
|
plat_setfullscreen(0);
|
|
|
|
|
config_save();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_KEYDOWN:
|
|
|
|
|
case WM_KEYUP:
|
|
|
|
|
case WM_SYSKEYDOWN:
|
|
|
|
|
case WM_SYSKEYUP:
|
|
|
|
|
return(0);
|
|
|
|
|
|
2019-09-22 21:10:47 +02:00
|
|
|
case WM_CLOSE:
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_open();
|
2020-01-19 06:19:07 +01:00
|
|
|
if (no_quit_confirm)
|
|
|
|
|
i = 0;
|
|
|
|
|
else
|
2020-06-19 00:26:13 -03:00
|
|
|
i = ui_msgbox_ex(MBX_QUESTION_YN, (wchar_t *) IDS_2113, NULL, (wchar_t *) IDS_2119, (wchar_t *) IDS_2136, NULL);
|
2019-09-22 21:10:47 +02:00
|
|
|
if (i == 0) {
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2019-09-22 21:10:47 +02:00
|
|
|
UnhookWindowsHookEx(hKeyboardHook);
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2019-09-22 21:10:47 +02:00
|
|
|
KillTimer(hwnd, TIMER_1SEC);
|
|
|
|
|
PostQuitMessage(0);
|
2019-11-03 03:18:30 +01:00
|
|
|
}
|
|
|
|
|
win_notify_dlg_closed();
|
2019-09-22 21:10:47 +02:00
|
|
|
break;
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
case WM_DESTROY:
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2017-11-19 03:15:29 -05:00
|
|
|
UnhookWindowsHookEx(hKeyboardHook);
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2017-11-19 03:15:29 -05:00
|
|
|
KillTimer(hwnd, TIMER_1SEC);
|
|
|
|
|
PostQuitMessage(0);
|
|
|
|
|
break;
|
|
|
|
|
|
2018-01-19 15:39:13 +01:00
|
|
|
case WM_SHOWSETTINGS:
|
2019-11-02 16:18:18 +01:00
|
|
|
if (manager_wm)
|
|
|
|
|
break;
|
|
|
|
|
manager_wm = 1;
|
2018-01-19 15:39:13 +01:00
|
|
|
win_settings_open(hwnd);
|
2019-11-02 16:18:18 +01:00
|
|
|
manager_wm = 0;
|
2018-01-19 15:39:13 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_PAUSE:
|
2019-11-02 16:18:18 +01:00
|
|
|
if (manager_wm)
|
|
|
|
|
break;
|
|
|
|
|
manager_wm = 1;
|
2018-01-19 15:39:13 +01:00
|
|
|
plat_pause(dopause ^ 1);
|
|
|
|
|
CheckMenuItem(menuMain, IDM_ACTION_PAUSE, dopause ? MF_CHECKED : MF_UNCHECKED);
|
2019-11-02 16:18:18 +01:00
|
|
|
manager_wm = 0;
|
2018-01-19 15:39:13 +01:00
|
|
|
break;
|
|
|
|
|
|
2018-10-10 22:33:24 +02:00
|
|
|
case WM_HARDRESET:
|
2019-11-02 16:18:18 +01:00
|
|
|
if (manager_wm)
|
|
|
|
|
break;
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_open();
|
2020-06-19 00:26:13 -03:00
|
|
|
i = ui_msgbox_ex(MBX_QUESTION_YN, (wchar_t *) IDS_2112, NULL, (wchar_t *) IDS_2137, (wchar_t *) IDS_2138, NULL);
|
2019-11-01 03:08:58 +01:00
|
|
|
if (i == 0)
|
2020-05-31 04:49:23 +02:00
|
|
|
pc_reset_hard();
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_closed();
|
2018-10-10 22:33:24 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_SHUTDOWN:
|
2019-11-02 16:18:18 +01:00
|
|
|
if (manager_wm)
|
|
|
|
|
break;
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_open();
|
2020-01-19 06:19:07 +01:00
|
|
|
if (no_quit_confirm)
|
|
|
|
|
i = 0;
|
|
|
|
|
else
|
2020-06-19 00:26:13 -03:00
|
|
|
i = ui_msgbox_ex(MBX_QUESTION_YN, (wchar_t *) IDS_2113, NULL, (wchar_t *) IDS_2119, (wchar_t *) IDS_2136, NULL);
|
2019-10-31 18:15:44 +01:00
|
|
|
if (i == 0) {
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2019-10-31 18:15:44 +01:00
|
|
|
UnhookWindowsHookEx(hKeyboardHook);
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2019-10-31 18:15:44 +01:00
|
|
|
KillTimer(hwnd, TIMER_1SEC);
|
|
|
|
|
PostQuitMessage(0);
|
|
|
|
|
}
|
2019-11-03 03:18:30 +01:00
|
|
|
win_notify_dlg_closed();
|
2018-10-10 22:33:24 +02:00
|
|
|
break;
|
|
|
|
|
|
2018-10-12 16:27:47 +02:00
|
|
|
case WM_CTRLALTDEL:
|
2019-11-02 16:18:18 +01:00
|
|
|
if (manager_wm)
|
|
|
|
|
break;
|
|
|
|
|
manager_wm = 1;
|
2020-05-31 04:49:23 +02:00
|
|
|
pc_send_cad();
|
2019-11-02 16:18:18 +01:00
|
|
|
manager_wm = 0;
|
2018-10-12 16:27:47 +02:00
|
|
|
break;
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
case WM_SYSCOMMAND:
|
|
|
|
|
/*
|
|
|
|
|
* Disable ALT key *ALWAYS*,
|
|
|
|
|
* I don't think there's any use for
|
|
|
|
|
* reaching the menu that way.
|
|
|
|
|
*/
|
|
|
|
|
if (wParam == SC_KEYMENU && HIWORD(lParam) <= 0) {
|
|
|
|
|
return 0; /*disable ALT key for menu*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return(DefWindowProc(hwnd, message, wParam, lParam));
|
2018-07-15 01:41:53 +02:00
|
|
|
|
|
|
|
|
case WM_SETFOCUS:
|
|
|
|
|
infocus = 1;
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2018-07-15 01:41:53 +02:00
|
|
|
if (! hook_enabled) {
|
|
|
|
|
hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL,
|
|
|
|
|
LowLevelKeyboardProc,
|
|
|
|
|
GetModuleHandle(NULL),
|
|
|
|
|
0);
|
|
|
|
|
hook_enabled = 1;
|
|
|
|
|
}
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2018-07-15 01:41:53 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_KILLFOCUS:
|
|
|
|
|
infocus = 0;
|
|
|
|
|
plat_mouse_capture(0);
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2018-07-15 01:41:53 +02:00
|
|
|
if (hook_enabled) {
|
|
|
|
|
UnhookWindowsHookEx(hKeyboardHook);
|
|
|
|
|
hook_enabled = 0;
|
|
|
|
|
}
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2018-07-15 01:41:53 +02:00
|
|
|
break;
|
2018-10-28 18:26:51 +01:00
|
|
|
|
|
|
|
|
case WM_ENTERSIZEMOVE:
|
|
|
|
|
user_resize = 1;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_EXITSIZEMOVE:
|
|
|
|
|
user_resize = 0;
|
|
|
|
|
|
|
|
|
|
/* If window is not resizable, then tell the main thread to
|
|
|
|
|
resize it, as sometimes, moves can mess up the window size. */
|
|
|
|
|
if (!vid_resize)
|
|
|
|
|
doresize = 1;
|
|
|
|
|
break;
|
2017-11-19 03:15:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static LRESULT CALLBACK
|
|
|
|
|
SubWindowProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
|
{
|
|
|
|
|
return(DefWindowProc(hwnd, message, wParam, lParam));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-06-17 22:56:18 -03:00
|
|
|
static HRESULT CALLBACK
|
|
|
|
|
TaskDialogProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam, LONG_PTR lpRefData)
|
|
|
|
|
{
|
|
|
|
|
switch (message) {
|
|
|
|
|
case TDN_HYPERLINK_CLICKED:
|
|
|
|
|
/* open linked URL */
|
|
|
|
|
ShellExecute(hwnd, L"open", (LPCWSTR) lParam, NULL, NULL, SW_SHOW);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
int
|
2017-11-23 17:42:00 -05:00
|
|
|
ui_init(int nCmdShow)
|
2017-11-19 03:15:29 -05:00
|
|
|
{
|
|
|
|
|
WCHAR title[200];
|
|
|
|
|
WNDCLASSEX wincl; /* buffer for main window's class */
|
2018-07-15 01:41:53 +02:00
|
|
|
RAWINPUTDEVICE ridev; /* RawInput device */
|
2017-11-19 03:15:29 -05:00
|
|
|
MSG messages; /* received-messages buffer */
|
2020-06-17 22:56:18 -03:00
|
|
|
HWND hwnd = NULL; /* handle for our window */
|
2017-11-19 03:15:29 -05:00
|
|
|
HACCEL haccel; /* handle to accelerator table */
|
2020-06-17 22:56:18 -03:00
|
|
|
RECT sbar_rect; /* RECT of the status bar */
|
2017-11-19 03:15:29 -05:00
|
|
|
int bRet;
|
2020-06-17 22:56:18 -03:00
|
|
|
TASKDIALOGCONFIG tdconfig = {0};
|
2020-06-17 23:24:56 -03:00
|
|
|
TASKDIALOG_BUTTON tdbuttons[] = {{IDCANCEL, MAKEINTRESOURCE(IDS_2119)}};
|
2020-06-17 22:56:18 -03:00
|
|
|
|
|
|
|
|
/* Set up TaskDialog configuration. */
|
|
|
|
|
tdconfig.cbSize = sizeof(tdconfig);
|
|
|
|
|
tdconfig.dwFlags = TDF_ENABLE_HYPERLINKS;
|
|
|
|
|
tdconfig.dwCommonButtons = 0;
|
|
|
|
|
tdconfig.pszWindowTitle = MAKEINTRESOURCE(IDS_STRINGS);
|
|
|
|
|
tdconfig.pszMainIcon = TD_ERROR_ICON;
|
|
|
|
|
tdconfig.pszMainInstruction = MAKEINTRESOURCE(IDS_2050);
|
|
|
|
|
tdconfig.cButtons = ARRAYSIZE(tdbuttons);
|
|
|
|
|
tdconfig.pButtons = tdbuttons;
|
|
|
|
|
tdconfig.pfCallback = TaskDialogProcedure;
|
|
|
|
|
|
|
|
|
|
/* Start settings-only mode if requested. */
|
2018-01-19 15:39:13 +01:00
|
|
|
if (settings_only) {
|
|
|
|
|
if (! pc_init_modules()) {
|
|
|
|
|
/* Dang, no ROMs found at all! */
|
2020-06-17 22:56:18 -03:00
|
|
|
tdconfig.pszMainInstruction = MAKEINTRESOURCE(IDS_2120);
|
|
|
|
|
tdconfig.pszContent = MAKEINTRESOURCE(IDS_2056);
|
|
|
|
|
TaskDialogIndirect(&tdconfig, NULL, NULL, NULL);
|
2018-01-19 15:39:13 +01:00
|
|
|
return(6);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
win_settings_open(NULL);
|
|
|
|
|
return(0);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-04 21:55:35 +01:00
|
|
|
#ifdef USE_DISCORD
|
|
|
|
|
if(! discord_load()) {
|
|
|
|
|
enable_discord = 0;
|
|
|
|
|
} else if (enable_discord) {
|
|
|
|
|
/* Initialize the Discord API */
|
|
|
|
|
discord_init();
|
|
|
|
|
|
|
|
|
|
/* Update Discord status */
|
|
|
|
|
discord_update_activity(dopause);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
/* Create our main window's class and register it. */
|
|
|
|
|
wincl.hInstance = hinstance;
|
|
|
|
|
wincl.lpszClassName = CLASS_NAME;
|
|
|
|
|
wincl.lpfnWndProc = MainWindowProcedure;
|
|
|
|
|
wincl.style = CS_DBLCLKS; /* Catch double-clicks */
|
|
|
|
|
wincl.cbSize = sizeof(WNDCLASSEX);
|
2018-07-15 01:41:53 +02:00
|
|
|
wincl.hIcon = LoadIcon(hinstance, (LPCTSTR)10);
|
|
|
|
|
wincl.hIconSm = LoadIcon(hinstance, (LPCTSTR)10);
|
2017-11-19 03:15:29 -05:00
|
|
|
wincl.hCursor = NULL;
|
|
|
|
|
wincl.lpszMenuName = NULL;
|
|
|
|
|
wincl.cbClsExtra = 0;
|
|
|
|
|
wincl.cbWndExtra = 0;
|
|
|
|
|
wincl.hbrBackground = CreateSolidBrush(RGB(0,0,0));
|
|
|
|
|
if (! RegisterClassEx(&wincl))
|
|
|
|
|
return(2);
|
|
|
|
|
wincl.lpszClassName = SUB_CLASS_NAME;
|
|
|
|
|
wincl.lpfnWndProc = SubWindowProcedure;
|
|
|
|
|
if (! RegisterClassEx(&wincl))
|
|
|
|
|
return(2);
|
|
|
|
|
|
|
|
|
|
/* Load the Window Menu(s) from the resources. */
|
|
|
|
|
menuMain = LoadMenu(hinstance, MENU_NAME);
|
|
|
|
|
|
|
|
|
|
/* Now create our main window. */
|
|
|
|
|
mbstowcs(title, emu_version, sizeof_w(title));
|
|
|
|
|
hwnd = CreateWindowEx (
|
|
|
|
|
0, /* no extended possibilites */
|
|
|
|
|
CLASS_NAME, /* class name */
|
|
|
|
|
title, /* Title Text */
|
|
|
|
|
(WS_OVERLAPPEDWINDOW & ~WS_SIZEBOX) | DS_3DLOOK,
|
|
|
|
|
CW_USEDEFAULT, /* Windows decides the position */
|
|
|
|
|
CW_USEDEFAULT, /* where window ends up on the screen */
|
|
|
|
|
scrnsz_x+(GetSystemMetrics(SM_CXFIXEDFRAME)*2), /* width */
|
|
|
|
|
scrnsz_y+(GetSystemMetrics(SM_CYFIXEDFRAME)*2)+GetSystemMetrics(SM_CYMENUSIZE)+GetSystemMetrics(SM_CYCAPTION)+1, /* and height in pixels */
|
|
|
|
|
HWND_DESKTOP, /* window is a child to desktop */
|
|
|
|
|
menuMain, /* menu */
|
|
|
|
|
hinstance, /* Program Instance handler */
|
|
|
|
|
NULL); /* no Window Creation data */
|
2020-06-17 22:56:18 -03:00
|
|
|
hwndMain = tdconfig.hwndParent = hwnd;
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
ui_window_title(title);
|
|
|
|
|
|
|
|
|
|
/* Set up main window for resizing if configured. */
|
|
|
|
|
if (vid_resize)
|
|
|
|
|
SetWindowLongPtr(hwnd, GWL_STYLE,
|
|
|
|
|
(WS_OVERLAPPEDWINDOW));
|
|
|
|
|
else
|
|
|
|
|
SetWindowLongPtr(hwnd, GWL_STYLE,
|
|
|
|
|
(WS_OVERLAPPEDWINDOW&~WS_SIZEBOX&~WS_THICKFRAME&~WS_MAXIMIZEBOX));
|
|
|
|
|
|
|
|
|
|
/* Move to the last-saved position if needed. */
|
|
|
|
|
if (window_remember)
|
|
|
|
|
MoveWindow(hwnd, window_x, window_y, window_w, window_h, TRUE);
|
|
|
|
|
|
|
|
|
|
/* Reset all menus to their defaults. */
|
|
|
|
|
ResetAllMenus();
|
2020-04-26 17:00:45 +02:00
|
|
|
media_menu_init();
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
/* Make the window visible on the screen. */
|
2017-11-23 17:42:00 -05:00
|
|
|
ShowWindow(hwnd, nCmdShow);
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2018-07-15 01:41:53 +02:00
|
|
|
/* Initialize the RawInput (keyboard) module. */
|
|
|
|
|
memset(&ridev, 0x00, sizeof(ridev));
|
|
|
|
|
ridev.usUsagePage = 0x01;
|
|
|
|
|
ridev.usUsage = 0x06;
|
|
|
|
|
ridev.dwFlags = RIDEV_NOHOTKEYS;
|
|
|
|
|
ridev.hwndTarget = NULL; /* current focus window */
|
|
|
|
|
if (! RegisterRawInputDevices(&ridev, 1, sizeof(ridev))) {
|
2020-06-17 22:56:18 -03:00
|
|
|
tdconfig.pszContent = MAKEINTRESOURCE(IDS_2105);
|
|
|
|
|
TaskDialogIndirect(&tdconfig, NULL, NULL, NULL);
|
2018-07-15 01:41:53 +02:00
|
|
|
return(4);
|
2017-11-19 03:15:29 -05:00
|
|
|
}
|
2018-07-15 01:41:53 +02:00
|
|
|
keyboard_getkeymap();
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2018-07-15 01:41:53 +02:00
|
|
|
/* Set up the main window for RawInput. */
|
|
|
|
|
plat_set_input(hwndMain);
|
|
|
|
|
|
|
|
|
|
/* Load the accelerator table */
|
|
|
|
|
haccel = LoadAccelerators(hinstance, ACCEL_NAME);
|
|
|
|
|
if (haccel == NULL) {
|
2020-06-17 22:56:18 -03:00
|
|
|
tdconfig.pszContent = MAKEINTRESOURCE(IDS_2104);
|
|
|
|
|
TaskDialogIndirect(&tdconfig, NULL, NULL, NULL);
|
2018-07-15 01:41:53 +02:00
|
|
|
return(3);
|
2017-11-19 03:15:29 -05:00
|
|
|
}
|
|
|
|
|
|
2017-12-04 11:59:26 -05:00
|
|
|
/* Initialize the mouse module. */
|
|
|
|
|
win_mouse_init();
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
/* Create the status bar window. */
|
|
|
|
|
StatusBarCreate(hwndMain, IDC_STATUS, hinstance);
|
|
|
|
|
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
/* Get the actual height of the statusbar,
|
|
|
|
|
* since that is not something we can change.
|
|
|
|
|
*/
|
|
|
|
|
GetWindowRect(hwndSBAR, &sbar_rect);
|
|
|
|
|
sbar_height = sbar_rect.bottom - sbar_rect.top;
|
2019-03-20 07:39:04 +08:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
/*
|
|
|
|
|
* Before we can create the Render window, we first have
|
|
|
|
|
* to prepare some other things that it depends on.
|
|
|
|
|
*/
|
2020-04-27 13:24:43 +02:00
|
|
|
ghMutex = CreateMutex(NULL, FALSE, NULL);
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
/* Create the Machine Rendering window. */
|
|
|
|
|
hwndRender = CreateWindow(L"STATIC", NULL, WS_CHILD|SS_BITMAP,
|
|
|
|
|
0, 0, 1, 1, hwnd, NULL, hinstance, NULL);
|
|
|
|
|
MoveWindow(hwndRender, 0, 0, scrnsz_x, scrnsz_y, TRUE);
|
|
|
|
|
|
2017-12-15 03:40:36 +01:00
|
|
|
/* All done, fire up the actual emulated machine. */
|
|
|
|
|
if (! pc_init_modules()) {
|
|
|
|
|
/* Dang, no ROMs found at all! */
|
2020-06-17 22:56:18 -03:00
|
|
|
tdconfig.pszMainInstruction = MAKEINTRESOURCE(IDS_2120);
|
|
|
|
|
tdconfig.pszContent = MAKEINTRESOURCE(IDS_2056);
|
|
|
|
|
TaskDialogIndirect(&tdconfig, NULL, NULL, NULL);
|
2017-12-15 03:40:36 +01:00
|
|
|
return(6);
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
/* Initialize the configured Video API. */
|
|
|
|
|
if (! plat_setvid(vid_api)) {
|
2020-06-17 22:56:18 -03:00
|
|
|
tdconfig.pszContent = MAKEINTRESOURCE(IDS_2089);
|
|
|
|
|
TaskDialogIndirect(&tdconfig, NULL, NULL, NULL);
|
2017-11-19 03:15:29 -05:00
|
|
|
return(5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set up the current window size. */
|
|
|
|
|
plat_resize(scrnsz_x, scrnsz_y);
|
|
|
|
|
|
|
|
|
|
/* Fire up the machine. */
|
2018-10-30 13:32:25 +01:00
|
|
|
pc_reset_hard_init();
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
/* Set the PAUSE mode depending on the renderer. */
|
|
|
|
|
plat_pause(0);
|
|
|
|
|
|
2020-07-26 20:07:13 +03:00
|
|
|
/* Initialize the rendering window, or fullscreen. */
|
|
|
|
|
if (start_in_fullscreen)
|
|
|
|
|
plat_setfullscreen(1);
|
|
|
|
|
|
2018-01-19 15:39:13 +01:00
|
|
|
/* If so requested via the command line, inform the
|
|
|
|
|
* application that started us of our HWND, using the
|
|
|
|
|
* the hWnd and unique ID the application has given
|
|
|
|
|
* us. */
|
|
|
|
|
if (source_hwnd)
|
2018-10-24 16:01:20 +02:00
|
|
|
PostMessage((HWND) (uintptr_t) source_hwnd, WM_SENDHWND, (WPARAM) unique_id, (LPARAM) hwndMain);
|
2018-01-19 15:39:13 +01:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
/*
|
|
|
|
|
* Everything has been configured, and all seems to work,
|
|
|
|
|
* so now it is time to start the main thread to do some
|
|
|
|
|
* real work, and we will hang in here, dealing with the
|
|
|
|
|
* UI until we're done.
|
|
|
|
|
*/
|
|
|
|
|
do_start();
|
|
|
|
|
|
|
|
|
|
/* Run the message loop. It will run until GetMessage() returns 0 */
|
|
|
|
|
while (! quited) {
|
|
|
|
|
bRet = GetMessage(&messages, NULL, 0, 0);
|
|
|
|
|
if ((bRet == 0) || quited) break;
|
|
|
|
|
|
|
|
|
|
if (bRet == -1) {
|
|
|
|
|
fatal("bRet is -1\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (messages.message == WM_QUIT) {
|
|
|
|
|
quited = 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (! TranslateAccelerator(hwnd, haccel, &messages)) {
|
|
|
|
|
TranslateMessage(&messages);
|
|
|
|
|
DispatchMessage(&messages);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mouse_capture && keyboard_ismsexit()) {
|
|
|
|
|
/* Release the in-app mouse. */
|
|
|
|
|
plat_mouse_capture(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (video_fullscreen && keyboard_isfsexit()) {
|
|
|
|
|
/* Signal "exit fullscreen mode". */
|
|
|
|
|
plat_setfullscreen(0);
|
|
|
|
|
}
|
2019-12-04 13:12:34 +01:00
|
|
|
|
|
|
|
|
#ifdef USE_DISCORD
|
|
|
|
|
/* Run Discord API callbacks */
|
2019-12-04 21:55:35 +01:00
|
|
|
if (enable_discord)
|
|
|
|
|
discord_run_callbacks();
|
2019-12-04 13:12:34 +01:00
|
|
|
#endif
|
2017-11-19 03:15:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
timeEndPeriod(1);
|
|
|
|
|
|
|
|
|
|
if (mouse_capture)
|
|
|
|
|
plat_mouse_capture(0);
|
|
|
|
|
|
2017-12-04 11:59:26 -05:00
|
|
|
/* Close down the emulator. */
|
|
|
|
|
do_stop();
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
UnregisterClass(SUB_CLASS_NAME, hinstance);
|
|
|
|
|
UnregisterClass(CLASS_NAME, hinstance);
|
|
|
|
|
|
2017-12-04 11:59:26 -05:00
|
|
|
win_mouse_close();
|
2017-11-19 03:15:29 -05:00
|
|
|
|
2019-12-04 13:12:34 +01:00
|
|
|
#ifdef USE_DISCORD
|
|
|
|
|
/* Shut down the Discord integration */
|
|
|
|
|
discord_close();
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
return(messages.wParam);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wchar_t *
|
|
|
|
|
ui_window_title(wchar_t *s)
|
|
|
|
|
{
|
|
|
|
|
if (! video_fullscreen) {
|
2020-01-15 05:24:33 +01:00
|
|
|
if (s != NULL) {
|
|
|
|
|
if (wcslen(s) <= 512)
|
|
|
|
|
wcscpy(wTitle, s);
|
|
|
|
|
else
|
|
|
|
|
wcsncpy(wTitle, s, 512);
|
|
|
|
|
} else
|
2017-11-19 03:15:29 -05:00
|
|
|
s = wTitle;
|
|
|
|
|
|
|
|
|
|
SetWindowText(hwndMain, s);
|
|
|
|
|
} else {
|
|
|
|
|
if (s == NULL)
|
|
|
|
|
s = wTitle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return(s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* We should have the language ID as a parameter. */
|
|
|
|
|
void
|
|
|
|
|
plat_pause(int p)
|
|
|
|
|
{
|
|
|
|
|
static wchar_t oldtitle[512];
|
2020-01-15 05:24:33 +01:00
|
|
|
wchar_t title[512], *t;
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
/* If un-pausing, as the renderer if that's OK. */
|
|
|
|
|
if (p == 0)
|
|
|
|
|
p = get_vidpause();
|
|
|
|
|
|
|
|
|
|
/* If already so, done. */
|
2019-11-03 03:18:30 +01:00
|
|
|
if (dopause == p) {
|
|
|
|
|
/* Send the WM to a manager if needed. */
|
|
|
|
|
if (source_hwnd)
|
|
|
|
|
PostMessage((HWND) (uintptr_t) source_hwnd, WM_SENDSTATUS, (WPARAM) !!dopause, (LPARAM) hwndMain);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
if (p) {
|
2020-01-15 05:24:33 +01:00
|
|
|
t = ui_window_title(NULL);
|
|
|
|
|
if (wcslen(t) <= 511)
|
|
|
|
|
wcscpy(oldtitle, ui_window_title(NULL));
|
|
|
|
|
else
|
|
|
|
|
wcsncpy(oldtitle, ui_window_title(NULL), 511);
|
2017-11-19 03:15:29 -05:00
|
|
|
wcscpy(title, oldtitle);
|
|
|
|
|
wcscat(title, L" - PAUSED -");
|
|
|
|
|
ui_window_title(title);
|
|
|
|
|
} else {
|
|
|
|
|
ui_window_title(oldtitle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dopause = p;
|
|
|
|
|
|
|
|
|
|
/* Update the actual menu. */
|
|
|
|
|
CheckMenuItem(menuMain, IDM_ACTION_PAUSE,
|
|
|
|
|
(dopause) ? MF_CHECKED : MF_UNCHECKED);
|
2018-10-23 19:41:17 +02:00
|
|
|
|
2019-12-04 13:12:34 +01:00
|
|
|
#if USE_DISCORD
|
|
|
|
|
/* Update Discord status */
|
2019-12-04 21:55:35 +01:00
|
|
|
if(enable_discord)
|
|
|
|
|
discord_update_activity(dopause);
|
2019-12-04 13:12:34 +01:00
|
|
|
#endif
|
|
|
|
|
|
2018-10-23 19:41:17 +02:00
|
|
|
/* Send the WM to a manager if needed. */
|
|
|
|
|
if (source_hwnd)
|
2018-10-24 18:56:17 +02:00
|
|
|
PostMessage((HWND) (uintptr_t) source_hwnd, WM_SENDSTATUS, (WPARAM) !!dopause, (LPARAM) hwndMain);
|
2017-11-19 03:15:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Tell the UI about a new screen resolution. */
|
|
|
|
|
void
|
|
|
|
|
plat_resize(int x, int y)
|
|
|
|
|
{
|
|
|
|
|
int sb_borders[3];
|
2019-07-28 05:10:03 +08:00
|
|
|
RECT r;
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
/* First, see if we should resize the UI window. */
|
|
|
|
|
if (!vid_resize) {
|
|
|
|
|
video_wait_for_blit();
|
2018-10-28 18:26:51 +01:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
SendMessage(hwndSBAR, SB_GETBORDERS, 0, (LPARAM) sb_borders);
|
2018-02-14 12:04:54 +01:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
GetWindowRect(hwndMain, &r);
|
Added the IBM 5161 ISA expansion for PC and XT;
Cleaned up the parallel port emulation, added IRQ support, and made enabling/disabling per port;
Added the Award 430NX and the Intel Classic/PCI (Alfredo, 420TX);
Finished the 586MC1;
Added 8087 emulation;
Moved Cyrix 6x86'es to the Dev branch;
Sanitized/cleaned up memregs.c/h and intel.c/h;
Split the chipsets from machines and sanitized Port 92 emulation;
Added support for the 15bpp mode to the Compaq ATI 28800;
Moved the MR 386DX and 486 machines to the Dev branch;
Ported the new dynamic recompiler from PCem, but it remains in Dev branch until after v2.00;
Ported the new timer code from PCem;
Cleaned up the CPU table of unused stuff and better optimized its structure;
Ported the Open-XT and Open-AT from VARCem, the Open-AT is in the Dev branch;
Ported the XT MFM controller rewrite and adding of more controllers (incl. two RLL ones), from VARCem;
Added the AHA-1540A and the BusTek BT-542B;
Moved the Sumo SCSI-AT to the Dev branch;
Minor IDE, FDC, and floppy drive code clean-ups;
Made NCR 5380/53C400-based cards' BIOS address configurable;
Got rid of the legacy romset variable;
Unified (video) buffer and buffer32 into one and make the unified buffer 32-bit;
Added the Amstead PPC512 per PCem patch by John Elliott;
Switched memory mapping granularity from 16k to 4k (less than 1k not possible due to internal pages);
Rewrote the CL-GD 54xx blitter, fixes Win-OS/2 on the 54x6 among other thing;
Added the Image Manager 1024 and Professional Graphics Controller per PCem patch by John Elliott and work done on VARCem;
Added Headland HT-216, GC-205 and Video 7 VGA 1024i emulation based on PCem commit;
Implemented the fuction keys for the Toshiba T1000/T1200/T3100 enhancement;
Amstrad MegaPC does now works correctly with non-internal graphics card;
The SLiRP code no longer casts a packed struct type to a non-packed struct type;
The Xi8088 and PB410a no longer hang on 86Box when PS/2 mouse is not present;
The S3 Virge on BeOS is no longer broken (was broken by build #1591);
OS/2 2.0 build 6.167 now sees key presses again;
Xi8088 now work on CGA again;
86F images converted from either the old or new variants of the HxC MFM format now work correctly;
Hardware interrupts with a vector of 0xFF are now handled correctly;
OPTi 495SX boards no longer incorrectly have 64 MB maximum RAM when 32 MB is correct;
Fixed VNC keyboard input bugs;
Fixed AT RTC periodic interrupt - Chicago 58s / 73f / 73g / 81 MIDI play no longer hangs with the build's own VTD driver;
Fixed mouse polling with internal mice - Amstrad and Olivetti mice now work correctly;
Triones ATAPI DMA driver now correctly reads a file at the end of a CD image with a sectors number not divisible by 4;
Compaq Portable now works with all graphics cards;
Fixed various MDSI Genius bugs;
Added segment limit checks and improved page fault checks for several CPU instructions - Memphis 15xx WINSETUP and Chicago 58s WINDISK.CPL no longer issue a GPF, and some S3 drivers that used to have glitches, now work correctly;
Further improved the 808x emulation, also fixes the noticably choppy sound when using 808x CPU's, also fixes #355;
OS/2 installer no logner locks up on splash screen on PS/2 Model 70 and 80, fixes #400.
Fixed several Amstead bugs, GEM no longer crashes on the Amstrad 1640, fixes #391.
Ported John Elliott's Amstrad fixes and improvement from PCem, and fixed the default language so it's correctly Engliish, fixes #278, fixes #389.
Fixed a minor IDE timing bug, fixes #388.
Fixed Toshiba T1000 RAM issues, fixes #379.
Fixed EGA/(S)VGA overscan border handling, fixes #378;
Got rid of the now long useless IDE channel 2 auto-removal, fixes #370;
Fixed the BIOS files used by the AMSTRAD PC1512, fixes #366;
Ported the Unicode CD image file name fix from VARCem, fixes #365;
Fixed high density floppy disks on the Xi8088, fixes #359;
Fixed some bugs in the Hercules emulation, fixes #346, fixes #358;
Fixed the SCSI hard disk mode sense pages, fixes #356;
Removed the AMI Unknown 386SX because of impossibility to identify the chipset, closes #349;
Fixed bugs in the serial mouse emulation, fixes #344;
Compiled 86Box binaries now include all the required .DLL's, fixes #341;
Made some combo boxes in the Settings dialog slightly wider, fixes #276.
2019-09-20 14:02:30 +02:00
|
|
|
|
2019-07-28 05:10:03 +08:00
|
|
|
if (GetSystemMetrics(SM_CXPADDEDBORDER) == 0) {
|
|
|
|
|
/* For platforms that subsystem version < 6.0 (gcc on mingw/msys2) */
|
|
|
|
|
/* In this case, border sizes are different between resizable and non-resizable window */
|
|
|
|
|
MoveWindow(hwndMain, r.left, r.top,
|
|
|
|
|
x + (GetSystemMetrics(vid_resize ? SM_CXSIZEFRAME : SM_CXFIXEDFRAME) * 2),
|
|
|
|
|
y + (GetSystemMetrics(vid_resize ? SM_CYSIZEFRAME : SM_CYFIXEDFRAME) * 2) + (GetSystemMetrics(SM_CYBORDER) + GetSystemMetrics(SM_CYMENUSIZE)) + GetSystemMetrics(SM_CYCAPTION) + sbar_height,
|
|
|
|
|
TRUE);
|
|
|
|
|
} else {
|
|
|
|
|
/* For platforms that subsystem version >= 6.0 (clang/llvm on llvm-mingw, mainly for Windows/ARM) */
|
|
|
|
|
/* In this case, border sizes are the same between resizable and non-resizable window */
|
|
|
|
|
MoveWindow(hwndMain, r.left, r.top,
|
|
|
|
|
x + ((GetSystemMetrics(SM_CXFRAME) + GetSystemMetrics(SM_CXPADDEDBORDER)) * 2),
|
|
|
|
|
y + ((GetSystemMetrics(SM_CYFRAME) + GetSystemMetrics(SM_CXPADDEDBORDER)) * 2) + (GetSystemMetrics(SM_CYBORDER) + GetSystemMetrics(SM_CYMENUSIZE)) + GetSystemMetrics(SM_CYCAPTION) + sbar_height,
|
|
|
|
|
TRUE);
|
|
|
|
|
}
|
2018-02-14 12:04:54 +01:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
MoveWindow(hwndRender, 0, 0, x, y, TRUE);
|
|
|
|
|
GetWindowRect(hwndRender, &r);
|
2018-02-14 12:04:54 +01:00
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
MoveWindow(hwndSBAR,
|
|
|
|
|
0, r.bottom + GetSystemMetrics(SM_CYEDGE),
|
|
|
|
|
x, 17, TRUE);
|
|
|
|
|
|
|
|
|
|
if (mouse_capture) {
|
|
|
|
|
GetWindowRect(hwndRender, &r);
|
|
|
|
|
ClipCursor(&r);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
plat_mouse_capture(int on)
|
|
|
|
|
{
|
|
|
|
|
RECT rect;
|
|
|
|
|
|
2018-03-19 04:19:19 +01:00
|
|
|
if (mouse_type == MOUSE_TYPE_NONE)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-11-19 03:15:29 -05:00
|
|
|
if (on && !mouse_capture) {
|
|
|
|
|
/* Enable the in-app mouse. */
|
|
|
|
|
GetClipCursor(&oldclip);
|
|
|
|
|
GetWindowRect(hwndRender, &rect);
|
|
|
|
|
ClipCursor(&rect);
|
2017-12-15 00:42:10 -05:00
|
|
|
show_cursor(0);
|
2017-11-19 03:15:29 -05:00
|
|
|
mouse_capture = 1;
|
|
|
|
|
} else if (!on && mouse_capture) {
|
|
|
|
|
/* Disable the in-app mouse. */
|
|
|
|
|
ClipCursor(&oldclip);
|
2017-12-15 18:47:29 +01:00
|
|
|
show_cursor(-1);
|
2017-11-19 03:15:29 -05:00
|
|
|
|
|
|
|
|
mouse_capture = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-07-15 01:41:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Catch WM_INPUT messages for 'current focus' window. */
|
|
|
|
|
static LONG_PTR input_orig_proc;
|
|
|
|
|
static HWND input_orig_hwnd = NULL;
|
2019-03-20 02:42:55 +08:00
|
|
|
#if defined(__amd64__) || defined(__aarch64__)
|
2018-07-15 01:41:53 +02:00
|
|
|
static LRESULT CALLBACK
|
|
|
|
|
#else
|
|
|
|
|
static BOOL CALLBACK
|
|
|
|
|
#endif
|
|
|
|
|
input_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
|
{
|
|
|
|
|
switch (message) {
|
|
|
|
|
case WM_INPUT:
|
2020-02-04 22:29:01 +08:00
|
|
|
if (infocus) {
|
|
|
|
|
UINT size = 0;
|
|
|
|
|
PRAWINPUT raw = NULL;
|
|
|
|
|
|
|
|
|
|
/* Here we read the raw input data */
|
|
|
|
|
GetRawInputData((HRAWINPUT)lParam, RID_INPUT, NULL, &size, sizeof(RAWINPUTHEADER));
|
|
|
|
|
raw = (PRAWINPUT)malloc(size);
|
|
|
|
|
if (GetRawInputData((HRAWINPUT)lParam, RID_INPUT, raw, &size, sizeof(RAWINPUTHEADER)) == size) {
|
|
|
|
|
switch(raw->header.dwType)
|
|
|
|
|
{
|
|
|
|
|
case RIM_TYPEKEYBOARD:
|
|
|
|
|
keyboard_handle(raw);
|
|
|
|
|
break;
|
|
|
|
|
case RIM_TYPEMOUSE:
|
|
|
|
|
win_mouse_handle(raw);
|
|
|
|
|
break;
|
|
|
|
|
case RIM_TYPEHID:
|
|
|
|
|
win_joystick_handle(raw);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
free(raw);
|
|
|
|
|
}
|
2018-07-15 01:41:53 +02:00
|
|
|
break;
|
|
|
|
|
case WM_SETFOCUS:
|
|
|
|
|
infocus = 1;
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2018-07-15 01:41:53 +02:00
|
|
|
if (! hook_enabled) {
|
|
|
|
|
hKeyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL,
|
|
|
|
|
LowLevelKeyboardProc,
|
|
|
|
|
GetModuleHandle(NULL),
|
|
|
|
|
0);
|
|
|
|
|
hook_enabled = 1;
|
|
|
|
|
}
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2018-07-15 01:41:53 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_KILLFOCUS:
|
|
|
|
|
infocus = 0;
|
|
|
|
|
plat_mouse_capture(0);
|
2020-07-16 01:22:13 +02:00
|
|
|
#ifndef NO_KEYBOARD_HOOK
|
2018-07-15 01:41:53 +02:00
|
|
|
if (hook_enabled) {
|
|
|
|
|
UnhookWindowsHookEx(hKeyboardHook);
|
|
|
|
|
hook_enabled = 0;
|
|
|
|
|
}
|
2020-07-16 01:22:13 +02:00
|
|
|
#endif
|
2018-07-15 01:41:53 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_LBUTTONUP:
|
|
|
|
|
if (! video_fullscreen)
|
|
|
|
|
plat_mouse_capture(1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case WM_MBUTTONUP:
|
|
|
|
|
if (mouse_get_buttons() < 3)
|
|
|
|
|
plat_mouse_capture(0);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return(CallWindowProc((WNDPROC)input_orig_proc,
|
|
|
|
|
hwnd, message, wParam, lParam));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Set up a handler for the 'currently active' window. */
|
|
|
|
|
void
|
|
|
|
|
plat_set_input(HWND h)
|
|
|
|
|
{
|
|
|
|
|
/* If needed, rest the old one first. */
|
|
|
|
|
if (input_orig_hwnd != NULL) {
|
2018-10-07 15:05:14 +02:00
|
|
|
SetWindowLongPtr(input_orig_hwnd, GWLP_WNDPROC,
|
2018-07-15 01:41:53 +02:00
|
|
|
(LONG_PTR)input_orig_proc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Redirect the window procedure so we can catch WM_INPUT. */
|
|
|
|
|
input_orig_proc = GetWindowLongPtr(h, GWLP_WNDPROC);
|
|
|
|
|
input_orig_hwnd = h;
|
2018-10-07 15:05:14 +02:00
|
|
|
SetWindowLongPtr(h, GWLP_WNDPROC, (LONG_PTR)&input_proc);
|
2020-06-04 14:26:45 +08:00
|
|
|
ImmAssociateContext(h, NULL);
|
2018-07-15 01:41:53 +02:00
|
|
|
}
|