pi1541/src/InputMappings.h

214 lines
5.7 KiB
C++

// 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 "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)
#define PAGEDOWN_FLAG (1 << 7)
#define SPACE_FLAG (1 << 8)
#define BACK_FLAG (1 << 9)
#define INSERT_FLAG (1 << 10)
#define NUMLET_FLAG (1 << 11)
#define PAGEDOWN_LCD_FLAG (1 << 12)
#define PAGEUP_LCD_FLAG (1 << 13)
#define NEWD64_FLAG (1 << 14)
#define AUTOLOAD_FLAG (1 << 15)
#define FAKERESET_FLAG (1 << 16)
#define WRITEPROTECT_FLAG (1 << 17)
#define MAKELST_FLAG (1 << 18)
#define HOME_FLAG (1 << 19)
#define END_FLAG (1 << 20)
#define FUNCTION_FLAG (1 << 21)
// dont exceed 32!!
class InputMappings //: public Singleton<InputMappings>
{
protected:
// friend Singleton<InputMappings>;
unsigned keyboardFlags;
unsigned buttonFlags;
bool keyboardBrowseLCDScreen;
bool insertButtonPressedPrev;
bool insertButtonPressed;
bool enterButtonPressedPrev;
bool enterButtonPressed;
unsigned keyboardNumLetter;
unsigned inputROMOrDevice;
//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 WaitForClearButtons();
static u8 INPUT_BUTTON_ENTER;
static u8 INPUT_BUTTON_UP;
static u8 INPUT_BUTTON_DOWN;
static u8 INPUT_BUTTON_BACK;
static u8 INPUT_BUTTON_INSERT;
void Reset()
{
keyboardFlags = 0;
buttonFlags = 0;
}
void SetKeyboardBrowseLCDScreen(bool value)
{
keyboardBrowseLCDScreen = value;
}
#if defined(EXPERIMENTALZERO)
inline bool Exit()
{
return ButtonFlag(ESC_FLAG);
}
inline bool NextDisk()
{
return ButtonFlag(NEXT_FLAG);
}
inline bool PrevDisk()
{
return ButtonFlag(PREV_FLAG);
}
#else
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);
}
#endif
inline bool AutoLoad() { return KeyboardFlag(AUTOLOAD_FLAG); }
inline bool FakeReset() { return KeyboardFlag(FAKERESET_FLAG); }
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)*/;
}
inline bool BrowsePageUpLCD() { return KeyboardFlag(PAGEUP_LCD_FLAG); }
inline bool BrowseDown()
{
return KeyboardFlag(DOWN_FLAG)/* | UartFlag(DOWN_FLAG)*/ | ButtonFlag(DOWN_FLAG);
}
inline bool BrowsePageDown()
{
return KeyboardFlag(PAGEDOWN_FLAG)/* | UartFlag(PAGEDOWN_FLAG)*/;
}
inline bool BrowsePageDownLCD() { return KeyboardFlag(PAGEDOWN_LCD_FLAG); }
inline bool BrowseInsert()
{
return KeyboardFlag(INSERT_FLAG)/* | UartFlag(INSERT_FLAG)*/ | ButtonFlag(INSERT_FLAG);
}
inline bool BrowseFunction()
{
return KeyboardFlag(FUNCTION_FLAG) | ButtonFlag(FUNCTION_FLAG);
}
inline bool BrowseNewD64() { return KeyboardFlag(NEWD64_FLAG); }
inline bool BrowseAutoLoad() { return KeyboardFlag(AUTOLOAD_FLAG); }
inline bool BrowseFakeReset() { return KeyboardFlag(FAKERESET_FLAG); }
inline bool BrowseWriteProtect() { return KeyboardFlag(WRITEPROTECT_FLAG); }
inline bool MakeLSTFile() { return KeyboardFlag(MAKELST_FLAG); }
inline bool BrowseHome() { return KeyboardFlag(HOME_FLAG); }
inline bool BrowseEnd() { return KeyboardFlag(END_FLAG); }
inline char getKeyboardNumLetter() { return keyboardNumLetter; }
inline unsigned getROMOrDevice() { return inputROMOrDevice; }
// 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