2018-05-20 04:53:34 +00:00
// Pi1541 - A Commodore 1541 disk drive emulator
// Copyright(C) 2018 Stephen White
//
// This file is part of Pi1541.
//
// Pi1541 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 3 of the License, or
// (at your option) any later version.
//
// Pi1541 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 Pi1541. If not, see <http://www.gnu.org/licenses/>.
# ifndef InputMappings_H
# define InputMappings_H
# include "Singleton.h"
# include "Keyboard.h"
# define ESC_FLAG (1 << 0)
# define NEXT_FLAG (1 << 1)
# define PREV_FLAG (1 << 2)
# define ENTER_FLAG (1 << 3)
# define UP_FLAG (1 << 4)
# define PAGEUP_FLAG (1 << 5)
# define DOWN_FLAG (1 << 6)
2018-07-19 13:49:08 +00:00
# define PAGEDOWN_FLAG (1 << 7)
2018-05-20 04:53:34 +00:00
# define SPACE_FLAG (1 << 8)
# define BACK_FLAG (1 << 9)
# define INSERT_FLAG (1 << 10)
2018-08-05 08:26:33 +00:00
# define NUMLET_FLAG (1 << 11)
2018-05-20 04:53:34 +00:00
2018-07-19 13:49:08 +00:00
# define PAGEDOWN_LCD_FLAG (1 << 12)
# define PAGEUP_LCD_FLAG (1 << 13)
# define NEWD64_FLAG (1 << 14)
2018-07-27 13:43:49 +00:00
# define AUTOLOAD_FLAG (1 << 15)
2018-07-28 14:35:17 +00:00
# define FAKERESET_FLAG (1 << 16)
2018-07-29 05:55:46 +00:00
# define WRITEPROTECT_FLAG (1 << 17)
2018-08-05 08:26:33 +00:00
//#define SPARE_FLAG (1 << 18)
2018-08-01 07:57:01 +00:00
# define HOME_FLAG (1 << 19)
# define END_FLAG (1 << 20)
2018-08-05 08:26:33 +00:00
2018-08-01 11:24:33 +00:00
# define FUNCTION_FLAG (1 << 21)
2018-07-19 13:49:08 +00:00
// dont exceed 32!!
2018-06-03 08:11:58 +00:00
2018-07-31 08:38:24 +00:00
2018-05-20 04:53:34 +00:00
class InputMappings : public Singleton < InputMappings >
{
protected :
friend Singleton < InputMappings > ;
unsigned keyboardFlags ;
unsigned buttonFlags ;
2018-06-03 08:11:58 +00:00
bool keyboardBrowseLCDScreen ;
2018-07-22 08:43:08 +00:00
bool insertButtonPressedPrev ;
bool insertButtonPressed ;
2018-07-29 04:22:14 +00:00
bool enterButtonPressedPrev ;
bool enterButtonPressed ;
2018-08-05 08:26:33 +00:00
unsigned keyboardNumLetter ;
unsigned inputROMOrDevice ;
2018-07-31 08:38:24 +00:00
2018-05-20 04:53:34 +00:00
//inline void SetUartFlag(unsigned flag) { uartFlags |= flag; }
//inline bool UartFlag(unsigned flag) { return (uartFlags & flag) != 0; }
inline void SetKeyboardFlag ( unsigned flag ) { keyboardFlags | = flag ; }
inline bool KeyboardFlag ( unsigned flag ) { return ( keyboardFlags & flag ) ! = 0 ; }
inline void SetButtonFlag ( unsigned flag ) { buttonFlags | = flag ; }
inline bool ButtonFlag ( unsigned flag ) { return ( buttonFlags & flag ) ! = 0 ; }
public :
InputMappings ( ) ;
//void CheckUart(); // One core will call this
bool CheckKeyboardBrowseMode ( ) ;
void CheckKeyboardEmulationMode ( unsigned numberOfImages , unsigned numberOfImagesMax ) ; // The other core will call this
bool CheckButtonsBrowseMode ( ) ;
void CheckButtonsEmulationMode ( ) ;
void Reset ( )
{
keyboardFlags = 0 ;
buttonFlags = 0 ;
}
2018-06-03 08:11:58 +00:00
void SetKeyboardBrowseLCDScreen ( bool value )
{
keyboardBrowseLCDScreen = value ;
}
2018-05-20 04:53:34 +00:00
inline bool Exit ( )
{
return KeyboardFlag ( ESC_FLAG ) /* | UartFlag(ESC_FLAG)*/ | ButtonFlag ( ESC_FLAG ) ;
}
inline bool NextDisk ( )
{
return KeyboardFlag ( NEXT_FLAG ) /* | UartFlag(NEXT_FLAG)*/ | ButtonFlag ( NEXT_FLAG ) ;
}
inline bool PrevDisk ( )
{
return KeyboardFlag ( PREV_FLAG ) /* | UartFlag(PREV_FLAG)*/ | ButtonFlag ( PREV_FLAG ) ;
}
2018-08-01 11:24:33 +00:00
inline bool AutoLoad ( ) { return KeyboardFlag ( AUTOLOAD_FLAG ) ; }
2018-07-28 14:35:17 +00:00
2018-08-01 11:24:33 +00:00
inline bool FakeReset ( ) { return KeyboardFlag ( FAKERESET_FLAG ) ; }
2018-07-28 14:35:17 +00:00
2018-05-20 04:53:34 +00:00
inline bool BrowseSelect ( )
{
return KeyboardFlag ( ENTER_FLAG ) /* | UartFlag(ENTER_FLAG)*/ | ButtonFlag ( ENTER_FLAG ) ;
}
inline bool BrowseDone ( )
{
return KeyboardFlag ( SPACE_FLAG ) /* | UartFlag(SPACE_FLAG)*/ ;
}
inline bool BrowseBack ( )
{
return KeyboardFlag ( BACK_FLAG ) /* | UartFlag(BACK_FLAG)*/ | ButtonFlag ( BACK_FLAG ) ;
}
inline bool BrowseUp ( )
{
return KeyboardFlag ( UP_FLAG ) /* | UartFlag(UP_FLAG)*/ | ButtonFlag ( UP_FLAG ) ;
}
inline bool BrowsePageUp ( )
{
return KeyboardFlag ( PAGEUP_FLAG ) /* | UartFlag(PAGEUP_FLAG)*/ ;
}
2018-08-01 11:24:33 +00:00
inline bool BrowsePageUpLCD ( ) { return KeyboardFlag ( PAGEUP_LCD_FLAG ) ; }
2018-05-20 04:53:34 +00:00
inline bool BrowseDown ( )
{
return KeyboardFlag ( DOWN_FLAG ) /* | UartFlag(DOWN_FLAG)*/ | ButtonFlag ( DOWN_FLAG ) ;
}
inline bool BrowsePageDown ( )
{
return KeyboardFlag ( PAGEDOWN_FLAG ) /* | UartFlag(PAGEDOWN_FLAG)*/ ;
}
2018-08-01 11:24:33 +00:00
inline bool BrowsePageDownLCD ( ) { return KeyboardFlag ( PAGEDOWN_LCD_FLAG ) ; }
2018-05-20 04:53:34 +00:00
inline bool BrowseInsert ( )
{
return KeyboardFlag ( INSERT_FLAG ) /* | UartFlag(INSERT_FLAG)*/ | ButtonFlag ( INSERT_FLAG ) ;
}
2018-08-05 10:20:48 +00:00
inline bool BrowseFunction ( )
{
return KeyboardFlag ( FUNCTION_FLAG ) | ButtonFlag ( FUNCTION_FLAG ) ;
}
2018-08-01 11:24:33 +00:00
inline bool BrowseNewD64 ( ) { return KeyboardFlag ( NEWD64_FLAG ) ; }
2018-07-19 13:49:08 +00:00
2018-08-01 11:24:33 +00:00
inline bool BrowseAutoLoad ( ) { return KeyboardFlag ( AUTOLOAD_FLAG ) ; }
2018-07-27 13:43:49 +00:00
2018-08-01 11:24:33 +00:00
inline bool BrowseFakeReset ( ) { return KeyboardFlag ( FAKERESET_FLAG ) ; }
2018-07-29 05:55:46 +00:00
2018-08-01 11:24:33 +00:00
inline bool BrowseWriteProtect ( ) { return KeyboardFlag ( WRITEPROTECT_FLAG ) ; }
2018-07-31 08:38:24 +00:00
2018-08-01 11:24:33 +00:00
inline bool BrowseHome ( ) { return KeyboardFlag ( HOME_FLAG ) ; }
2018-08-01 07:57:01 +00:00
2018-08-01 11:24:33 +00:00
inline bool BrowseEnd ( ) { return KeyboardFlag ( END_FLAG ) ; }
2018-08-01 07:57:01 +00:00
2018-08-05 08:26:33 +00:00
inline char getKeyboardNumLetter ( ) { return keyboardNumLetter ; }
inline unsigned getROMOrDevice ( ) { return inputROMOrDevice ; }
2018-07-31 08:38:24 +00:00
2018-05-20 04:53:34 +00:00
// Used by the 2 cores so need to be volatile
//volatile static unsigned directDiskSwapRequest;
static unsigned directDiskSwapRequest ;
//volatile static unsigned uartFlags; // WARNING uncached volatile accessed across cores can be very expensive and may cause the emulation to exceed the 1us time frame and a realtime cycle will not be emulated correctly!
//private:
// static unsigned escapeSequenceIndex;
} ;
# endif
2018-07-31 08:38:24 +00:00