2006-02-25 20:50:29 +00:00
/*
AppleWin : An Apple //e emulator for Windows
Copyright ( C ) 1994 - 1996 , Michael O ' Brien
Copyright ( C ) 1999 - 2001 , Oliver Schmidt
Copyright ( C ) 2002 - 2005 , Tom Charlesworth
2007-04-01 15:24:52 +00:00
Copyright ( C ) 2006 - 2007 , Tom Charlesworth , Michael Pohoreski
2006-02-25 20:50:29 +00:00
AppleWin is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
AppleWin is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with AppleWin ; if not , write to the Free Software
Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
/* Description: Frame
*
* Author : Various
*/
# include "StdAfx.h"
2010-01-03 18:43:08 +00:00
# include "DiskImage.h"
# include "Harddisk.h"
2007-08-06 21:38:35 +00:00
# include "MouseInterface.h"
2006-02-25 20:50:29 +00:00
# include "..\resource\resource.h"
2008-06-20 23:47:25 +00:00
# include <sys/stat.h>
2010-02-14 21:11:26 +00:00
# ifdef USE_SPEECH_API
# include "Speech.h"
# endif
2012-03-27 21:20:36 +00:00
# include "Configuration\PropertySheet.h"
2006-02-25 20:50:29 +00:00
2008-08-31 04:31:35 +00:00
//#define ENABLE_MENU 0
2006-02-25 20:50:29 +00:00
2008-05-17 23:20:33 +00:00
// Magic numbers (used by FrameCreateWindow to calc width/height):
# define MAGICX 5 // 3D border between Apple window & Emulator's RHS buttons
# define MAGICY 5 // 3D border between Apple window & Title bar
2013-03-07 23:23:26 +00:00
static const int kDEFAULT_VIEWPORT_SCALE = 2 ;
static int g_nViewportCX = FRAMEBUFFER_W * kDEFAULT_VIEWPORT_SCALE ;
static int g_nViewportCY = FRAMEBUFFER_H * kDEFAULT_VIEWPORT_SCALE ;
static int g_nViewportScale = kDEFAULT_VIEWPORT_SCALE ;
static int g_nOldViewportScale = kDEFAULT_VIEWPORT_SCALE ;
static int g_nMaxViewportScale = kDEFAULT_VIEWPORT_SCALE ;
2008-08-31 04:31:35 +00:00
2012-12-29 14:53:52 +00:00
# define BUTTONX (g_nViewportCX + VIEWPORTX*2)
2006-02-25 20:50:29 +00:00
# define BUTTONY 0
# define BUTTONCX 45
# define BUTTONCY 45
2008-05-17 23:20:33 +00:00
// NB. FSxxx = FullScreen xxx
2012-12-29 14:53:52 +00:00
# define FSVIEWPORTX (640-BUTTONCX-MAGICX-g_nViewportCX)
# define FSVIEWPORTY ((480-g_nViewportCY) / 2)
2006-02-25 20:50:29 +00:00
# define FSBUTTONX (640-BUTTONCX)
2012-12-29 14:53:52 +00:00
# define FSBUTTONY (((480-g_nViewportCY) / 2)-1)
2006-02-25 20:50:29 +00:00
# define BUTTONS 8
2010-12-18 21:00:52 +00:00
static HBITMAP g_hCapsLockBitmap [ 2 ] ;
static HBITMAP g_hHardDiskBitmap [ 2 ] ;
//Pravets8 only
static HBITMAP g_hCapsBitmapP8 [ 2 ] ;
static HBITMAP g_hCapsBitmapLat [ 2 ] ;
//static HBITMAP charsetbitmap [4]; //The idea was to add a charset indicator on the front panel, but it was given up. All charsetbitmap occurences must be REMOVED!
//===========================
static HBITMAP g_hDiskWindowedLED [ NUM_DISK_STATUS ] ;
2009-02-18 23:53:24 +00:00
//static HBITMAP g_hDiskFullScreenLED[ NUM_DISK_STATUS ];
// Must keep in sync with Disk_Status_e g_aDiskFullScreenColors
static DWORD g_aDiskFullScreenColorsLED [ NUM_DISK_STATUS ] =
{
RGB ( 0 , 0 , 0 ) , // DISK_STATUS_OFF BLACK
RGB ( 0 , 255 , 0 ) , // DISK_STATUS_READ GREEN
RGB ( 255 , 0 , 0 ) , // DISK_STATUS_WRITE RED
RGB ( 255 , 128 , 0 ) // DISK_STATUS_PROT ORANGE
// RGB( 0, 0,255) // DISK_STATUS_PROT -blue-
} ;
2006-02-28 18:40:59 +00:00
2006-02-25 20:50:29 +00:00
static HBITMAP buttonbitmap [ BUTTONS ] ;
2006-06-26 16:59:48 +00:00
static bool g_bAppActive = false ;
2006-02-25 20:50:29 +00:00
static HBRUSH btnfacebrush = ( HBRUSH ) 0 ;
static HPEN btnfacepen = ( HPEN ) 0 ;
static HPEN btnhighlightpen = ( HPEN ) 0 ;
static HPEN btnshadowpen = ( HPEN ) 0 ;
static int buttonactive = - 1 ;
static int buttondown = - 1 ;
static int buttonover = - 1 ;
static int buttonx = BUTTONX ;
static int buttony = BUTTONY ;
static HRGN clipregion = ( HRGN ) 0 ;
2012-12-29 14:53:52 +00:00
static HDC g_hFrameDC = ( HDC ) 0 ;
2006-02-25 20:50:29 +00:00
static RECT framerect = { 0 , 0 , 0 , 0 } ;
2009-02-16 19:11:33 +00:00
HWND g_hFrameWindow = ( HWND ) 0 ;
BOOL g_bIsFullScreen = 0 ;
2011-02-20 18:59:53 +00:00
BOOL g_bMultiMon = 0 ; // OFF = load window position & clamp initial frame to screen, ON = use window position as is
2009-02-16 19:11:33 +00:00
2006-02-25 20:50:29 +00:00
static BOOL helpquit = 0 ;
2009-01-06 22:02:31 +00:00
static BOOL g_bPaintingWindow = 0 ;
2006-02-25 20:50:29 +00:00
static HFONT smallfont = ( HFONT ) 0 ;
static HWND tooltipwindow = ( HWND ) 0 ;
2008-06-08 12:31:50 +00:00
static BOOL g_bUsingCursor = 0 ; // 1=AppleWin is using (hiding) the mouse-cursor
2008-05-17 23:20:33 +00:00
static int viewportx = VIEWPORTX ; // Default to Normal (non-FullScreen) mode
static int viewporty = VIEWPORTY ; // Default to Normal (non-FullScreen) mode
2008-06-20 23:47:25 +00:00
int g_nCharsetType = 0 ;
2006-02-25 20:50:29 +00:00
2009-02-16 19:11:33 +00:00
// Direct Draw -- For Full Screen
LPDIRECTDRAW g_pDD = ( LPDIRECTDRAW ) 0 ;
LPDIRECTDRAWSURFACE g_pDDPrimarySurface = ( LPDIRECTDRAWSURFACE ) 0 ;
IDirectDrawPalette * g_pDDPal = ( IDirectDrawPalette * ) 0 ;
2006-02-25 20:50:29 +00:00
2007-12-02 14:55:32 +00:00
static bool g_bShowingCursor = true ;
2008-05-17 23:20:33 +00:00
static bool g_bLastCursorInAppleViewport = false ;
2007-12-02 14:55:32 +00:00
2006-02-25 20:50:29 +00:00
void DrawStatusArea ( HDC passdc , BOOL drawflags ) ;
2013-12-06 21:10:41 +00:00
static void ProcessButtonClick ( int button , bool bFromButtonUI = false ) ;
2006-02-28 18:40:59 +00:00
void ProcessDiskPopupMenu ( HWND hwnd , POINT pt , const int iDrive ) ;
2006-02-25 20:50:29 +00:00
void RelayEvent ( UINT message , WPARAM wparam , LPARAM lparam ) ;
void ResetMachineState ( ) ;
void SetFullScreenMode ( ) ;
void SetNormalMode ( ) ;
void SetUsingCursor ( BOOL ) ;
2008-06-20 23:47:25 +00:00
static bool FileExists ( string strFilename ) ;
2006-02-25 20:50:29 +00:00
2007-08-06 21:38:35 +00:00
bool g_bScrollLock_FullSpeed = false ;
2009-02-17 02:13:18 +00:00
bool g_bFreshReset = false ;
2014-06-26 21:44:02 +00:00
static bool g_bFullScreen32Bit = true ;
2007-08-06 21:38:35 +00:00
2011-02-20 07:32:09 +00:00
// __ Prototypes __________________________________________________________________________________
static void DrawCrosshairs ( int x , int y ) ;
static void FrameSetCursorPosByMousePos ( int x , int y , int dx , int dy , bool bLeavingAppleScreen ) ;
static void DrawCrosshairsMouse ( ) ;
static void UpdateMouseInAppleViewport ( int iOutOfBoundsX , int iOutOfBoundsY , int x = 0 , int y = 0 ) ;
2012-12-29 14:53:52 +00:00
static void ScreenWindowResize ( const bool bCtrlKey ) ;
2013-01-06 13:47:52 +00:00
static void FrameResizeWindow ( int nNewScale ) ;
2013-01-05 22:01:15 +00:00
static void GetWidthHeight ( int & nWidth , int & nHeight ) ;
2012-12-29 14:53:52 +00:00
2011-02-20 07:32:09 +00:00
TCHAR g_pAppleWindowTitle [ 128 ] = " " ;
// Updates g_pAppTitle
// ====================================================================
void GetAppleWindowTitle ( )
{
g_pAppTitle = g_pAppleWindowTitle ;
switch ( g_Apple2Type )
{
default :
case A2TYPE_APPLE2 : _tcscpy ( g_pAppleWindowTitle , TITLE_APPLE_2 ) ; break ;
case A2TYPE_APPLE2PLUS : _tcscpy ( g_pAppleWindowTitle , TITLE_APPLE_2_PLUS ) ; break ;
case A2TYPE_APPLE2E : _tcscpy ( g_pAppleWindowTitle , TITLE_APPLE_2E ) ; break ;
2012-09-16 21:53:07 +00:00
case A2TYPE_APPLE2EENHANCED : _tcscpy ( g_pAppleWindowTitle , TITLE_APPLE_2E_ENHANCED ) ; break ;
2011-02-20 07:32:09 +00:00
case A2TYPE_PRAVETS82 : _tcscpy ( g_pAppleWindowTitle , TITLE_PRAVETS_82 ) ; break ;
case A2TYPE_PRAVETS8M : _tcscpy ( g_pAppleWindowTitle , TITLE_PRAVETS_8M ) ; break ;
case A2TYPE_PRAVETS8A : _tcscpy ( g_pAppleWindowTitle , TITLE_PRAVETS_8A ) ; break ;
}
# if _DEBUG
_tcscat ( g_pAppleWindowTitle , " *DEBUG* " ) ;
# endif
if ( g_nAppMode = = MODE_LOGO )
return ;
// TODO: g_bDisplayVideoModeInTitle
_tcscat ( g_pAppleWindowTitle , " - " ) ;
if ( g_uHalfScanLines )
{
_tcscat ( g_pAppleWindowTitle , " 50% " ) ;
}
_tcscat ( g_pAppleWindowTitle , g_apVideoModeDesc [ g_eVideoType ] ) ;
if ( g_hCustomRomF8 ! = INVALID_HANDLE_VALUE )
_tcscat ( g_pAppleWindowTitle , TEXT ( " (custom rom) " ) ) ;
2012-03-27 21:20:36 +00:00
else if ( sg_PropertySheet . GetTheFreezesF8Rom ( ) & & IS_APPLE2 )
2011-02-20 07:32:09 +00:00
_tcscat ( g_pAppleWindowTitle , TEXT ( " (The Freeze's non-autostart F8 rom) " ) ) ;
switch ( g_nAppMode )
{
case MODE_PAUSED : _tcscat ( g_pAppleWindowTitle , TEXT ( " [ " ) ) ; _tcscat ( g_pAppleWindowTitle , TITLE_PAUSED ) ; _tcscat ( g_pAppleWindowTitle , TEXT ( " ] " ) ) ; break ;
case MODE_STEPPING : _tcscat ( g_pAppleWindowTitle , TEXT ( " [ " ) ) ; _tcscat ( g_pAppleWindowTitle , TITLE_STEPPING ) ; _tcscat ( g_pAppleWindowTitle , TEXT ( " ] " ) ) ; break ;
}
g_pAppTitle = g_pAppleWindowTitle ;
}
2008-05-17 23:20:33 +00:00
2006-02-25 20:50:29 +00:00
//===========================================================================
2008-05-18 18:23:25 +00:00
2008-06-08 12:31:50 +00:00
static void FrameShowCursor ( BOOL bShow )
2008-05-18 18:23:25 +00:00
{
int nCount ;
if ( bShow )
{
do
{
nCount = ShowCursor ( bShow ) ;
}
while ( nCount < 0 ) ;
g_bShowingCursor = true ;
}
else
{
do
{
nCount = ShowCursor ( bShow ) ;
}
while ( nCount > = 0 ) ;
g_bShowingCursor = false ;
}
}
2008-06-08 12:31:50 +00:00
// Called when:
// . Ctrl-Left mouse button
// . PAUSE pressed (when MODE_RUNNING)
// . AppleWin's main window is deactivated
static void RevealCursor ( )
{
if ( ! sg_Mouse . IsActiveAndEnabled ( ) )
return ;
sg_Mouse . SetEnabled ( false ) ;
FrameShowCursor ( TRUE ) ;
2012-03-27 21:20:36 +00:00
if ( sg_PropertySheet . GetMouseShowCrosshair ( ) ) // Erase crosshairs if they are being drawn
2008-06-08 12:31:50 +00:00
DrawCrosshairs ( 0 , 0 ) ;
2012-03-27 21:20:36 +00:00
if ( sg_PropertySheet . GetMouseRestrictToWindow ( ) )
2008-06-08 12:31:50 +00:00
SetUsingCursor ( FALSE ) ;
g_bLastCursorInAppleViewport = false ;
}
2008-05-18 18:23:25 +00:00
//===========================================================================
2006-07-02 09:56:50 +00:00
# define LOADBUTTONBITMAP(bitmapname) LoadImage(g_hInstance,bitmapname, \
2006-02-25 20:50:29 +00:00
IMAGE_BITMAP , 0 , 0 , \
LR_CREATEDIBSECTION | \
LR_LOADMAP3DCOLORS | \
LR_LOADTRANSPARENT ) ;
2008-06-20 23:47:25 +00:00
2013-08-08 21:13:31 +00:00
static void CreateGdiObjects ( void )
{
ZeroMemory ( buttonbitmap , BUTTONS * sizeof ( HBITMAP ) ) ;
buttonbitmap [ BTN_HELP ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " HELP_BUTTON " ) ) ;
switch ( g_Apple2Type )
{
case A2TYPE_PRAVETS82 :
case A2TYPE_PRAVETS8M :
case A2TYPE_PRAVETS8A :
buttonbitmap [ BTN_RUN ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " RUNP_BUTTON " ) ) ;
break ;
default :
buttonbitmap [ BTN_RUN ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " RUN_BUTTON " ) ) ;
break ;
}
buttonbitmap [ BTN_DRIVE1 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DRIVE1_BUTTON " ) ) ;
buttonbitmap [ BTN_DRIVE2 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DRIVE2_BUTTON " ) ) ;
buttonbitmap [ BTN_DRIVESWAP ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DRIVESWAP_BUTTON " ) ) ;
buttonbitmap [ BTN_FULLSCR ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " FULLSCR_BUTTON " ) ) ;
buttonbitmap [ BTN_DEBUG ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DEBUG_BUTTON " ) ) ;
buttonbitmap [ BTN_SETUP ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " SETUP_BUTTON " ) ) ;
//
g_hCapsLockBitmap [ 0 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " LED_CAPSOFF_BITMAP " ) ) ;
g_hCapsLockBitmap [ 1 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " LED_CAPSON_BITMAP " ) ) ;
//Pravets8 only
g_hCapsBitmapP8 [ 0 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " LED_CAPSOFF_P8_BITMAP " ) ) ;
g_hCapsBitmapP8 [ 1 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " LED_CAPSON_P8_BITMAP " ) ) ;
g_hCapsBitmapLat [ 0 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " LED_LATOFF_BITMAP " ) ) ;
g_hCapsBitmapLat [ 1 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " LED_LATON_BITMAP " ) ) ;
/*charsetbitmap[0] = (HBITMAP)LOADBUTTONBITMAP(TEXT("CHARSET_APPLE_BITMAP"));
charsetbitmap [ 1 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " CHARSET_82_BITMAP " ) ) ;
charsetbitmap [ 2 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " CHARSET_8A_BITMAP " ) ) ;
charsetbitmap [ 3 ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " CHARSET_8M_BITMAP " ) ) ;
*/
//===========================
g_hDiskWindowedLED [ DISK_STATUS_OFF ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DISKOFF_BITMAP " ) ) ;
g_hDiskWindowedLED [ DISK_STATUS_READ ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DISKREAD_BITMAP " ) ) ;
g_hDiskWindowedLED [ DISK_STATUS_WRITE ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DISKWRITE_BITMAP " ) ) ;
g_hDiskWindowedLED [ DISK_STATUS_PROT ] = ( HBITMAP ) LOADBUTTONBITMAP ( TEXT ( " DISKPROT_BITMAP " ) ) ;
// Full Screen Drive LED
// g_hDiskFullScreenLED[ DISK_STATUS_OFF ] = (HBITMAP)LOADBUTTONBITMAP(TEXT("DISK_FULLSCREEN_O")); // Full Screen Off
// g_hDiskFullScreenLED[ DISK_STATUS_READ ] = (HBITMAP)LOADBUTTONBITMAP(TEXT("DISK_FULLSCREEN_R")); // Full Screen Read Only
// g_hDiskFullScreenLED[ DISK_STATUS_WRITE] = (HBITMAP)LOADBUTTONBITMAP(TEXT("DISK_FULLSCREEN_W")); // Full Screen Write
// g_hDiskFullScreenLED[ DISK_STATUS_PROT ] = (HBITMAP)LOADBUTTONBITMAP(TEXT("DISK_FULLSCREEN_P")); // Full Screen Write Protected
btnfacebrush = CreateSolidBrush ( GetSysColor ( COLOR_BTNFACE ) ) ;
btnfacepen = CreatePen ( PS_SOLID , 1 , GetSysColor ( COLOR_BTNFACE ) ) ;
btnhighlightpen = CreatePen ( PS_SOLID , 1 , GetSysColor ( COLOR_BTNHIGHLIGHT ) ) ;
btnshadowpen = CreatePen ( PS_SOLID , 1 , GetSysColor ( COLOR_BTNSHADOW ) ) ;
smallfont = CreateFont ( 11 , 6 , 0 , 0 , FW_NORMAL , 0 , 0 , 0 , ANSI_CHARSET ,
OUT_DEFAULT_PRECIS , CLIP_DEFAULT_PRECIS ,
DEFAULT_QUALITY , VARIABLE_PITCH | FF_SWISS ,
TEXT ( " Small Fonts " ) ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2013-08-08 21:13:31 +00:00
static void DeleteGdiObjects ( void )
{
for ( int loop = 0 ; loop < BUTTONS ; loop + + )
_ASSERT ( DeleteObject ( buttonbitmap [ loop ] ) ) ;
for ( int loop = 0 ; loop < 2 ; loop + + )
{
_ASSERT ( DeleteObject ( g_hCapsLockBitmap [ loop ] ) ) ;
_ASSERT ( DeleteObject ( g_hCapsBitmapP8 [ loop ] ) ) ;
_ASSERT ( DeleteObject ( g_hCapsBitmapLat [ loop ] ) ) ;
}
for ( int loop = 0 ; loop < NUM_DISK_STATUS ; loop + + )
{
_ASSERT ( DeleteObject ( g_hDiskWindowedLED [ loop ] ) ) ;
//_ASSERT(DeleteObject(g_hDiskFullScreenLED[loop]));
}
_ASSERT ( DeleteObject ( btnfacebrush ) ) ;
_ASSERT ( DeleteObject ( btnfacepen ) ) ;
_ASSERT ( DeleteObject ( btnhighlightpen ) ) ;
_ASSERT ( DeleteObject ( btnshadowpen ) ) ;
_ASSERT ( DeleteObject ( smallfont ) ) ;
2006-02-25 20:50:29 +00:00
}
2006-07-05 21:23:13 +00:00
// Draws an 3D box around the main apple screen
2006-02-25 20:50:29 +00:00
//===========================================================================
2008-06-08 12:31:50 +00:00
static void Draw3dRect ( HDC dc , int x1 , int y1 , int x2 , int y2 , BOOL out )
2006-07-05 21:23:13 +00:00
{
SelectObject ( dc , GetStockObject ( NULL_BRUSH ) ) ;
SelectObject ( dc , out ? btnshadowpen : btnhighlightpen ) ;
POINT pt [ 3 ] ;
pt [ 0 ] . x = x1 ; pt [ 0 ] . y = y2 - 1 ;
pt [ 1 ] . x = x2 - 1 ; pt [ 1 ] . y = y2 - 1 ;
pt [ 2 ] . x = x2 - 1 ; pt [ 2 ] . y = y1 ;
Polyline ( dc , ( LPPOINT ) & pt , 3 ) ;
SelectObject ( dc , ( out = = 1 ) ? btnhighlightpen : btnshadowpen ) ;
pt [ 1 ] . x = x1 ; pt [ 1 ] . y = y1 ;
pt [ 2 ] . x = x2 ; pt [ 2 ] . y = y1 ;
Polyline ( dc , ( LPPOINT ) & pt , 3 ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2008-06-08 12:31:50 +00:00
static void DrawBitmapRect ( HDC dc , int x , int y , LPRECT rect , HBITMAP bitmap ) {
2006-02-25 20:50:29 +00:00
HDC memdc = CreateCompatibleDC ( dc ) ;
SelectObject ( memdc , bitmap ) ;
BitBlt ( dc , x , y ,
rect - > right + 1 - rect - > left ,
rect - > bottom + 1 - rect - > top ,
memdc ,
rect - > left ,
rect - > top ,
SRCCOPY ) ;
DeleteDC ( memdc ) ;
}
//===========================================================================
2008-06-08 12:31:50 +00:00
static void DrawButton ( HDC passdc , int number ) {
2006-02-25 20:50:29 +00:00
FrameReleaseDC ( ) ;
2006-05-14 00:44:38 +00:00
HDC dc = ( passdc ? passdc : GetDC ( g_hFrameWindow ) ) ;
2006-02-25 20:50:29 +00:00
int x = buttonx ;
int y = buttony + number * BUTTONCY ;
if ( number = = buttondown ) {
int loop = 0 ;
while ( loop + + < 3 )
Draw3dRect ( dc , x + loop , y + loop , x + BUTTONCX , y + BUTTONCY , 0 ) ;
RECT rect = { 0 , 0 , 39 , 39 } ;
DrawBitmapRect ( dc , x + 4 , y + 4 , & rect , buttonbitmap [ number ] ) ;
}
else {
Draw3dRect ( dc , x + 1 , y + 1 , x + BUTTONCX , y + BUTTONCY , 1 ) ;
Draw3dRect ( dc , x + 2 , y + 2 , x + BUTTONCX - 1 , y + BUTTONCY - 1 , 1 ) ;
RECT rect = { 1 , 1 , 40 , 40 } ;
DrawBitmapRect ( dc , x + 3 , y + 3 , & rect , buttonbitmap [ number ] ) ;
}
if ( ( number = = BTN_DRIVE1 ) | | ( number = = BTN_DRIVE2 ) ) {
int offset = ( number = = buttondown ) < < 1 ;
RECT rect = { x + offset + 3 ,
y + offset + 31 ,
x + offset + 42 ,
y + offset + 42 } ;
SelectObject ( dc , smallfont ) ;
SetTextColor ( dc , RGB ( 0 , 0 , 0 ) ) ;
SetTextAlign ( dc , TA_CENTER | TA_TOP ) ;
SetBkMode ( dc , TRANSPARENT ) ;
2010-01-03 18:43:08 +00:00
LPCTSTR pszBaseName = DiskGetBaseName ( number - BTN_DRIVE1 ) ;
2006-02-25 20:50:29 +00:00
ExtTextOut ( dc , x + offset + 22 , rect . top , ETO_CLIPPED , & rect ,
2010-01-03 18:43:08 +00:00
pszBaseName ,
MIN ( 8 , _tcslen ( pszBaseName ) ) ,
2006-02-25 20:50:29 +00:00
NULL ) ;
}
if ( ! passdc )
2006-05-14 00:44:38 +00:00
ReleaseDC ( g_hFrameWindow , dc ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2008-06-08 12:31:50 +00:00
static void DrawCrosshairs ( int x , int y ) {
2006-02-25 20:50:29 +00:00
static int lastx = 0 ;
static int lasty = 0 ;
FrameReleaseDC ( ) ;
2006-05-14 00:44:38 +00:00
HDC dc = GetDC ( g_hFrameWindow ) ;
2006-02-25 20:50:29 +00:00
# define LINE(x1,y1,x2,y2) MoveToEx(dc,x1,y1,NULL); LineTo(dc,x2,y2);
// ERASE THE OLD CROSSHAIRS
if ( lastx & & lasty )
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen ) {
2006-02-25 20:50:29 +00:00
int loop = 4 ;
while ( loop - - ) {
RECT rect = { 0 , 0 , 5 , 5 } ;
switch ( loop ) {
2012-12-29 14:53:52 +00:00
case 0 : OffsetRect ( & rect , lastx - 2 , FSVIEWPORTY - 5 ) ; break ;
case 1 : OffsetRect ( & rect , lastx - 2 , FSVIEWPORTY + g_nViewportCY ) ; break ;
case 2 : OffsetRect ( & rect , FSVIEWPORTX - 5 , lasty - 2 ) ; break ;
case 3 : OffsetRect ( & rect , FSVIEWPORTX + g_nViewportCX , lasty - 2 ) ; break ;
2006-02-25 20:50:29 +00:00
}
FillRect ( dc , & rect , ( HBRUSH ) GetStockObject ( BLACK_BRUSH ) ) ;
}
}
else {
int loop = 5 ;
while ( loop - - ) {
switch ( loop ) {
case 0 : SelectObject ( dc , GetStockObject ( BLACK_PEN ) ) ; break ;
case 1 : // fall through
case 2 : SelectObject ( dc , btnshadowpen ) ; break ;
case 3 : // fall through
case 4 : SelectObject ( dc , btnfacepen ) ; break ;
}
LINE ( lastx - 2 , VIEWPORTY - loop - 1 ,
lastx + 3 , VIEWPORTY - loop - 1 ) ;
LINE ( VIEWPORTX - loop - 1 , lasty - 2 ,
VIEWPORTX - loop - 1 , lasty + 3 ) ;
if ( ( loop = = 1 ) | | ( loop = = 2 ) )
SelectObject ( dc , btnhighlightpen ) ;
2012-12-29 14:53:52 +00:00
LINE ( lastx - 2 , VIEWPORTY + g_nViewportCY + loop ,
lastx + 3 , VIEWPORTY + g_nViewportCY + loop ) ;
LINE ( VIEWPORTX + g_nViewportCX + loop , lasty - 2 ,
VIEWPORTX + g_nViewportCX + loop , lasty + 3 ) ;
2006-02-25 20:50:29 +00:00
}
}
// DRAW THE NEW CROSSHAIRS
if ( x & & y ) {
int loop = 4 ;
while ( loop - - ) {
if ( ( loop = = 1 ) | | ( loop = = 2 ) )
SelectObject ( dc , GetStockObject ( WHITE_PEN ) ) ;
else
SelectObject ( dc , GetStockObject ( BLACK_PEN ) ) ;
LINE ( x + loop - 2 , viewporty - 5 ,
x + loop - 2 , viewporty ) ;
2012-12-29 14:53:52 +00:00
LINE ( x + loop - 2 , viewporty + g_nViewportCY + 4 ,
x + loop - 2 , viewporty + g_nViewportCY - 1 ) ;
2006-02-25 20:50:29 +00:00
LINE ( viewportx - 5 , y + loop - 2 ,
viewportx , y + loop - 2 ) ;
2012-12-29 14:53:52 +00:00
LINE ( viewportx + g_nViewportCX + 4 , y + loop - 2 ,
viewportx + g_nViewportCX - 1 , y + loop - 2 ) ;
2006-02-25 20:50:29 +00:00
}
}
# undef LINE
lastx = x ;
lasty = y ;
2006-05-14 00:44:38 +00:00
ReleaseDC ( g_hFrameWindow , dc ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2009-02-21 04:42:35 +00:00
static void DrawFrameWindow ( )
{
FrameReleaseDC ( ) ;
PAINTSTRUCT ps ;
HDC dc = ( g_bPaintingWindow
? BeginPaint ( g_hFrameWindow , & ps )
: GetDC ( g_hFrameWindow ) ) ;
2006-02-25 20:50:29 +00:00
2009-02-21 04:42:35 +00:00
VideoRealizePalette ( dc ) ;
if ( ! g_bIsFullScreen )
{
// DRAW THE 3D BORDER AROUND THE EMULATED SCREEN
Draw3dRect ( dc ,
VIEWPORTX - 2 , VIEWPORTY - 2 ,
2012-12-29 14:53:52 +00:00
VIEWPORTX + g_nViewportCX + 2 , VIEWPORTY + g_nViewportCY + 2 ,
2009-02-21 04:42:35 +00:00
0 ) ;
Draw3dRect ( dc ,
VIEWPORTX - 3 , VIEWPORTY - 3 ,
2012-12-29 14:53:52 +00:00
VIEWPORTX + g_nViewportCX + 3 , VIEWPORTY + g_nViewportCY + 3 ,
2009-02-21 04:42:35 +00:00
0 ) ;
SelectObject ( dc , btnfacepen ) ;
Rectangle ( dc ,
VIEWPORTX - 4 , VIEWPORTY - 4 ,
2012-12-29 14:53:52 +00:00
VIEWPORTX + g_nViewportCX + 4 , VIEWPORTY + g_nViewportCY + 4 ) ;
2009-02-21 04:42:35 +00:00
Rectangle ( dc ,
VIEWPORTX - 5 , VIEWPORTY - 5 ,
2012-12-29 14:53:52 +00:00
VIEWPORTX + g_nViewportCX + 5 , VIEWPORTY + g_nViewportCY + 5 ) ;
2009-02-21 04:42:35 +00:00
// DRAW THE TOOLBAR BUTTONS
int iButton = BUTTONS ;
while ( iButton - - )
{
DrawButton ( dc , iButton ) ;
}
2012-12-29 14:53:52 +00:00
if ( g_nViewportScale = = 2 )
{
int x = buttonx + 1 ;
int y = buttony + BUTTONS * BUTTONCY + 36 ; // 36 = height of StatusArea
RECT rect = { x , y , x + 45 , y + BUTTONS * BUTTONCY + 22 } ;
HBRUSH hbr = ( HBRUSH ) GetStockObject ( WHITE_BRUSH ) ;
int res = FillRect ( dc , & rect , hbr ) ;
}
2009-02-21 04:42:35 +00:00
}
// DRAW THE STATUS AREA
DrawStatusArea ( dc , DRAW_BACKGROUND | DRAW_LEDS ) ;
// DRAW THE CONTENTS OF THE EMULATED SCREEN
if ( g_nAppMode = = MODE_LOGO )
VideoDisplayLogo ( ) ;
else if ( g_nAppMode = = MODE_DEBUG )
DebugDisplay ( 1 ) ;
else
2014-06-27 21:43:25 +00:00
// Win7: In fullscreen mode with 1 redraw, the the screen doesn't get redraw.
VideoRedrawScreen ( g_bIsFullScreen ? 2 : 1 ) ; // TC: 22/06/2014: Why 2 redraws in full-screen mode (32-bit only)? (8-bit doesn't need this nor does Win8, just Win7 or older OS's)
2009-02-21 04:42:35 +00:00
// DD Full-Screen Palette: BUGFIX: needs to come _after_ all drawing...
if ( g_bPaintingWindow )
EndPaint ( g_hFrameWindow , & ps ) ;
else
ReleaseDC ( g_hFrameWindow , dc ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2008-06-08 12:31:50 +00:00
static void DrawStatusArea ( HDC passdc , int drawflags )
2006-06-26 16:59:48 +00:00
{
FrameReleaseDC ( ) ;
HDC dc = ( passdc ? passdc : GetDC ( g_hFrameWindow ) ) ;
int x = buttonx ;
int y = buttony + BUTTONS * BUTTONCY + 1 ;
2010-12-20 23:46:11 +00:00
const bool bCaps = KeybGetCapsStatus ( ) ;
//const bool bP8Caps = KeybGetP8CapsStatus(); // TODO: FIXME: Not used ?! Should show the LED status ...
2010-12-18 21:00:52 +00:00
2010-12-20 23:46:11 +00:00
Disk_Status_e eDrive1Status = DISK_STATUS_OFF ;
Disk_Status_e eDrive2Status = DISK_STATUS_OFF ;
DiskGetLightStatus ( & eDrive1Status , & eDrive2Status ) ;
2006-06-26 16:59:48 +00:00
2010-12-18 21:00:52 +00:00
# if HD_LED
// 1.19.0.0 Hard Disk Status/Indicator Light
2010-12-20 23:46:11 +00:00
Disk_Status_e eHardDriveStatus = DISK_STATUS_OFF ;
HD_GetLightStatus ( & eHardDriveStatus ) ;
2010-12-18 21:00:52 +00:00
# endif
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen )
2006-02-25 20:50:29 +00:00
{
2006-06-26 16:59:48 +00:00
SelectObject ( dc , smallfont ) ;
SetBkMode ( dc , OPAQUE ) ;
SetBkColor ( dc , RGB ( 0 , 0 , 0 ) ) ;
SetTextAlign ( dc , TA_LEFT | TA_TOP ) ;
2009-02-18 23:53:24 +00:00
2010-12-20 23:46:11 +00:00
SetTextColor ( dc , g_aDiskFullScreenColorsLED [ eDrive1Status ] ) ;
2006-06-26 16:59:48 +00:00
TextOut ( dc , x + 3 , y + 2 , TEXT ( " 1 " ) , 1 ) ;
2009-02-18 23:53:24 +00:00
2010-12-20 23:46:11 +00:00
SetTextColor ( dc , g_aDiskFullScreenColorsLED [ eDrive2Status ] ) ;
2006-06-26 16:59:48 +00:00
TextOut ( dc , x + 13 , y + 2 , TEXT ( " 2 " ) , 1 ) ;
2009-02-18 23:53:24 +00:00
2010-12-18 21:30:50 +00:00
# if HD_LED
2010-12-20 23:46:11 +00:00
SetTextColor ( dc , g_aDiskFullScreenColorsLED [ eHardDriveStatus ] ) ;
2010-12-18 21:30:50 +00:00
TextOut ( dc , x + 23 , y + 2 , TEXT ( " H " ) , 1 ) ;
# endif
2009-02-18 23:53:24 +00:00
// Feature Request #3581 ] drive lights in full screen mode
2009-02-19 00:04:54 +00:00
// This has been in for a while, at least since 1.12.7.1
2009-02-18 23:53:24 +00:00
// Full Screen Drive LED
// Note: Made redundant with above code
// RECT rect = {0,0,8,8};
// CONST int DriveLedY = 12; // 8 in windowed mode
2010-12-20 23:46:11 +00:00
// DrawBitmapRect(dc,x+12,y+DriveLedY,&rect,g_hDiskFullScreenLED[ eDrive1Status ]);
// DrawBitmapRect(dc,x+30,y+DriveLedY,&rect,g_hDiskFullScreenLED[ eDrive2Status ]);
// SetTextColor(dc, g_aDiskFullScreenColors[ eDrive1Status ] );
2009-02-18 23:53:24 +00:00
// TextOut(dc,x+ 10,y+2,TEXT("*"),1);
2010-12-20 23:46:11 +00:00
// SetTextColor(dc, g_aDiskFullScreenColors[ eDrive2Status ] );
2009-02-18 23:53:24 +00:00
// TextOut(dc,x+ 20,y+2,TEXT("*"),1);
2007-05-28 11:16:42 +00:00
if ( ! IS_APPLE2 )
2006-06-26 16:59:48 +00:00
{
SetTextAlign ( dc , TA_RIGHT | TA_TOP ) ;
SetTextColor ( dc , ( bCaps
? RGB ( 128 , 128 , 128 )
: RGB ( 0 , 0 , 0 ) ) ) ;
2010-12-18 21:30:50 +00:00
// const TCHAR sCapsStatus[] = TEXT("Caps"); // Caps or A
// const int nCapsLen = sizeof(sCapsStatus) / sizeof(TCHAR);
// TextOut(dc,x+BUTTONCX,y+2,"Caps",4); // sCapsStatus,nCapsLen - 1);
TextOut ( dc , x + BUTTONCX , y + 2 , TEXT ( " A " ) , 1 ) ;
2006-06-26 16:59:48 +00:00
}
SetTextAlign ( dc , TA_CENTER | TA_TOP ) ;
SetTextColor ( dc , ( g_nAppMode = = MODE_PAUSED | | g_nAppMode = = MODE_STEPPING
? RGB ( 255 , 255 , 255 )
: RGB ( 0 , 0 , 0 ) ) ) ;
TextOut ( dc , x + BUTTONCX / 2 , y + 13 , ( g_nAppMode = = MODE_PAUSED
? TITLE_PAUSED
: TITLE_STEPPING ) , 8 ) ;
2009-02-18 23:53:24 +00:00
2006-02-25 20:50:29 +00:00
}
2006-06-26 16:59:48 +00:00
else
{
if ( drawflags & DRAW_BACKGROUND )
{
SelectObject ( dc , GetStockObject ( NULL_PEN ) ) ;
SelectObject ( dc , btnfacebrush ) ;
Rectangle ( dc , x , y , x + BUTTONCX + 2 , y + 35 ) ;
Draw3dRect ( dc , x + 1 , y + 3 , x + BUTTONCX , y + 31 , 0 ) ;
SelectObject ( dc , smallfont ) ;
SetTextAlign ( dc , TA_CENTER | TA_TOP ) ;
SetTextColor ( dc , RGB ( 0 , 0 , 0 ) ) ;
SetBkMode ( dc , TRANSPARENT ) ;
2010-12-18 21:00:52 +00:00
TextOut ( dc , x + 7 , y + 5 , TEXT ( " 1 " ) , 1 ) ;
TextOut ( dc , x + 27 , y + 5 , TEXT ( " 2 " ) , 1 ) ;
// 1.19.0.0 Hard Disk Status/Indicator Light
TextOut ( dc , x + 7 , y + 17 , TEXT ( " H " ) , 1 ) ;
2006-06-26 16:59:48 +00:00
}
if ( drawflags & DRAW_LEDS )
{
2010-12-18 21:00:52 +00:00
RECT rDiskLed = { 0 , 0 , 8 , 8 } ;
2010-12-20 23:46:11 +00:00
DrawBitmapRect ( dc , x + 12 , y + 6 , & rDiskLed , g_hDiskWindowedLED [ eDrive1Status ] ) ;
DrawBitmapRect ( dc , x + 31 , y + 6 , & rDiskLed , g_hDiskWindowedLED [ eDrive2Status ] ) ;
2006-11-28 16:34:21 +00:00
2007-05-28 11:16:42 +00:00
if ( ! IS_APPLE2 )
2006-11-28 16:34:21 +00:00
{
2010-12-18 21:00:52 +00:00
RECT rCapsLed = { 0 , 0 , 10 , 12 } ; // HACK: HARD-CODED bitmaps size
switch ( g_Apple2Type )
{
case A2TYPE_APPLE2 :
case A2TYPE_APPLE2PLUS :
case A2TYPE_APPLE2E :
2012-09-16 21:53:07 +00:00
case A2TYPE_APPLE2EENHANCED :
2010-12-18 21:00:52 +00:00
default : DrawBitmapRect ( dc , x + 31 , y + 17 , & rCapsLed , g_hCapsLockBitmap [ bCaps ! = 0 ] ) ; break ;
2011-01-06 17:59:19 +00:00
case A2TYPE_PRAVETS82 :
case A2TYPE_PRAVETS8M : DrawBitmapRect ( dc , x + 31 , y + 17 , & rCapsLed , g_hCapsBitmapP8 [ bCaps ! = 0 ] ) ; break ; // TODO: FIXME: Shouldn't one of these use g_hCapsBitmapLat ??
case A2TYPE_PRAVETS8A : DrawBitmapRect ( dc , x + 31 , y + 17 , & rCapsLed , g_hCapsBitmapP8 [ bCaps ! = 0 ] ) ; break ;
2010-12-18 21:00:52 +00:00
}
# if HD_LED
// 1.19.0.0 Hard Disk Status/Indicator Light
2010-12-20 23:46:11 +00:00
DrawBitmapRect ( dc , x + 12 , y + 18 , & rDiskLed , g_hDiskWindowedLED [ eHardDriveStatus ] ) ;
2010-12-18 21:00:52 +00:00
# endif
2006-11-28 16:34:21 +00:00
}
2006-06-26 16:59:48 +00:00
}
if ( drawflags & DRAW_TITLE )
{
2011-02-20 07:32:09 +00:00
GetAppleWindowTitle ( ) ; // SetWindowText() // WindowTitle
SendMessage ( g_hFrameWindow , WM_SETTEXT , 0 , ( LPARAM ) g_pAppTitle ) ;
2006-06-26 16:59:48 +00:00
}
if ( drawflags & DRAW_BUTTON_DRIVES )
{
DrawButton ( dc , BTN_DRIVE1 ) ;
DrawButton ( dc , BTN_DRIVE2 ) ;
}
}
if ( ! passdc )
ReleaseDC ( g_hFrameWindow , dc ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2008-06-08 12:31:50 +00:00
static void EraseButton ( int number ) {
2006-02-25 20:50:29 +00:00
RECT rect ;
rect . left = buttonx ;
rect . right = rect . left + BUTTONCX ;
rect . top = buttony + number * BUTTONCY ;
rect . bottom = rect . top + BUTTONCY ;
2009-02-21 04:42:35 +00:00
// TODO: DD Full-Screen Palette
// if( !g_bIsFullScreen )
InvalidateRect ( g_hFrameWindow , & rect , 1 ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2008-06-08 12:31:50 +00:00
2006-06-26 16:59:48 +00:00
LRESULT CALLBACK FrameWndProc (
HWND window ,
UINT message ,
WPARAM wparam ,
LPARAM lparam )
{
switch ( message )
{
2008-06-08 12:31:50 +00:00
case WM_ACTIVATE : // Sent when window is activated/deactivated. wParam indicates WA_ACTIVE, WA_INACTIVE, etc
// Eg. Deactivate when Config dialog is active, AppleWin app loses focus, etc
2006-02-25 20:50:29 +00:00
JoyReset ( ) ;
SetUsingCursor ( 0 ) ;
2008-06-08 12:31:50 +00:00
RevealCursor ( ) ;
2006-02-25 20:50:29 +00:00
break ;
2008-06-08 12:31:50 +00:00
case WM_ACTIVATEAPP : // Sent when different app's window is activated/deactivated.
// Eg. Deactivate when AppleWin app loses focus
g_bAppActive = ( wparam ? TRUE : FALSE ) ;
2006-02-25 20:50:29 +00:00
break ;
case WM_CLOSE :
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_CLOSE \n " ) ;
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen )
2006-02-25 20:50:29 +00:00
SetNormalMode ( ) ;
if ( ! IsIconic ( window ) )
GetWindowRect ( window , & framerect ) ;
2010-01-17 18:43:06 +00:00
RegSaveValue ( TEXT ( REG_PREFS ) , TEXT ( REGVALUE_PREF_WINDOW_X_POS ) , 1 , framerect . left ) ;
RegSaveValue ( TEXT ( REG_PREFS ) , TEXT ( REGVALUE_PREF_WINDOW_Y_POS ) , 1 , framerect . top ) ;
2006-02-25 20:50:29 +00:00
FrameReleaseDC ( ) ;
SetUsingCursor ( 0 ) ;
if ( helpquit ) {
helpquit = 0 ;
HtmlHelp ( NULL , NULL , HH_CLOSE_ALL , 0 ) ;
}
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_CLOSE (done) \n " ) ;
2006-02-25 20:50:29 +00:00
break ;
2006-06-26 16:59:48 +00:00
case WM_CHAR :
if ( ( g_nAppMode = = MODE_RUNNING ) | | ( g_nAppMode = = MODE_LOGO ) | |
( ( g_nAppMode = = MODE_STEPPING ) & & ( wparam ! = TEXT ( ' \x1B ' ) ) ) )
{
2009-01-06 22:02:31 +00:00
if ( ! g_bDebuggerEatKey )
{
KeybQueueKeypress ( ( int ) wparam , ASCII ) ;
} else {
g_bDebuggerEatKey = false ;
}
2006-06-26 16:59:48 +00:00
}
else
if ( ( g_nAppMode = = MODE_DEBUG ) | | ( g_nAppMode = = MODE_STEPPING ) )
{
DebuggerInputConsoleChar ( ( TCHAR ) wparam ) ;
}
break ;
2006-02-25 20:50:29 +00:00
case WM_CREATE :
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_CREATE \n " ) ;
2013-03-28 22:28:42 +00:00
g_hFrameWindow = window ; // NB. g_hFrameWindow by CreateWindow()
2013-03-23 13:34:01 +00:00
2006-02-25 20:50:29 +00:00
CreateGdiObjects ( ) ;
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_CREATE: CreateGdiObjects() \n " ) ;
2006-02-25 20:50:29 +00:00
DSInit ( ) ;
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_CREATE: DSInit() \n " ) ;
2013-04-21 21:31:12 +00:00
DIMouse : : DirectInputInit ( window ) ;
LogFileOutput ( " WM_CREATE: DIMouse::DirectInputInit() \n " ) ;
2013-03-23 13:34:01 +00:00
MB_Initialize ( ) ;
LogFileOutput ( " WM_CREATE: MB_Initialize() \n " ) ;
SpkrInitialize ( ) ;
LogFileOutput ( " WM_CREATE: SpkrInitialize() \n " ) ;
DragAcceptFiles ( window , 1 ) ;
LogFileOutput ( " WM_CREATE: DragAcceptFiles() \n " ) ;
LogFileOutput ( " WM_CREATE (done) \n " ) ;
break ;
2006-02-25 20:50:29 +00:00
case WM_DDE_INITIATE : {
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_DDE_INITIATE \n " ) ;
2006-02-25 20:50:29 +00:00
ATOM application = GlobalAddAtom ( TEXT ( " applewin " ) ) ;
ATOM topic = GlobalAddAtom ( TEXT ( " system " ) ) ;
if ( LOWORD ( lparam ) = = application & & HIWORD ( lparam ) = = topic )
SendMessage ( ( HWND ) wparam , WM_DDE_ACK , ( WPARAM ) window , MAKELPARAM ( application , topic ) ) ;
GlobalDeleteAtom ( application ) ;
GlobalDeleteAtom ( topic ) ;
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_DDE_INITIATE (done) \n " ) ;
2006-02-25 20:50:29 +00:00
break ;
}
case WM_DDE_EXECUTE : {
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_DDE_EXECUTE \n " ) ;
2006-02-25 20:50:29 +00:00
LPTSTR filename = ( LPTSTR ) GlobalLock ( ( HGLOBAL ) lparam ) ;
2013-12-06 21:10:41 +00:00
//MessageBox( g_hFrameWindow, filename, "DDE Exec", MB_OK );
2010-01-03 18:43:08 +00:00
ImageError_e Error = DiskInsert ( DRIVE_1 , filename , IMAGE_USE_FILES_WRITE_PROTECT_STATUS , IMAGE_DONT_CREATE ) ;
if ( Error = = eIMAGE_ERROR_NONE )
{
2009-02-16 19:11:33 +00:00
if ( ! g_bIsFullScreen )
2006-02-25 20:50:29 +00:00
DrawButton ( ( HDC ) 0 , BTN_DRIVE1 ) ;
2010-01-17 18:43:06 +00:00
PostMessage ( window , WM_USER_BOOT , 0 , 0 ) ;
2006-02-25 20:50:29 +00:00
}
else
2009-01-06 22:02:31 +00:00
{
2010-01-03 18:43:08 +00:00
DiskNotifyInvalidImage ( DRIVE_1 , filename , Error ) ;
2009-01-06 22:02:31 +00:00
}
2006-02-25 20:50:29 +00:00
GlobalUnlock ( ( HGLOBAL ) lparam ) ;
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_DDE_EXECUTE (done) \n " ) ;
2006-02-25 20:50:29 +00:00
break ;
}
case WM_DESTROY :
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_DESTROY \n " ) ;
2006-02-25 20:50:29 +00:00
DragAcceptFiles ( window , 0 ) ;
Snapshot_Shutdown ( ) ;
DebugDestroy ( ) ;
if ( ! restart ) {
DiskDestroy ( ) ;
ImageDestroy ( ) ;
HD_Cleanup ( ) ;
}
2007-03-23 22:26:35 +00:00
PrintDestroy ( ) ;
2007-05-28 11:16:42 +00:00
sg_SSC . CommDestroy ( ) ;
2006-02-25 20:50:29 +00:00
CpuDestroy ( ) ;
MemDestroy ( ) ;
SpkrDestroy ( ) ;
VideoDestroy ( ) ;
MB_Destroy ( ) ;
DeleteGdiObjects ( ) ;
2013-03-28 22:28:42 +00:00
DIMouse : : DirectInputUninit ( window ) ; // NB. do before window is destroyed
2007-03-27 20:46:14 +00:00
PostQuitMessage ( 0 ) ; // Post WM_QUIT message to the thread's message queue
2013-03-23 13:34:01 +00:00
LogFileOutput ( " WM_DESTROY (done) \n " ) ;
2006-02-25 20:50:29 +00:00
break ;
case WM_DISPLAYCHANGE :
VideoReinitialize ( ) ;
break ;
case WM_DROPFILES : {
TCHAR filename [ MAX_PATH ] ;
DragQueryFile ( ( HDROP ) wparam , 0 , filename , sizeof ( filename ) ) ;
POINT point ;
DragQueryPoint ( ( HDROP ) wparam , & point ) ;
RECT rect ;
rect . left = buttonx ;
rect . right = rect . left + BUTTONCX + 1 ;
rect . top = buttony + BTN_DRIVE2 * BUTTONCY + 1 ;
rect . bottom = rect . top + BUTTONCY ;
2010-01-03 18:43:08 +00:00
const int iDrive = PtInRect ( & rect , point ) ? DRIVE_2 : DRIVE_1 ;
ImageError_e Error = DiskInsert ( iDrive , filename , IMAGE_USE_FILES_WRITE_PROTECT_STATUS , IMAGE_DONT_CREATE ) ;
if ( Error = = eIMAGE_ERROR_NONE )
{
2009-02-16 19:11:33 +00:00
if ( ! g_bIsFullScreen )
2006-02-25 20:50:29 +00:00
DrawButton ( ( HDC ) 0 , PtInRect ( & rect , point ) ? BTN_DRIVE2 : BTN_DRIVE1 ) ;
rect . top = buttony + BTN_DRIVE1 * BUTTONCY + 1 ;
2010-01-03 18:43:08 +00:00
if ( ! PtInRect ( & rect , point ) )
{
2006-02-25 20:50:29 +00:00
SetForegroundWindow ( window ) ;
ProcessButtonClick ( BTN_RUN ) ;
}
}
else
2010-01-03 18:43:08 +00:00
{
DiskNotifyInvalidImage ( iDrive , filename , Error ) ;
}
2006-02-25 20:50:29 +00:00
DragFinish ( ( HDROP ) wparam ) ;
break ;
}
2009-01-06 22:02:31 +00:00
// @see: http://answers.google.com/answers/threadview?id=133059
// Win32 doesn't pass the PrintScreen key via WM_CHAR
// else if (wparam == VK_SNAPSHOT)
// Solution: 2 choices:
// 1) register hotkey, or
// 2) Use low level Keyboard hooks
// We use the 1st one since it is compatible with Win95
case WM_HOTKEY :
// wparam = user id
// lparam = modifiers: shift, ctrl, alt, win
if ( wparam = = VK_SNAPSHOT_560 )
{
# if _DEBUG
2013-12-06 21:10:41 +00:00
// MessageBox( g_hFrameWindow, "Double 580x384 size!", "PrintScreen", MB_OK );
2009-01-06 22:02:31 +00:00
# endif
Video_TakeScreenShot ( SCREENSHOT_560x384 ) ;
}
else
if ( wparam = = VK_SNAPSHOT_280 )
{
if ( lparam & MOD_SHIFT )
{
# if _DEBUG
2013-12-06 21:10:41 +00:00
// MessageBox( g_hFrameWindow, "Normal 280x192 size!", "PrintScreen", MB_OK );
2009-01-06 22:02:31 +00:00
# endif
}
Video_TakeScreenShot ( SCREENSHOT_280x192 ) ;
}
break ;
2006-06-26 16:59:48 +00:00
case WM_KEYDOWN :
KeybUpdateCtrlShiftStatus ( ) ;
2009-02-14 03:36:15 +00:00
2006-06-26 16:59:48 +00:00
if ( ( wparam > = VK_F1 ) & & ( wparam < = VK_F8 ) & & ( buttondown = = - 1 ) )
2006-02-25 20:50:29 +00:00
{
2006-06-26 16:59:48 +00:00
SetUsingCursor ( 0 ) ;
buttondown = wparam - VK_F1 ;
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen & & ( buttonover ! = - 1 ) ) {
2006-06-26 16:59:48 +00:00
if ( buttonover ! = buttondown )
EraseButton ( buttonover ) ;
buttonover = - 1 ;
}
DrawButton ( ( HDC ) 0 , buttondown ) ;
2006-02-25 20:50:29 +00:00
}
2006-06-26 16:59:48 +00:00
else if ( wparam = = VK_F9 )
2008-06-20 23:47:25 +00:00
{
2009-02-14 03:36:15 +00:00
//bool bCtrlDown = (GetKeyState(VK_CONTROL) < 0) ? true : false;
//bool bShiftDown = (GetKeyState(VK_SHIFT ) < 0) ? true : false;
2009-02-17 01:36:34 +00:00
// F9 Next Video Mode
// ^F9 Next Char Set
// #F9 Prev Video Mode
// ^#F9 Toggle 50% Scan Lines
// @F9 -Can't use Alt-F9 as Alt is Open-Apple = Joystick Button #1
2009-02-14 03:36:15 +00:00
if ( g_bCtrlKey & & ! g_bShiftKey ) //CTRL+F9
2008-05-17 23:20:33 +00:00
{
2009-01-06 22:02:31 +00:00
g_nCharsetType + + ; // Cycle through available charsets (Ctrl + F9)
if ( g_nCharsetType > = 3 )
2009-02-14 03:36:15 +00:00
{
2008-06-20 23:47:25 +00:00
g_nCharsetType = 0 ;
2009-02-14 03:36:15 +00:00
}
2008-05-17 23:20:33 +00:00
}
2008-06-20 23:47:25 +00:00
else // Cycle through available video modes
2009-02-17 01:36:34 +00:00
if ( g_bCtrlKey & & g_bShiftKey ) // ALT+F9
2008-05-17 23:20:33 +00:00
{
2009-02-14 03:36:15 +00:00
g_uHalfScanLines = ! g_uHalfScanLines ;
}
else
2009-02-17 01:36:34 +00:00
if ( ! g_bShiftKey ) // Drop Down Combo Box is in correct order
2009-02-14 03:36:15 +00:00
{
2009-02-16 19:11:33 +00:00
g_eVideoType + + ;
2009-02-18 16:05:01 +00:00
if ( g_eVideoType > = NUM_VIDEO_MODES )
2009-02-16 19:11:33 +00:00
g_eVideoType = 0 ;
2009-02-14 03:36:15 +00:00
}
else // Forwards
{
2009-02-16 19:11:33 +00:00
if ( g_eVideoType < = 0 )
2009-02-18 16:05:01 +00:00
g_eVideoType = NUM_VIDEO_MODES ;
2009-02-16 19:11:33 +00:00
g_eVideoType - - ;
2008-05-17 23:20:33 +00:00
}
2009-02-18 16:05:01 +00:00
// TODO: Clean up code:FrameRefreshStatus(DRAW_TITLE) DrawStatusArea((HDC)0,DRAW_TITLE)
DrawStatusArea ( ( HDC ) 0 , DRAW_TITLE ) ;
2006-06-26 16:59:48 +00:00
VideoReinitialize ( ) ;
2009-02-18 16:05:01 +00:00
if ( ( g_nAppMode ! = MODE_LOGO ) | | ( ( g_nAppMode = = MODE_DEBUG ) & & ( g_bDebuggerViewingAppleOutput ) ) )
2006-06-26 16:59:48 +00:00
{
VideoRedrawScreen ( ) ;
2009-02-18 16:05:01 +00:00
g_bDebuggerViewingAppleOutput = true ;
2006-06-26 16:59:48 +00:00
}
2009-02-14 03:36:15 +00:00
Config_Save_Video ( ) ;
2006-02-25 20:50:29 +00:00
}
2008-06-20 23:47:25 +00:00
2006-06-26 16:59:48 +00:00
else if ( ( wparam = = VK_F11 ) & & ( GetKeyState ( VK_CONTROL ) > = 0 ) ) // Save state (F11)
2006-02-25 20:50:29 +00:00
{
2006-06-26 16:59:48 +00:00
SoundCore_SetFade ( FADE_OUT ) ;
2012-03-27 21:20:36 +00:00
if ( sg_PropertySheet . SaveStateSelectImage ( window , true ) )
2006-06-26 16:59:48 +00:00
{
Snapshot_SaveState ( ) ;
}
SoundCore_SetFade ( FADE_IN ) ;
2006-02-25 20:50:29 +00:00
}
2006-06-26 16:59:48 +00:00
else if ( wparam = = VK_F12 ) // Load state (F12 or Ctrl+F12)
2006-02-25 20:50:29 +00:00
{
2006-06-26 16:59:48 +00:00
SoundCore_SetFade ( FADE_OUT ) ;
2012-03-27 21:20:36 +00:00
if ( sg_PropertySheet . SaveStateSelectImage ( window , false ) )
2006-06-26 16:59:48 +00:00
{
Snapshot_LoadState ( ) ;
}
SoundCore_SetFade ( FADE_IN ) ;
}
else if ( wparam = = VK_CAPITAL )
2007-08-06 21:38:35 +00:00
{
2006-06-26 16:59:48 +00:00
KeybToggleCapsLock ( ) ;
2007-08-06 21:38:35 +00:00
}
2006-06-26 16:59:48 +00:00
else if ( wparam = = VK_PAUSE )
{
SetUsingCursor ( 0 ) ;
switch ( g_nAppMode )
{
case MODE_RUNNING :
g_nAppMode = MODE_PAUSED ;
SoundCore_SetFade ( FADE_OUT ) ;
2008-06-08 12:31:50 +00:00
RevealCursor ( ) ;
2006-06-26 16:59:48 +00:00
break ;
case MODE_PAUSED :
g_nAppMode = MODE_RUNNING ;
SoundCore_SetFade ( FADE_IN ) ;
2008-05-18 18:23:25 +00:00
// Don't call FrameShowCursor(FALSE) else ClipCursor() won't be called
2006-06-26 16:59:48 +00:00
break ;
case MODE_STEPPING :
DebuggerInputConsoleChar ( DEBUG_EXIT_KEY ) ;
break ;
}
DrawStatusArea ( ( HDC ) 0 , DRAW_TITLE ) ;
if ( ( g_nAppMode ! = MODE_LOGO ) & & ( g_nAppMode ! = MODE_DEBUG ) )
VideoRedrawScreen ( ) ;
g_bResetTiming = true ;
}
2012-03-27 21:20:36 +00:00
else if ( ( wparam = = VK_SCROLL ) & & sg_PropertySheet . GetScrollLockToggle ( ) )
2007-08-06 21:38:35 +00:00
{
g_bScrollLock_FullSpeed = ! g_bScrollLock_FullSpeed ;
}
2006-06-26 16:59:48 +00:00
else if ( ( g_nAppMode = = MODE_RUNNING ) | | ( g_nAppMode = = MODE_LOGO ) | | ( g_nAppMode = = MODE_STEPPING ) )
{
// Note about Alt Gr (Right-Alt):
// . WM_KEYDOWN[Left-Control], then:
// . WM_KEYDOWN[Right-Alt]
BOOL extended = ( ( lparam & 0x01000000 ) ! = 0 ) ;
2013-05-20 20:51:45 +00:00
BOOL down = 1 ;
BOOL autorep = ( ( lparam & 0x40000000 ) ! = 0 ) ;
if ( ( ! JoyProcessKey ( ( int ) wparam , extended , down , autorep ) ) & & ( g_nAppMode ! = MODE_LOGO ) )
2006-06-26 16:59:48 +00:00
KeybQueueKeypress ( ( int ) wparam , NOT_ASCII ) ;
}
else if ( g_nAppMode = = MODE_DEBUG )
2009-02-21 04:42:35 +00:00
{
2011-02-21 23:54:09 +00:00
DebuggerProcessKey ( wparam ) ; // Debugger already active, re-direct key to debugger
2009-02-21 04:42:35 +00:00
}
2006-02-26 06:44:22 +00:00
2006-06-26 16:59:48 +00:00
if ( wparam = = VK_F10 )
{
2008-06-20 23:47:25 +00:00
if ( ( g_Apple2Type = = A2TYPE_PRAVETS8A ) & & ( GetKeyState ( VK_CONTROL ) > = 0 ) )
{
KeybToggleP8ACapsLock ( ) ; //Toggles P8 Capslock
}
else
{
SetUsingCursor ( 0 ) ;
return 0 ; // TC: Why return early?
}
2006-06-26 16:59:48 +00:00
}
break ;
2006-02-25 20:50:29 +00:00
case WM_KEYUP :
2007-08-06 21:38:35 +00:00
if ( ( wparam > = VK_F1 ) & & ( wparam < = VK_F8 ) & & ( buttondown = = ( int ) wparam - VK_F1 ) )
{
buttondown = - 1 ;
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen )
2007-08-06 21:38:35 +00:00
EraseButton ( wparam - VK_F1 ) ;
else
DrawButton ( ( HDC ) 0 , wparam - VK_F1 ) ;
2013-12-06 21:10:41 +00:00
ProcessButtonClick ( wparam - VK_F1 , true ) ;
2007-08-06 21:38:35 +00:00
}
else
{
2013-05-20 20:51:45 +00:00
BOOL extended = ( ( lparam & 0x01000000 ) ! = 0 ) ;
BOOL down = 0 ;
BOOL autorep = 0 ;
JoyProcessKey ( ( int ) wparam , extended , down , autorep ) ;
2007-08-06 21:38:35 +00:00
}
break ;
2006-02-25 20:50:29 +00:00
case WM_LBUTTONDOWN :
2007-08-06 21:38:35 +00:00
if ( buttondown = = - 1 )
{
2006-02-25 20:50:29 +00:00
int x = LOWORD ( lparam ) ;
int y = HIWORD ( lparam ) ;
if ( ( x > = buttonx ) & &
( y > = buttony ) & &
2007-08-06 21:38:35 +00:00
( y < = buttony + BUTTONS * BUTTONCY ) )
{
2006-02-25 20:50:29 +00:00
buttonactive = buttondown = ( y - buttony - 1 ) / BUTTONCY ;
DrawButton ( ( HDC ) 0 , buttonactive ) ;
SetCapture ( window ) ;
}
2008-06-08 12:31:50 +00:00
else if ( g_bUsingCursor & & ! sg_Mouse . IsActive ( ) )
2007-08-06 21:38:35 +00:00
{
2006-02-25 20:50:29 +00:00
if ( wparam & ( MK_CONTROL | MK_SHIFT ) )
2007-08-06 21:38:35 +00:00
{
2006-02-25 20:50:29 +00:00
SetUsingCursor ( 0 ) ;
2007-08-06 21:38:35 +00:00
}
2006-02-25 20:50:29 +00:00
else
2007-08-06 21:38:35 +00:00
{
2007-12-02 14:55:32 +00:00
JoySetButton ( BUTTON0 , BUTTON_DOWN ) ;
2007-08-06 21:38:35 +00:00
}
}
2007-12-02 14:55:32 +00:00
else if ( ( ( x < buttonx ) & & JoyUsingMouse ( ) & & ( ( g_nAppMode = = MODE_RUNNING ) | | ( g_nAppMode = = MODE_STEPPING ) ) ) )
2007-08-06 21:38:35 +00:00
{
2006-02-25 20:50:29 +00:00
SetUsingCursor ( 1 ) ;
2007-08-06 21:38:35 +00:00
}
2008-05-17 23:20:33 +00:00
else if ( sg_Mouse . IsActive ( ) )
2007-12-02 14:55:32 +00:00
{
2008-05-17 23:20:33 +00:00
if ( wparam & ( MK_CONTROL | MK_SHIFT ) )
{
2008-06-08 12:31:50 +00:00
RevealCursor ( ) ;
2008-05-17 23:20:33 +00:00
}
2008-06-20 23:47:25 +00:00
else if ( g_nAppMode = = MODE_RUNNING )
2008-05-17 23:20:33 +00:00
{
if ( ! sg_Mouse . IsEnabled ( ) )
{
sg_Mouse . SetEnabled ( true ) ;
2008-06-08 12:31:50 +00:00
POINT Point ;
GetCursorPos ( & Point ) ;
ScreenToClient ( g_hFrameWindow , & Point ) ;
const int iOutOfBoundsX = 0 , iOutOfBoundsY = 0 ;
UpdateMouseInAppleViewport ( iOutOfBoundsX , iOutOfBoundsY , Point . x , Point . y ) ;
2008-05-18 18:23:25 +00:00
// Don't call SetButton() when 1st enabled (else get the confusing action of both enabling & an Apple mouse click)
2008-05-17 23:20:33 +00:00
}
else
{
sg_Mouse . SetButton ( BUTTON0 , BUTTON_DOWN ) ;
}
}
2007-12-02 14:55:32 +00:00
}
2006-07-05 21:23:13 +00:00
DebuggerMouseClick ( x , y ) ;
2006-02-25 20:50:29 +00:00
}
RelayEvent ( WM_LBUTTONDOWN , wparam , lparam ) ;
break ;
case WM_LBUTTONUP :
if ( buttonactive ! = - 1 ) {
ReleaseCapture ( ) ;
if ( buttondown = = buttonactive ) {
buttondown = - 1 ;
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen )
2006-02-25 20:50:29 +00:00
EraseButton ( buttonactive ) ;
else
DrawButton ( ( HDC ) 0 , buttonactive ) ;
2013-12-06 21:10:41 +00:00
ProcessButtonClick ( buttonactive , true ) ;
2006-02-25 20:50:29 +00:00
}
buttonactive = - 1 ;
}
2008-06-08 12:31:50 +00:00
else if ( g_bUsingCursor & & ! sg_Mouse . IsActive ( ) )
2007-08-06 21:38:35 +00:00
{
2007-12-02 14:55:32 +00:00
JoySetButton ( BUTTON0 , BUTTON_UP ) ;
}
2008-05-17 23:20:33 +00:00
else if ( sg_Mouse . IsActive ( ) )
2007-12-02 14:55:32 +00:00
{
sg_Mouse . SetButton ( BUTTON0 , BUTTON_UP ) ;
2007-08-06 21:38:35 +00:00
}
2006-02-25 20:50:29 +00:00
RelayEvent ( WM_LBUTTONUP , wparam , lparam ) ;
break ;
case WM_MOUSEMOVE : {
2013-04-21 21:31:12 +00:00
// MSDN: "WM_MOUSEMOVE message" : Do not use the LOWORD or HIWORD macros to extract the x- and y- coordinates...
int x = GET_X_LPARAM ( lparam ) ;
int y = GET_Y_LPARAM ( lparam ) ;
2006-02-25 20:50:29 +00:00
int newover = ( ( ( x > = buttonx ) & &
( x < = buttonx + BUTTONCX ) & &
( y > = buttony ) & &
( y < = buttony + BUTTONS * BUTTONCY ) )
? ( y - buttony - 1 ) / BUTTONCY : - 1 ) ;
if ( buttonactive ! = - 1 ) {
int newdown = ( newover = = buttonactive ) ? buttonactive : - 1 ;
if ( newdown ! = buttondown ) {
buttondown = newdown ;
DrawButton ( ( HDC ) 0 , buttonactive ) ;
}
}
2009-02-16 19:11:33 +00:00
else if ( g_bIsFullScreen & & ( newover ! = buttonover ) & & ( buttondown = = - 1 ) ) {
2006-02-25 20:50:29 +00:00
if ( buttonover ! = - 1 )
EraseButton ( buttonover ) ;
buttonover = newover ;
if ( buttonover ! = - 1 )
DrawButton ( ( HDC ) 0 , buttonover ) ;
}
2008-06-08 12:31:50 +00:00
else if ( g_bUsingCursor & & ! sg_Mouse . IsActive ( ) )
2007-08-06 21:38:35 +00:00
{
2006-02-25 20:50:29 +00:00
DrawCrosshairs ( x , y ) ;
2012-12-29 14:53:52 +00:00
JoySetPosition ( x - viewportx - 2 , g_nViewportCX - 4 , y - viewporty - 2 , g_nViewportCY - 4 ) ;
2006-02-25 20:50:29 +00:00
}
2008-05-17 23:20:33 +00:00
else if ( sg_Mouse . IsActiveAndEnabled ( ) & & ( g_nAppMode = = MODE_RUNNING ) )
2007-12-02 14:55:32 +00:00
{
2008-05-17 23:20:33 +00:00
if ( g_bLastCursorInAppleViewport )
break ;
2008-05-18 18:23:25 +00:00
// Outside Apple viewport
2012-12-29 14:53:52 +00:00
const int iAppleScreenMaxX = g_nViewportCX - 1 ;
const int iAppleScreenMaxY = g_nViewportCY - 1 ;
2008-05-17 23:20:33 +00:00
const int iBoundMinX = viewportx ;
const int iBoundMaxX = iAppleScreenMaxX ;
const int iBoundMinY = viewporty ;
const int iBoundMaxY = iAppleScreenMaxY ;
int iOutOfBoundsX = 0 , iOutOfBoundsY = 0 ;
if ( x < iBoundMinX ) iOutOfBoundsX = - 1 ;
if ( x > iBoundMaxX ) iOutOfBoundsX = 1 ;
if ( y < iBoundMinY ) iOutOfBoundsY = - 1 ;
if ( y > iBoundMaxY ) iOutOfBoundsY = 1 ;
UpdateMouseInAppleViewport ( iOutOfBoundsX , iOutOfBoundsY , x , y ) ;
2007-12-02 14:55:32 +00:00
}
2008-05-17 23:20:33 +00:00
2006-02-25 20:50:29 +00:00
RelayEvent ( WM_MOUSEMOVE , wparam , lparam ) ;
break ;
}
2008-05-17 23:20:33 +00:00
case WM_TIMER :
if ( wparam = = IDEVENT_TIMER_MOUSE )
{
2008-06-08 12:31:50 +00:00
// NB. Need to check /g_bAppActive/ since WM_TIMER events still occur after AppleWin app has lost focus
if ( g_bAppActive & & sg_Mouse . IsActiveAndEnabled ( ) & & ( g_nAppMode = = MODE_RUNNING ) )
2008-05-17 23:20:33 +00:00
{
2008-06-08 12:31:50 +00:00
if ( ! g_bLastCursorInAppleViewport )
2008-05-17 23:20:33 +00:00
break ;
2008-05-18 18:23:25 +00:00
// Inside Apple viewport
2008-05-17 23:20:33 +00:00
int iOutOfBoundsX = 0 , iOutOfBoundsY = 0 ;
long dX , dY ;
if ( DIMouse : : ReadImmediateData ( & dX , & dY ) = = S_OK )
sg_Mouse . SetPositionRel ( dX , dY , & iOutOfBoundsX , & iOutOfBoundsY ) ;
UpdateMouseInAppleViewport ( iOutOfBoundsX , iOutOfBoundsY ) ;
}
}
break ;
2006-06-26 16:59:48 +00:00
// VSCROLL
// SB_LINEUP // Line Scrolling
// SB_PAGEUP // Page Scrolling
case WM_MOUSEWHEEL :
if ( g_nAppMode = = MODE_DEBUG )
{
KeybUpdateCtrlShiftStatus ( ) ;
int zDelta = ( short ) HIWORD ( wparam ) ;
if ( zDelta > 0 )
{
DebuggerProcessKey ( VK_UP ) ;
}
else
{
DebuggerProcessKey ( VK_DOWN ) ;
}
}
break ;
2010-01-03 18:43:08 +00:00
case WM_NOTIFY : // Tooltips for Drive buttons
2006-02-25 20:50:29 +00:00
if ( ( ( LPNMTTDISPINFO ) lparam ) - > hdr . hwndFrom = = tooltipwindow & &
( ( LPNMTTDISPINFO ) lparam ) - > hdr . code = = TTN_GETDISPINFO )
( ( LPNMTTDISPINFO ) lparam ) - > lpszText =
2010-01-03 18:43:08 +00:00
( LPTSTR ) DiskGetFullDiskFilename ( ( ( LPNMTTDISPINFO ) lparam ) - > hdr . idFrom ) ;
2006-02-25 20:50:29 +00:00
break ;
case WM_PAINT :
if ( GetUpdateRect ( window , NULL , 0 ) ) {
2008-07-14 16:02:44 +00:00
g_bPaintingWindow = 1 ;
2006-02-25 20:50:29 +00:00
DrawFrameWindow ( ) ;
2008-07-14 16:02:44 +00:00
g_bPaintingWindow = 0 ;
2006-02-25 20:50:29 +00:00
}
break ;
case WM_PALETTECHANGED :
2009-02-21 04:42:35 +00:00
// To avoid creating an infinite loop, a window that receives this
// message must not realize its palette, unless it determines that
// wParam does not contain its own window handle.
if ( ( HWND ) wparam = = window )
{
# if DEBUG_DD_PALETTE
if ( g_bIsFullScreen )
OutputDebugString ( " WM_PALETTECHANGED: Full Screen \n " ) ;
else
OutputDebugString ( " WM_PALETTECHANGED: Windowed \n " ) ;
# endif
break ;
}
// else fall through
2006-02-25 20:50:29 +00:00
case WM_QUERYNEWPALETTE :
2009-02-21 04:42:35 +00:00
# if DEBUG_DD_PALETTE
if ( g_bIsFullScreen )
OutputDebugString ( " WM_QUERYNEWPALETTE: Full Screen \n " ) ;
else
OutputDebugString ( " WM_QUERYNEWPALETTE: Windowed \n " ) ;
# endif
// TODO: DD Full-Screen Palette
2006-02-25 20:50:29 +00:00
DrawFrameWindow ( ) ;
break ;
case WM_RBUTTONDOWN :
case WM_RBUTTONUP :
2006-02-26 02:05:57 +00:00
// Right Click on Drive Icon -- eject Disk
if ( ( buttonover = = - 1 ) & & ( message = = WM_RBUTTONUP ) ) // HACK: BUTTON_NONE
{
int x = LOWORD ( lparam ) ;
int y = HIWORD ( lparam ) ;
if ( ( x > = buttonx ) & &
( y > = buttony ) & &
( y < = buttony + BUTTONS * BUTTONCY ) )
{
int iButton = ( y - buttony - 1 ) / BUTTONCY ;
int iDrive = iButton - BTN_DRIVE1 ;
if ( ( iButton = = BTN_DRIVE1 ) | | ( iButton = = BTN_DRIVE2 ) )
{
2006-02-28 18:40:59 +00:00
/*
2006-02-26 02:05:57 +00:00
if ( KeybGetShiftStatus ( ) )
DiskProtect ( iDrive , true ) ;
else
if ( KeybGetCtrlStatus ( ) )
DiskProtect ( iDrive , false ) ;
else
2006-02-28 18:40:59 +00:00
*/
{
2010-01-03 18:43:08 +00:00
RECT rect ; // client area
POINT pt ; // location of mouse click
// Get the bounding rectangle of the client area.
GetClientRect ( window , ( LPRECT ) & rect ) ;
// Get the client coordinates for the mouse click.
pt . x = GET_X_LPARAM ( lparam ) ;
pt . y = GET_Y_LPARAM ( lparam ) ;
// If the mouse click took place inside the client
// area, execute the application-defined function
// that displays the shortcut menu.
if ( PtInRect ( ( LPRECT ) & rect , pt ) )
ProcessDiskPopupMenu ( window , pt , iDrive ) ;
2006-02-28 18:40:59 +00:00
}
2006-02-26 02:05:57 +00:00
FrameRefreshStatus ( DRAW_LEDS | DRAW_BUTTON_DRIVES ) ;
DrawButton ( ( HDC ) 0 , iButton ) ;
}
}
}
2008-06-08 12:31:50 +00:00
if ( g_bUsingCursor )
2006-02-26 02:05:57 +00:00
{
2008-05-17 23:20:33 +00:00
if ( sg_Mouse . IsActive ( ) )
2007-08-06 21:38:35 +00:00
sg_Mouse . SetButton ( BUTTON1 , ( message = = WM_RBUTTONDOWN ) ? BUTTON_DOWN : BUTTON_UP ) ;
else
JoySetButton ( BUTTON1 , ( message = = WM_RBUTTONDOWN ) ? BUTTON_DOWN : BUTTON_UP ) ;
2006-02-26 02:05:57 +00:00
}
RelayEvent ( message , wparam , lparam ) ;
break ;
2006-02-25 20:50:29 +00:00
case WM_SYSCOLORCHANGE :
2009-02-21 04:42:35 +00:00
# if DEBUG_DD_PALETTE
if ( g_bIsFullScreen )
OutputDebugString ( " WM_SYSCOLORCHANGE: Full Screen \n " ) ;
else
OutputDebugString ( " WM_SYSCOLORCHANGE: Windowed \n " ) ;
# endif
// TODO: DD Full-Screen Palette
DeleteGdiObjects ( ) ;
CreateGdiObjects ( ) ;
break ;
2006-02-25 20:50:29 +00:00
case WM_SYSCOMMAND :
switch ( wparam & 0xFFF0 ) {
case SC_KEYMENU :
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen & & g_bAppActive )
2006-02-25 20:50:29 +00:00
return 0 ;
break ;
case SC_MINIMIZE :
GetWindowRect ( window , & framerect ) ;
break ;
}
break ;
case WM_SYSKEYDOWN :
PostMessage ( window , WM_KEYDOWN , wparam , lparam ) ;
if ( ( wparam = = VK_F10 ) | | ( wparam = = VK_MENU ) ) // VK_MENU == ALT Key
return 0 ;
break ;
case WM_SYSKEYUP :
PostMessage ( window , WM_KEYUP , wparam , lparam ) ;
break ;
case WM_USER_BENCHMARK : {
UpdateWindow ( window ) ;
ResetMachineState ( ) ;
2006-06-12 22:06:50 +00:00
g_nAppMode = MODE_LOGO ;
2006-02-25 20:50:29 +00:00
DrawStatusArea ( ( HDC ) 0 , DRAW_TITLE ) ;
HCURSOR oldcursor = SetCursor ( LoadCursor ( 0 , IDC_WAIT ) ) ;
VideoBenchmark ( ) ;
ResetMachineState ( ) ;
SetCursor ( oldcursor ) ;
break ;
}
case WM_USER_RESTART :
// . Changed Apple computer type (][+ or //e)
2012-03-20 23:17:06 +00:00
// . Changed slot configuration
2006-02-25 20:50:29 +00:00
// . Changed disk speed (normal or enhanced)
2008-05-17 23:20:33 +00:00
// . Changed Freeze F8 rom setting
2006-02-25 20:50:29 +00:00
restart = 1 ;
PostMessage ( window , WM_CLOSE , 0 , 0 ) ;
break ;
case WM_USER_SAVESTATE : // Save state
Snapshot_SaveState ( ) ;
break ;
case WM_USER_LOADSTATE : // Load state
Snapshot_LoadState ( ) ;
break ;
2009-01-26 15:24:40 +00:00
case WM_USER_TCP_SERIAL : // TCP serial events
2010-01-17 18:43:06 +00:00
{
2009-01-26 15:24:40 +00:00
WORD error = WSAGETSELECTERROR ( lparam ) ;
if ( error ! = 0 )
{
LogOutput ( " TCP Serial Winsock error 0x%X (%d) \r " , error , error ) ;
switch ( error )
{
case WSAENETRESET :
case WSAECONNABORTED :
case WSAECONNRESET :
case WSAENOTCONN :
case WSAETIMEDOUT :
sg_SSC . CommTcpSerialClose ( ) ;
break ;
default :
sg_SSC . CommTcpSerialCleanup ( ) ;
break ;
}
}
else
{
WORD wSelectEvent = WSAGETSELECTEVENT ( lparam ) ;
switch ( wSelectEvent )
{
case FD_ACCEPT :
sg_SSC . CommTcpSerialAccept ( ) ;
break ;
case FD_CLOSE :
sg_SSC . CommTcpSerialClose ( ) ;
break ;
case FD_READ :
sg_SSC . CommTcpSerialReceive ( ) ;
break ;
case FD_WRITE :
break ;
}
}
break ;
2010-01-17 18:43:06 +00:00
}
// Message posted by: WM_DDE_EXECUTE & Cmd-line boot
case WM_USER_BOOT :
{
SetForegroundWindow ( window ) ;
Sleep ( 500 ) ; // Wait for SetForegroundWindow() to take affect (400ms seems OK, so use 500ms to be sure)
SoundCore_TweakVolumes ( ) ;
ProcessButtonClick ( BTN_RUN ) ;
break ;
}
2012-12-29 14:53:52 +00:00
// Message posted by: Cmd-line boot
case WM_USER_FULLSCREEN :
{
ScreenWindowResize ( true ) ;
break ;
}
2010-01-17 18:43:06 +00:00
} // switch(message)
2006-02-25 20:50:29 +00:00
return DefWindowProc ( window , message , wparam , lparam ) ;
}
2006-02-28 18:40:59 +00:00
2006-02-25 20:50:29 +00:00
//===========================================================================
2012-12-29 14:53:52 +00:00
static void ScreenWindowResize ( const bool bCtrlKey )
{
if ( g_bIsFullScreen ) // if full screen: then switch back to normal (regardless of CTRL)
{
SetNormalMode ( ) ;
2013-01-06 13:47:52 +00:00
FrameResizeWindow ( g_nOldViewportScale ) ;
2012-12-29 14:53:52 +00:00
}
else if ( bCtrlKey ) // if normal screen && CTRL: then switch to full screen
{
g_nOldViewportScale = g_nViewportScale ;
2013-01-06 13:47:52 +00:00
FrameResizeWindow ( 1 ) ; // reset to 1x
2012-12-29 14:53:52 +00:00
SetFullScreenMode ( ) ;
2014-06-27 21:43:25 +00:00
//VideoRedrawScreen(1); // [TC-10/06/2014] Remove this once checked it's not needed by Win8
2012-12-29 14:53:52 +00:00
}
else
{
2013-01-06 13:47:52 +00:00
FrameResizeWindow ( ( g_nViewportScale = = 1 ) ? 2 : 1 ) ; // Toggle between 1x and 2x
2012-12-29 14:53:52 +00:00
REGSAVE ( TEXT ( REGVALUE_WINDOW_SCALE ) , g_nViewportScale ) ;
}
}
2013-12-06 21:10:41 +00:00
static bool ConfirmReboot ( bool bFromButtonUI )
{
if ( ! bFromButtonUI )
return true ;
int res = MessageBox ( g_hFrameWindow , " Are you sure you want to reboot? \n (All data will be lost!) " , " Reboot " , MB_ICONWARNING | MB_YESNO ) ;
return res = = IDYES ;
}
static void ProcessButtonClick ( int button , bool bFromButtonUI /*=false*/ )
2009-02-21 04:42:35 +00:00
{
SoundCore_SetFade ( FADE_OUT ) ;
2006-02-25 20:50:29 +00:00
2009-02-21 04:42:35 +00:00
# if DEBUG_DD_PALETTE
char _text [ 80 ] ;
sprintf ( _text , " Button: F%d Full Screen: %d \n " , button + 1 , g_bIsFullScreen ) ;
OutputDebugString ( _text ) ;
# endif
2006-02-25 20:50:29 +00:00
switch ( button ) {
case BTN_HELP :
{
TCHAR filename [ MAX_PATH ] ;
2006-06-25 03:46:33 +00:00
_tcscpy ( filename , g_sProgramDir ) ;
2006-02-25 20:50:29 +00:00
_tcscat ( filename , TEXT ( " APPLEWIN.CHM " ) ) ;
2006-05-14 00:44:38 +00:00
HtmlHelp ( g_hFrameWindow , filename , HH_DISPLAY_TOC , 0 ) ;
2006-02-25 20:50:29 +00:00
helpquit = 1 ;
}
break ;
case BTN_RUN :
2009-04-16 21:29:28 +00:00
KeybUpdateCtrlShiftStatus ( ) ;
2009-02-17 02:13:18 +00:00
if ( g_bCtrlKey )
{
CtrlReset ( ) ;
return ;
}
2009-02-17 01:36:34 +00:00
if ( g_nAppMode = = MODE_LOGO )
{
DiskBoot ( ) ;
g_nAppMode = MODE_RUNNING ;
}
2013-12-06 21:10:41 +00:00
else if ( g_nAppMode = = MODE_RUNNING )
2009-02-17 01:36:34 +00:00
{
2013-12-06 21:10:41 +00:00
if ( ConfirmReboot ( bFromButtonUI ) )
{
ResetMachineState ( ) ;
g_nAppMode = MODE_RUNNING ;
}
2009-02-17 01:36:34 +00:00
}
2013-12-06 21:10:41 +00:00
else if ( ( g_nAppMode = = MODE_DEBUG ) | | ( g_nAppMode = = MODE_STEPPING ) ) // exit debugger
2009-02-17 01:36:34 +00:00
{
2013-12-06 21:10:41 +00:00
if ( ConfirmReboot ( bFromButtonUI ) )
{
// If any breakpoints active and we are not running at normal speed
if ( g_nBreakpoints & & ! g_bDebugNormalSpeedBreakpoints )
CmdGo ( 0 ) ; // 6502 runs at full speed, switch to MODE_STEPPING
else
DebugEnd ( ) ; // 6502 runs at normal speed, switch to MODE_RUNNING
}
2009-02-17 01:36:34 +00:00
}
2006-02-25 20:50:29 +00:00
DrawStatusArea ( ( HDC ) 0 , DRAW_TITLE ) ;
VideoRedrawScreen ( ) ;
2006-06-26 16:59:48 +00:00
g_bResetTiming = true ;
2006-02-25 20:50:29 +00:00
break ;
case BTN_DRIVE1 :
case BTN_DRIVE2 :
DiskSelect ( button - BTN_DRIVE1 ) ;
2009-02-16 19:11:33 +00:00
if ( ! g_bIsFullScreen )
2006-02-25 20:50:29 +00:00
DrawButton ( ( HDC ) 0 , button ) ;
break ;
case BTN_DRIVESWAP :
DiskDriveSwap ( ) ;
break ;
case BTN_FULLSCR :
2012-12-29 14:53:52 +00:00
KeybUpdateCtrlShiftStatus ( ) ;
ScreenWindowResize ( g_bCtrlKey ) ;
2006-02-25 20:50:29 +00:00
break ;
case BTN_DEBUG :
2013-04-26 21:55:45 +00:00
if ( g_nAppMode = = MODE_LOGO & & ! GetLoadedSaveStateFlag ( ) )
2006-06-12 22:06:50 +00:00
{
ResetMachineState ( ) ;
}
2013-04-26 21:55:45 +00:00
2011-02-21 23:54:09 +00:00
// Allow F7 to enter debugger even though emulator isn't "running"
2006-06-12 22:06:50 +00:00
if ( g_nAppMode = = MODE_STEPPING )
{
2006-02-27 03:37:56 +00:00
DebuggerInputConsoleChar ( DEBUG_EXIT_KEY ) ;
2006-06-12 22:06:50 +00:00
}
else
if ( g_nAppMode = = MODE_DEBUG )
{
2011-02-21 23:54:09 +00:00
if ( KeybGetShiftStatus ( ) )
g_bDebugNormalSpeedBreakpoints = true ; // MODE_RUNNING // Normal Speed Breakpoints: Shift-F7 exit debugger, keep breakpoints active, enter run state at NORMAL speed
else
g_bDebugNormalSpeedBreakpoints = false ; // MODE_STEPPING // Full Speed Breakpoints
g_bDebugBreakDelayCheck = true ;
ProcessButtonClick ( BTN_RUN ) ; // Exit debugger, switch to MODE_RUNNING or MODE_STEPPING
2006-06-12 22:06:50 +00:00
}
else
{
DebugBegin ( ) ;
}
2006-02-25 20:50:29 +00:00
break ;
case BTN_SETUP :
{
2012-03-27 21:20:36 +00:00
sg_PropertySheet . Init ( ) ;
2006-02-25 20:50:29 +00:00
}
break ;
}
2006-06-12 22:06:50 +00:00
if ( ( g_nAppMode ! = MODE_DEBUG ) & & ( g_nAppMode ! = MODE_PAUSED ) )
2006-02-25 20:50:29 +00:00
{
SoundCore_SetFade ( FADE_IN ) ;
}
}
2006-02-28 18:40:59 +00:00
//===========================================================================
2008-06-20 23:47:25 +00:00
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/resources/menus/usingmenus.asp
// http://www.codeproject.com/menu/MenusForBeginners.asp?df=100&forumid=67645&exp=0&select=903061
2010-01-03 18:43:08 +00:00
void ProcessDiskPopupMenu ( HWND hwnd , POINT pt , const int iDrive )
2008-06-20 23:47:25 +00:00
{
//This is the default installation path of CiderPress. It shall not be left blank, otherwise an explorer window will be open.
TCHAR PathToCiderPress [ MAX_PATH ] = " C: \\ Program Files \\ faddenSoft \\ CiderPress \\ CiderPress.exe " ;
RegLoadString ( TEXT ( " Configuration " ) , REGVALUE_CIDERPRESSLOC , 1 , PathToCiderPress , MAX_PATH ) ;
//TODO: A directory is open if an empty path to CiderPress is set. This has to be fixed.
string filename1 = " \" " ;
2013-12-06 21:10:41 +00:00
filename1 . append ( DiskGetDiskPathFilename ( iDrive ) ) ;
filename1 . append ( " \" " ) ;
2008-06-20 23:47:25 +00:00
string sFileNameEmpty = " \" " ;
2013-12-06 21:10:41 +00:00
sFileNameEmpty . append ( " \" " ) ;
2010-01-03 18:43:08 +00:00
// Load the menu template containing the shortcut menu from the
// application's resources.
HMENU hmenu = LoadMenu ( g_hInstance , MAKEINTRESOURCE ( IDR_MENU_DISK_POPUP ) ) ; // menu template
if ( hmenu = = NULL )
return ;
// Get the first shortcut menu in the menu template.
// This is the menu that TrackPopupMenu displays.
HMENU hmenuTrackPopup = GetSubMenu ( hmenu , 0 ) ; // shortcut menu
// TrackPopup uses screen coordinates, so convert the
// coordinates of the mouse click to screen coordinates.
ClientToScreen ( hwnd , ( LPPOINT ) & pt ) ;
// Check menu depending on current floppy protection
{
int iMenuItem = ID_DISKMENU_WRITEPROTECTION_OFF ;
if ( DiskGetProtect ( iDrive ) )
iMenuItem = ID_DISKMENU_WRITEPROTECTION_ON ;
CheckMenuItem ( hmenu , iMenuItem , MF_CHECKED ) ;
}
if ( Disk_IsDriveEmpty ( iDrive ) )
EnableMenuItem ( hmenu , ID_DISKMENU_EJECT , MF_GRAYED ) ;
if ( Disk_ImageIsWriteProtected ( iDrive ) )
{
// If image-file is read-only (or a gzip) then disable these menu items
EnableMenuItem ( hmenu , ID_DISKMENU_WRITEPROTECTION_ON , MF_GRAYED ) ;
EnableMenuItem ( hmenu , ID_DISKMENU_WRITEPROTECTION_OFF , MF_GRAYED ) ;
}
// Draw and track the shortcut menu.
2006-02-28 18:40:59 +00:00
int iCommand = TrackPopupMenu (
hmenuTrackPopup
, TPM_LEFTALIGN | TPM_LEFTBUTTON | TPM_RETURNCMD
, pt . x , pt . y
, 0
2010-01-03 18:43:08 +00:00
, hwnd , NULL ) ;
2006-02-28 18:40:59 +00:00
if ( iCommand = = ID_DISKMENU_EJECT )
DiskEject ( iDrive ) ;
else
if ( iCommand = = ID_DISKMENU_WRITEPROTECTION_ON )
2006-03-07 18:17:57 +00:00
DiskSetProtect ( iDrive , true ) ;
2006-02-28 18:40:59 +00:00
else
if ( iCommand = = ID_DISKMENU_WRITEPROTECTION_OFF )
2006-03-07 18:17:57 +00:00
DiskSetProtect ( iDrive , false ) ;
2008-06-20 23:47:25 +00:00
else
if ( iCommand = = ID_DISKMENU_SENDTO_CIDERPRESS )
{
2013-08-08 21:13:31 +00:00
static char szCiderpressNotFoundCaption [ ] = " CiderPress not found " ;
static char szCiderpressNotFoundText [ ] = " CiderPress not found! \n "
" Please install CiderPress. \n "
" Otherwise set the path to CiderPress from Configuration->Disk. " ;
2008-06-20 23:47:25 +00:00
//if(!filename1.compare("\"\"") == false) //Do not use this, for some reason it does not work!!!
2010-01-03 18:43:08 +00:00
if ( ! filename1 . compare ( sFileNameEmpty ) )
2008-06-20 23:47:25 +00:00
{
2013-12-06 21:10:41 +00:00
int MB_Result = MessageBox ( g_hFrameWindow , " No disk image loaded. Do you want to run CiderPress anyway? " , " No disk image. " , MB_ICONINFORMATION | MB_YESNO ) ;
2010-01-03 18:43:08 +00:00
if ( MB_Result = = IDYES )
2008-06-20 23:47:25 +00:00
{
if ( FileExists ( PathToCiderPress ) )
{
HINSTANCE nResult = ShellExecute ( NULL , " open " , PathToCiderPress , " " , NULL , SW_SHOWNORMAL ) ;
}
2010-01-03 18:43:08 +00:00
else
{
2013-12-06 21:10:41 +00:00
MessageBox ( g_hFrameWindow , szCiderpressNotFoundText , szCiderpressNotFoundCaption , MB_ICONINFORMATION | MB_OK ) ;
2008-06-20 23:47:25 +00:00
}
}
2010-01-03 18:43:08 +00:00
}
2008-06-20 23:47:25 +00:00
else
{
if ( FileExists ( PathToCiderPress ) )
{
2010-01-03 18:43:08 +00:00
HINSTANCE nResult = ShellExecute ( NULL , " open " , PathToCiderPress , filename1 . c_str ( ) , NULL , SW_SHOWNORMAL ) ;
2008-06-20 23:47:25 +00:00
}
else
{
2013-12-06 21:10:41 +00:00
MessageBox ( g_hFrameWindow , szCiderpressNotFoundText , szCiderpressNotFoundCaption , MB_ICONINFORMATION | MB_OK ) ;
2008-06-20 23:47:25 +00:00
}
}
}
2010-01-03 18:43:08 +00:00
// Destroy the menu.
BOOL bRes = DestroyMenu ( hmenu ) ;
_ASSERT ( bRes ) ;
2008-06-20 23:47:25 +00:00
}
2006-02-28 18:40:59 +00:00
2006-02-25 20:50:29 +00:00
//===========================================================================
void RelayEvent ( UINT message , WPARAM wparam , LPARAM lparam ) {
2009-02-16 19:11:33 +00:00
if ( g_bIsFullScreen )
2006-02-25 20:50:29 +00:00
return ;
MSG msg ;
2006-05-14 00:44:38 +00:00
msg . hwnd = g_hFrameWindow ;
2006-02-25 20:50:29 +00:00
msg . message = message ;
msg . wParam = wparam ;
msg . lParam = lparam ;
SendMessage ( tooltipwindow , TTM_RELAYEVENT , 0 , ( LPARAM ) & msg ) ;
}
//===========================================================================
2009-02-17 02:13:18 +00:00
void ResetMachineState ( )
{
2006-02-25 20:50:29 +00:00
DiskReset ( ) ; // Set floppymotoron=0
g_bFullSpeed = 0 ; // Might've hit reset in middle of InternalCpuExecute() - so beep may get (partially) muted
MemReset ( ) ;
DiskBoot ( ) ;
VideoResetState ( ) ;
2007-05-28 11:16:42 +00:00
sg_SSC . CommReset ( ) ;
2007-03-23 22:26:35 +00:00
PrintReset ( ) ;
2006-02-25 20:50:29 +00:00
JoyReset ( ) ;
MB_Reset ( ) ;
SpkrReset ( ) ;
2007-12-01 21:21:40 +00:00
sg_Mouse . Reset ( ) ;
2009-01-06 22:02:31 +00:00
g_ActiveCPU = CPU_6502 ;
2010-02-14 21:11:26 +00:00
# ifdef USE_SPEECH_API
g_Speech . Reset ( ) ;
# endif
2006-02-25 20:50:29 +00:00
SoundCore_SetFade ( FADE_NONE ) ;
}
2009-02-17 02:13:18 +00:00
//===========================================================================
void CtrlReset ( )
{
2009-02-17 02:25:34 +00:00
// Ctrl+Reset - TODO: This is a terrible place for this code!
2009-02-17 02:13:18 +00:00
if ( ! IS_APPLE2 )
MemResetPaging ( ) ;
DiskReset ( ) ;
KeybReset ( ) ;
if ( ! IS_APPLE2 )
VideoResetState ( ) ; // Switch Alternate char set off
2009-02-17 02:25:34 +00:00
sg_SSC . CommReset ( ) ;
2009-02-17 02:13:18 +00:00
MB_Reset ( ) ;
2010-02-14 21:11:26 +00:00
# ifdef USE_SPEECH_API
g_Speech . Reset ( ) ;
# endif
2009-02-17 02:13:18 +00:00
CpuReset ( ) ;
g_bFreshReset = true ;
}
2006-02-25 20:50:29 +00:00
//===========================================================================
2014-06-26 21:44:02 +00:00
bool GetFullScreen32Bit ( void )
{
return g_bFullScreen32Bit ;
}
void SetFullScreen32Bit ( bool b32Bit )
{
g_bFullScreen32Bit = b32Bit ;
}
2009-02-16 19:11:33 +00:00
void SetFullScreenMode ( )
{
2012-10-05 07:01:27 +00:00
# ifdef NO_DIRECT_X
return ;
# else // NO_DIRECT_X
2009-02-16 19:11:33 +00:00
g_bIsFullScreen = true ;
buttonover = - 1 ;
buttonx = FSBUTTONX ;
buttony = FSBUTTONY ;
viewportx = FSVIEWPORTX ;
viewporty = FSVIEWPORTY ;
GetWindowRect ( g_hFrameWindow , & framerect ) ;
SetWindowLong ( g_hFrameWindow , GWL_STYLE , WS_POPUP | WS_SYSMENU | WS_VISIBLE ) ;
DDSURFACEDESC ddsd ;
ddsd . dwSize = sizeof ( ddsd ) ;
ddsd . dwFlags = DDSD_CAPS ;
ddsd . ddsCaps . dwCaps = DDSCAPS_PRIMARYSURFACE ;
if ( DirectDrawCreate ( NULL , & g_pDD , NULL ) ! = DD_OK | |
g_pDD - > SetCooperativeLevel ( g_hFrameWindow , DDSCL_EXCLUSIVE | DDSCL_FULLSCREEN ) ! = DD_OK | |
2014-06-26 21:44:02 +00:00
g_pDD - > SetDisplayMode ( 640 , 480 , g_bFullScreen32Bit ? 32 : 8 ) ! = DD_OK | |
2009-02-16 19:11:33 +00:00
g_pDD - > CreateSurface ( & ddsd , & g_pDDPrimarySurface , NULL ) ! = DD_OK )
{
g_pDDPrimarySurface = NULL ;
SetNormalMode ( ) ;
return ;
}
2009-02-21 04:42:35 +00:00
// TODO: DD Full-Screen Palette
// if( !g_bIsFullScreen )
2009-02-16 19:11:33 +00:00
InvalidateRect ( g_hFrameWindow , NULL , 1 ) ;
2012-10-05 07:01:27 +00:00
# endif // NO_DIRECT_X
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2009-02-16 19:11:33 +00:00
void SetNormalMode ( )
{
g_bIsFullScreen = false ;
buttonover = - 1 ;
buttonx = BUTTONX ;
buttony = BUTTONY ;
viewportx = VIEWPORTX ;
viewporty = VIEWPORTY ;
g_pDD - > RestoreDisplayMode ( ) ;
g_pDD - > SetCooperativeLevel ( NULL , DDSCL_NORMAL ) ;
SetWindowLong ( g_hFrameWindow , GWL_STYLE ,
2006-02-25 20:50:29 +00:00
WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
WS_VISIBLE ) ;
2009-02-16 19:11:33 +00:00
SetWindowPos ( g_hFrameWindow , 0 , framerect . left ,
2006-02-25 20:50:29 +00:00
framerect . top ,
framerect . right - framerect . left ,
framerect . bottom - framerect . top ,
SWP_NOZORDER | SWP_FRAMECHANGED ) ;
2009-02-21 04:42:35 +00:00
// DD Full-Screen Palette: BUGFIX: Re-attach new palette on next new surface
// Delete Palette
if ( g_pDDPal )
{
g_pDDPal - > Release ( ) ;
g_pDDPal = ( LPDIRECTDRAWPALETTE ) 0 ;
}
2009-02-16 19:11:33 +00:00
if ( g_pDDPrimarySurface )
{
g_pDDPrimarySurface - > Release ( ) ;
g_pDDPrimarySurface = ( LPDIRECTDRAWSURFACE ) 0 ;
}
2009-02-21 04:42:35 +00:00
2009-02-16 19:11:33 +00:00
g_pDD - > Release ( ) ;
g_pDD = ( LPDIRECTDRAW ) 0 ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2008-06-08 12:31:50 +00:00
void SetUsingCursor ( BOOL bNewValue )
{
if ( bNewValue = = g_bUsingCursor )
return ;
g_bUsingCursor = bNewValue ;
if ( g_bUsingCursor )
{
SetCapture ( g_hFrameWindow ) ;
RECT rect = { viewportx + 2 , // left
viewporty + 2 , // top
2012-12-29 14:53:52 +00:00
viewportx + g_nViewportCX - 1 , // right
viewporty + g_nViewportCY - 1 } ; // bottom
2008-06-08 12:31:50 +00:00
ClientToScreen ( g_hFrameWindow , ( LPPOINT ) & rect . left ) ;
ClientToScreen ( g_hFrameWindow , ( LPPOINT ) & rect . right ) ;
ClipCursor ( & rect ) ;
FrameShowCursor ( FALSE ) ;
POINT pt ;
GetCursorPos ( & pt ) ;
ScreenToClient ( g_hFrameWindow , & pt ) ;
DrawCrosshairs ( pt . x , pt . y ) ;
}
else
{
DrawCrosshairs ( 0 , 0 ) ;
FrameShowCursor ( TRUE ) ;
ClipCursor ( NULL ) ;
ReleaseCapture ( ) ;
}
2006-02-25 20:50:29 +00:00
}
2012-12-29 14:53:52 +00:00
int GetViewportScale ( void )
{
return g_nViewportScale ;
}
2013-03-07 23:23:26 +00:00
int SetViewportScale ( int nNewScale )
2012-12-29 14:53:52 +00:00
{
2013-03-07 23:23:26 +00:00
if ( nNewScale > g_nMaxViewportScale )
nNewScale = g_nMaxViewportScale ;
2012-12-29 14:53:52 +00:00
g_nViewportScale = nNewScale ;
g_nViewportCX = g_nViewportScale * FRAMEBUFFER_W ;
g_nViewportCY = g_nViewportScale * FRAMEBUFFER_H ;
2013-03-07 23:23:26 +00:00
return nNewScale ;
2012-12-29 14:53:52 +00:00
}
static void SetupTooltipControls ( void )
{
TOOLINFO toolinfo ;
toolinfo . cbSize = sizeof ( toolinfo ) ;
toolinfo . uFlags = TTF_CENTERTIP ;
toolinfo . hwnd = g_hFrameWindow ;
toolinfo . hinst = g_hInstance ;
toolinfo . lpszText = LPSTR_TEXTCALLBACK ;
toolinfo . rect . left = BUTTONX ;
toolinfo . rect . right = toolinfo . rect . left + BUTTONCX + 1 ;
toolinfo . uId = 0 ;
toolinfo . rect . top = BUTTONY + BTN_DRIVE1 * BUTTONCY + 1 ;
toolinfo . rect . bottom = toolinfo . rect . top + BUTTONCY ;
SendMessage ( tooltipwindow , TTM_ADDTOOL , 0 , ( LPARAM ) & toolinfo ) ;
toolinfo . uId = 1 ;
toolinfo . rect . top = BUTTONY + BTN_DRIVE2 * BUTTONCY + 1 ;
toolinfo . rect . bottom = toolinfo . rect . top + BUTTONCY ;
SendMessage ( tooltipwindow , TTM_ADDTOOL , 0 , ( LPARAM ) & toolinfo ) ;
}
2013-01-05 22:01:15 +00:00
static void GetWidthHeight ( int & nWidth , int & nHeight )
2006-06-27 02:34:46 +00:00
{
2012-12-29 14:53:52 +00:00
nWidth = g_nViewportCX + VIEWPORTX * 2
+ BUTTONCX
+ GetSystemMetrics ( SM_CXBORDER ) * 2
+ MAGICX ;
nHeight = g_nViewportCY + VIEWPORTY * 2
+ GetSystemMetrics ( SM_CYBORDER )
+ GetSystemMetrics ( SM_CYCAPTION )
+ MAGICY ;
}
2010-01-17 18:43:06 +00:00
2013-01-06 13:47:52 +00:00
static void FrameResizeWindow ( int nNewScale )
2012-12-29 14:53:52 +00:00
{
2013-01-06 13:47:52 +00:00
int nOldWidth , nOldHeight ;
GetWidthHeight ( nOldWidth , nOldHeight ) ;
2013-03-07 23:23:26 +00:00
nNewScale = SetViewportScale ( nNewScale ) ;
2012-12-29 14:53:52 +00:00
GetWindowRect ( g_hFrameWindow , & framerect ) ;
int nXPos = framerect . left ;
int nYPos = framerect . top ;
2010-01-17 18:43:06 +00:00
2012-12-29 14:53:52 +00:00
//
2013-01-05 22:01:15 +00:00
buttonx = g_nViewportCX + VIEWPORTX * 2 ;
2012-12-29 14:53:52 +00:00
buttony = 0 ;
2013-01-05 22:01:15 +00:00
// Invalidate old rect region
{
RECT irect ;
irect . left = irect . top = 0 ;
irect . right = nOldWidth ;
irect . bottom = nOldHeight ;
InvalidateRect ( g_hFrameWindow , & irect , TRUE ) ;
}
// Resize the window
2013-01-06 13:47:52 +00:00
int nNewWidth , nNewHeight ;
GetWidthHeight ( nNewWidth , nNewHeight ) ;
2013-01-09 22:21:12 +00:00
MoveWindow ( g_hFrameWindow , nXPos , nYPos , nNewWidth , nNewHeight , TRUE ) ;
2012-12-29 14:53:52 +00:00
UpdateWindow ( g_hFrameWindow ) ;
2013-01-05 22:01:15 +00:00
// Remove the tooltips for the old window size
2012-12-29 14:53:52 +00:00
TOOLINFO toolinfo = { 0 } ;
toolinfo . cbSize = sizeof ( toolinfo ) ;
toolinfo . hwnd = g_hFrameWindow ;
toolinfo . uId = 0 ;
SendMessage ( tooltipwindow , TTM_DELTOOL , 0 , ( LPARAM ) & toolinfo ) ;
toolinfo . uId = 1 ;
SendMessage ( tooltipwindow , TTM_DELTOOL , 0 , ( LPARAM ) & toolinfo ) ;
2013-01-05 22:01:15 +00:00
// Setup the tooltips for the new window size
2012-12-29 14:53:52 +00:00
SetupTooltipControls ( ) ;
}
2013-01-05 22:01:15 +00:00
//
// ----- ALL GLOBALLY ACCESSIBLE FUNCTIONS ARE BELOW THIS LINE -----
//
//===========================================================================
2012-12-29 14:53:52 +00:00
void FrameCreateWindow ( void )
{
int nWidth , nHeight ;
2013-03-09 13:05:34 +00:00
// Set g_nMaxViewportScale
{
int nOldViewportCX = g_nViewportCX ;
int nOldViewportCY = g_nViewportCY ;
g_nViewportCX = FRAMEBUFFER_W * 2 ;
g_nViewportCY = FRAMEBUFFER_H * 2 ;
GetWidthHeight ( nWidth , nHeight ) ; // Probe with 2x dimensions
g_nViewportCX = nOldViewportCX ;
g_nViewportCY = nOldViewportCY ;
if ( nWidth > GetSystemMetrics ( SM_CXSCREEN ) | | nHeight > GetSystemMetrics ( SM_CYSCREEN ) )
g_nMaxViewportScale = 1 ;
}
2012-12-29 14:53:52 +00:00
GetWidthHeight ( nWidth , nHeight ) ;
2013-03-07 23:23:26 +00:00
// If screen is too small for 2x, then revert to 1x
if ( g_nViewportScale = = 2 & & ( nWidth > GetSystemMetrics ( SM_CXSCREEN ) | | nHeight > GetSystemMetrics ( SM_CYSCREEN ) ) )
{
g_nMaxViewportScale = 1 ;
SetViewportScale ( 1 ) ;
GetWidthHeight ( nWidth , nHeight ) ;
}
2012-12-29 14:53:52 +00:00
// Restore Window X Position
2010-01-17 18:43:06 +00:00
int nXPos = - 1 ;
{
2013-03-07 23:23:26 +00:00
const int nXScreen = GetSystemMetrics ( SM_CXSCREEN ) - nWidth ;
2010-01-17 18:43:06 +00:00
2012-12-29 14:53:52 +00:00
if ( RegLoadValue ( TEXT ( REG_PREFS ) , TEXT ( REGVALUE_PREF_WINDOW_X_POS ) , 1 , ( DWORD * ) & nXPos ) )
2010-01-17 18:43:06 +00:00
{
2011-02-20 18:59:53 +00:00
if ( ( nXPos > nXScreen ) & & ! g_bMultiMon )
2010-01-17 18:43:06 +00:00
nXPos = - 1 ; // Not fully visible, so default to centre position
}
2011-02-20 18:59:53 +00:00
if ( ( nXPos = = - 1 ) & & ! g_bMultiMon )
2010-01-17 18:43:06 +00:00
nXPos = nXScreen / 2 ;
}
2011-02-20 18:59:53 +00:00
// Restore Window Y Position
2010-01-17 18:43:06 +00:00
int nYPos = - 1 ;
{
2013-03-07 23:23:26 +00:00
const int nYScreen = GetSystemMetrics ( SM_CYSCREEN ) - nHeight ;
2010-01-17 18:43:06 +00:00
2012-12-29 14:53:52 +00:00
if ( RegLoadValue ( TEXT ( REG_PREFS ) , TEXT ( REGVALUE_PREF_WINDOW_Y_POS ) , 1 , ( DWORD * ) & nYPos ) )
2010-01-17 18:43:06 +00:00
{
2011-02-20 18:59:53 +00:00
if ( ( nYPos > nYScreen ) & & ! g_bMultiMon )
2010-01-17 18:43:06 +00:00
nYPos = - 1 ; // Not fully visible, so default to centre position
}
2013-03-07 23:23:26 +00:00
if ( ( nYPos = = - 1 ) & & ! g_bMultiMon )
2010-01-17 18:43:06 +00:00
nYPos = nYScreen / 2 ;
}
//
2012-12-29 14:53:52 +00:00
buttonx = ( g_nViewportCX + VIEWPORTX * 2 ) ;
buttony = 0 ;
2011-02-20 07:32:09 +00:00
GetAppleWindowTitle ( ) ;
2008-06-20 23:47:25 +00:00
2013-03-28 22:28:42 +00:00
// NB. g_hFrameWindow also set by WM_CREATE - NB. CreateWindow() must synchronously send WM_CREATE
2006-06-27 02:34:46 +00:00
g_hFrameWindow = CreateWindow (
TEXT ( " APPLE2FRAME " ) ,
2011-02-20 07:32:09 +00:00
g_pAppTitle , // SetWindowText() // WindowTitle
2006-06-27 02:34:46 +00:00
WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU |
WS_MINIMIZEBOX | WS_VISIBLE ,
2010-01-17 18:43:06 +00:00
nXPos , nYPos , nWidth , nHeight ,
2006-07-02 09:56:50 +00:00
HWND_DESKTOP ,
( HMENU ) 0 ,
2010-01-17 18:43:06 +00:00
g_hInstance , NULL ) ;
2006-06-27 02:34:46 +00:00
InitCommonControls ( ) ;
tooltipwindow = CreateWindow (
TOOLTIPS_CLASS , NULL , TTS_ALWAYSTIP ,
CW_USEDEFAULT , CW_USEDEFAULT , CW_USEDEFAULT , CW_USEDEFAULT ,
2006-07-02 09:56:50 +00:00
g_hFrameWindow ,
( HMENU ) 0 ,
g_hInstance , NULL ) ;
2006-06-27 02:34:46 +00:00
2012-12-29 14:53:52 +00:00
SetupTooltipControls ( ) ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
HDC FrameGetDC ( ) {
2006-07-02 09:56:50 +00:00
if ( ! g_hFrameDC ) {
g_hFrameDC = GetDC ( g_hFrameWindow ) ;
SetViewportOrgEx ( g_hFrameDC , viewportx , viewporty , NULL ) ;
2006-02-25 20:50:29 +00:00
}
2006-07-02 09:56:50 +00:00
return g_hFrameDC ;
2006-02-25 20:50:29 +00:00
}
//===========================================================================
2009-02-16 19:11:33 +00:00
HDC FrameGetVideoDC ( LPBYTE * pAddr_ , LONG * pPitch_ )
2008-03-29 13:01:21 +00:00
{
2009-02-16 19:11:33 +00:00
// ASSERT( pAddr_ );
// ASSERT( pPitch_ );
if ( g_bIsFullScreen & & g_bAppActive & & ! g_bPaintingWindow )
2008-03-29 13:01:21 +00:00
{
RECT rect = { FSVIEWPORTX ,
FSVIEWPORTY ,
2012-12-29 14:53:52 +00:00
FSVIEWPORTX + g_nViewportCX ,
FSVIEWPORTY + g_nViewportCY } ;
2008-03-29 13:01:21 +00:00
DDSURFACEDESC surfacedesc ;
surfacedesc . dwSize = sizeof ( surfacedesc ) ;
// TC: Use DDLOCK_WAIT - see Bug #13425
2009-02-16 19:11:33 +00:00
if ( g_pDDPrimarySurface - > Lock ( & rect , & surfacedesc , DDLOCK_WAIT , NULL ) = = DDERR_SURFACELOST )
2008-03-29 13:01:21 +00:00
{
2009-02-16 19:11:33 +00:00
g_pDDPrimarySurface - > Restore ( ) ;
g_pDDPrimarySurface - > Lock ( & rect , & surfacedesc , DDLOCK_WAIT , NULL ) ;
2009-02-17 01:36:34 +00:00
// DD Full Screen Palette
// if (g_pDDPal)
// {
// g_pDDPrimarySurface->SetPalette(g_pDDPal); // this sets the palette for the primary surface
// }
2008-03-29 13:01:21 +00:00
}
2014-06-26 21:44:02 +00:00
* pAddr_ = ( LPBYTE ) surfacedesc . lpSurface + ( g_nViewportCY - 1 ) * surfacedesc . lPitch ;
2009-02-16 19:11:33 +00:00
* pPitch_ = - surfacedesc . lPitch ;
2008-03-29 13:01:21 +00:00
return ( HDC ) 0 ;
}
else
{
2009-02-16 19:11:33 +00:00
* pAddr_ = g_pFramebufferbits ;
* pPitch_ = FRAMEBUFFER_W ;
2008-03-29 13:01:21 +00:00
return FrameGetDC ( ) ;
}
2006-02-25 20:50:29 +00:00
}
//===========================================================================
void FrameRefreshStatus ( int drawflags ) {
DrawStatusArea ( ( HDC ) 0 , drawflags ) ;
}
//===========================================================================
void FrameRegisterClass ( ) {
WNDCLASSEX wndclass ;
ZeroMemory ( & wndclass , sizeof ( WNDCLASSEX ) ) ;
wndclass . cbSize = sizeof ( WNDCLASSEX ) ;
wndclass . style = CS_OWNDC | CS_BYTEALIGNCLIENT ;
wndclass . lpfnWndProc = FrameWndProc ;
2006-07-02 09:56:50 +00:00
wndclass . hInstance = g_hInstance ;
wndclass . hIcon = LoadIcon ( g_hInstance , TEXT ( " APPLEWIN_ICON " ) ) ;
2006-02-25 20:50:29 +00:00
wndclass . hCursor = LoadCursor ( 0 , IDC_ARROW ) ;
wndclass . hbrBackground = ( HBRUSH ) GetStockObject ( BLACK_BRUSH ) ;
# if ENABLE_MENU
wndclass . lpszMenuName = ( LPCSTR ) IDR_MENU1 ;
# endif
wndclass . lpszClassName = TEXT ( " APPLE2FRAME " ) ;
2006-07-02 09:56:50 +00:00
wndclass . hIconSm = ( HICON ) LoadImage ( g_hInstance , TEXT ( " APPLEWIN_ICON " ) ,
2006-02-25 20:50:29 +00:00
IMAGE_ICON , 16 , 16 , LR_DEFAULTCOLOR ) ;
RegisterClassEx ( & wndclass ) ;
}
//===========================================================================
void FrameReleaseDC ( ) {
2006-07-02 09:56:50 +00:00
if ( g_hFrameDC ) {
SetViewportOrgEx ( g_hFrameDC , 0 , 0 , NULL ) ;
ReleaseDC ( g_hFrameWindow , g_hFrameDC ) ;
g_hFrameDC = ( HDC ) 0 ;
2006-02-25 20:50:29 +00:00
}
}
//===========================================================================
2009-02-21 04:42:35 +00:00
void FrameReleaseVideoDC ( )
{
if ( g_bIsFullScreen & & g_bAppActive & & ! g_bPaintingWindow )
{
// THIS IS CORRECT ACCORDING TO THE DIRECTDRAW DOCS
RECT rect = {
FSVIEWPORTX ,
FSVIEWPORTY ,
2012-12-29 14:53:52 +00:00
FSVIEWPORTX + g_nViewportCX ,
FSVIEWPORTY + g_nViewportCY
2009-02-21 04:42:35 +00:00
} ;
g_pDDPrimarySurface - > Unlock ( & rect ) ;
// BUT THIS SEEMS TO BE WORKING
g_pDDPrimarySurface - > Unlock ( NULL ) ;
}
2006-02-25 20:50:29 +00:00
}
2008-05-17 23:20:33 +00:00
//===========================================================================
2009-02-16 19:11:33 +00:00
// TODO: FIXME: Util_TestFileExists()
2008-06-20 23:47:25 +00:00
static bool FileExists ( string strFilename )
{
struct stat stFileInfo ;
int intStat = stat ( strFilename . c_str ( ) , & stFileInfo ) ;
return ( intStat = = 0 ) ? true : false ;
}
//===========================================================================
2008-05-17 23:20:33 +00:00
// Called when:
// . Mouse f/w sets abs position
// . UpdateMouseInAppleViewport() is called and inside Apple screen
void FrameSetCursorPosByMousePos ( )
{
if ( ! g_hFrameWindow | | g_bShowingCursor )
return ;
int iX , iMinX , iMaxX ;
int iY , iMinY , iMaxY ;
sg_Mouse . GetXY ( iX , iMinX , iMaxX , iY , iMinY , iMaxY ) ;
_ASSERT ( iMinX = = 0 & & iMinY = = 0 ) ;
float fScaleX = ( float ) ( iX - iMinX ) / ( ( float ) ( iMaxX - iMinX ) ) ;
float fScaleY = ( float ) ( iY - iMinY ) / ( ( float ) ( iMaxY - iMinY ) ) ;
2012-12-29 14:53:52 +00:00
int iWindowX = ( int ) ( fScaleX * ( float ) g_nViewportCX ) ;
int iWindowY = ( int ) ( fScaleY * ( float ) g_nViewportCY ) ;
2008-05-17 23:20:33 +00:00
POINT Point = { viewportx + 2 , viewporty + 2 } ; // top-left
ClientToScreen ( g_hFrameWindow , & Point ) ;
SetCursorPos ( Point . x + iWindowX - MAGICX , Point . y + iWindowY - MAGICY ) ;
# if defined(_DEBUG) && 0
static int OldX = 0 , OldY = 0 ;
char szDbg [ 200 ] ;
int X = Point . x + iWindowX - MAGICX ;
int Y = Point . y + iWindowY - MAGICY ;
if ( X ! = OldX | | Y ! = OldY )
{
sprintf ( szDbg , " [FrameSetCursorPosByMousePos] x,y=%d,%d (MaxX,Y=%d,%d) \n " , X , Y , iMaxX , iMaxY ) ; OutputDebugString ( szDbg ) ;
OldX = X ; OldY = Y ;
}
# endif
}
2008-06-08 12:31:50 +00:00
// Called when:
// . UpdateMouseInAppleViewport() is called and mouse leaving/entering Apple screen area
// . NB. Not called when leaving & mouse clipped to Apple screen area
2008-05-17 23:20:33 +00:00
static void FrameSetCursorPosByMousePos ( int x , int y , int dx , int dy , bool bLeavingAppleScreen )
{
// char szDbg[200];
if ( ! g_hFrameWindow | | ( g_bShowingCursor & & bLeavingAppleScreen ) | | ( ! g_bShowingCursor & & ! bLeavingAppleScreen ) )
return ;
int iX , iMinX , iMaxX ;
int iY , iMinY , iMaxY ;
sg_Mouse . GetXY ( iX , iMinX , iMaxX , iY , iMinY , iMaxY ) ;
_ASSERT ( iMinX = = 0 & & iMinY = = 0 ) ;
if ( bLeavingAppleScreen )
{
// Set mouse x/y pos to edge of mouse's window
if ( dx < 0 ) iX = iMinX ;
if ( dx > 0 ) iX = iMaxX ;
if ( dy < 0 ) iY = iMinY ;
if ( dy > 0 ) iY = iMaxY ;
float fScaleX = ( float ) ( iX - iMinX ) / ( ( float ) ( iMaxX - iMinX ) ) ;
float fScaleY = ( float ) ( iY - iMinY ) / ( ( float ) ( iMaxY - iMinY ) ) ;
2012-12-29 14:53:52 +00:00
int iWindowX = ( int ) ( fScaleX * ( float ) g_nViewportCX ) + dx ;
int iWindowY = ( int ) ( fScaleY * ( float ) g_nViewportCY ) + dy ;
2008-05-17 23:20:33 +00:00
POINT Point = { viewportx + 2 , viewporty + 2 } ; // top-left
ClientToScreen ( g_hFrameWindow , & Point ) ;
SetCursorPos ( Point . x + iWindowX - MAGICX , Point . y + iWindowY - MAGICY ) ;
// sprintf(szDbg, "[MOUSE_LEAVING ] x=%d, y=%d (Scale: x,y=%f,%f; iX,iY=%d,%d)\n", iWindowX, iWindowY, fScaleX, fScaleY, iX, iY); OutputDebugString(szDbg);
}
else // Mouse entering Apple screen area
{
// sprintf(szDbg, "[MOUSE_ENTERING] x=%d, y=%d\n", x, y); OutputDebugString(szDbg);
2008-06-08 12:31:50 +00:00
x - = ( viewportx + 2 - MAGICX ) ; if ( x < 0 ) x = 0 ;
y - = ( viewporty + 2 - MAGICY ) ; if ( y < 0 ) y = 0 ;
2008-05-17 23:20:33 +00:00
2012-12-29 14:53:52 +00:00
_ASSERT ( x < = g_nViewportCX ) ;
_ASSERT ( y < = g_nViewportCY ) ;
float fScaleX = ( float ) x / ( float ) g_nViewportCX ;
float fScaleY = ( float ) y / ( float ) g_nViewportCY ;
2008-05-17 23:20:33 +00:00
int iAppleX = iMinX + ( int ) ( fScaleX * ( float ) ( iMaxX - iMinX ) ) ;
int iAppleY = iMinY + ( int ) ( fScaleY * ( float ) ( iMaxY - iMinY ) ) ;
sg_Mouse . SetCursorPos ( iAppleX , iAppleY ) ; // Set new entry position
// Dump initial deltas (otherwise can get big deltas since last read when entering Apple screen area)
DIMouse : : ReadImmediateData ( ) ;
}
}
static void DrawCrosshairsMouse ( )
{
2012-03-27 21:20:36 +00:00
if ( ! sg_PropertySheet . GetMouseShowCrosshair ( ) )
2008-05-17 23:20:33 +00:00
return ;
int iX , iMinX , iMaxX ;
int iY , iMinY , iMaxY ;
sg_Mouse . GetXY ( iX , iMinX , iMaxX , iY , iMinY , iMaxY ) ;
_ASSERT ( iMinX = = 0 & & iMinY = = 0 ) ;
float fScaleX = ( float ) ( iX - iMinX ) / ( ( float ) ( iMaxX - iMinX ) ) ;
float fScaleY = ( float ) ( iY - iMinY ) / ( ( float ) ( iMaxY - iMinY ) ) ;
2012-12-29 14:53:52 +00:00
int iWindowX = ( int ) ( fScaleX * ( float ) g_nViewportCX ) ;
int iWindowY = ( int ) ( fScaleY * ( float ) g_nViewportCY ) ;
2008-05-17 23:20:33 +00:00
DrawCrosshairs ( iWindowX , iWindowY ) ;
}
# ifdef _DEBUG
//#define _DEBUG_SHOW_CURSOR // NB. Get an ASSERT on LMB (after Ctrl+LMB)
# endif
static void UpdateMouseInAppleViewport ( int iOutOfBoundsX , int iOutOfBoundsY , int x , int y )
{
const bool bOutsideAppleViewport = iOutOfBoundsX | | iOutOfBoundsY ;
if ( bOutsideAppleViewport )
{
2012-03-27 21:20:36 +00:00
if ( sg_PropertySheet . GetMouseRestrictToWindow ( ) )
2008-05-18 18:23:25 +00:00
return ;
2008-05-17 23:20:33 +00:00
g_bLastCursorInAppleViewport = false ;
if ( ! g_bShowingCursor )
{
// Mouse leaving Apple screen area
FrameSetCursorPosByMousePos ( 0 , 0 , iOutOfBoundsX , iOutOfBoundsY , true ) ;
# ifdef _DEBUG_SHOW_CURSOR
2008-05-18 18:23:25 +00:00
g_bShowingCursor = true ;
2008-05-17 23:20:33 +00:00
# else
2008-05-18 18:23:25 +00:00
FrameShowCursor ( TRUE ) ;
2008-05-17 23:20:33 +00:00
# endif
}
}
else
{
g_bLastCursorInAppleViewport = true ;
if ( g_bShowingCursor )
{
// Mouse entering Apple screen area
FrameSetCursorPosByMousePos ( x , y , 0 , 0 , false ) ;
# ifdef _DEBUG_SHOW_CURSOR
2008-05-18 18:23:25 +00:00
g_bShowingCursor = false ;
2008-05-17 23:20:33 +00:00
# else
2008-05-18 18:23:25 +00:00
FrameShowCursor ( FALSE ) ;
2008-05-17 23:20:33 +00:00
# endif
2008-05-18 18:23:25 +00:00
//
2012-03-27 21:20:36 +00:00
if ( sg_PropertySheet . GetMouseRestrictToWindow ( ) )
2008-06-08 12:31:50 +00:00
SetUsingCursor ( TRUE ) ;
2008-05-17 23:20:33 +00:00
}
else
{
FrameSetCursorPosByMousePos ( ) ; // Set cursor to Apple position each time
}
DrawCrosshairsMouse ( ) ;
}
}
2012-12-29 14:53:52 +00:00
void GetViewportCXCY ( int & nViewportCX , int & nViewportCY )
{
nViewportCX = g_nViewportCX ;
nViewportCY = g_nViewportCY ;
}