mirror of https://github.com/OpenTTD/OpenTTD
Fix: VkMapping declarations violated C++ ODR rule.
parent
5a1fa18509
commit
751f595bb6
|
@ -235,7 +235,7 @@ bool VideoDriver_Allegro::ClaimMousePointer()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct VkMapping {
|
struct AllegroVkMapping {
|
||||||
uint16 vk_from;
|
uint16 vk_from;
|
||||||
byte vk_count;
|
byte vk_count;
|
||||||
byte map_to;
|
byte map_to;
|
||||||
|
@ -244,7 +244,7 @@ struct VkMapping {
|
||||||
#define AS(x, z) {x, 0, z}
|
#define AS(x, z) {x, 0, z}
|
||||||
#define AM(x, y, z, w) {x, y - x, z}
|
#define AM(x, y, z, w) {x, y - x, z}
|
||||||
|
|
||||||
static const VkMapping _vk_mapping[] = {
|
static const AllegroVkMapping _vk_mapping[] = {
|
||||||
/* Pageup stuff + up/down */
|
/* Pageup stuff + up/down */
|
||||||
AM(KEY_PGUP, KEY_PGDN, WKC_PAGEUP, WKC_PAGEDOWN),
|
AM(KEY_PGUP, KEY_PGDN, WKC_PAGEUP, WKC_PAGEDOWN),
|
||||||
AS(KEY_UP, WKC_UP),
|
AS(KEY_UP, WKC_UP),
|
||||||
|
@ -302,7 +302,7 @@ static uint32 ConvertAllegroKeyIntoMy(WChar *character)
|
||||||
int scancode;
|
int scancode;
|
||||||
int unicode = ureadkey(&scancode);
|
int unicode = ureadkey(&scancode);
|
||||||
|
|
||||||
const VkMapping *map;
|
const AllegroVkMapping *map;
|
||||||
uint key = 0;
|
uint key = 0;
|
||||||
|
|
||||||
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
||||||
|
|
|
@ -132,14 +132,14 @@
|
||||||
#define QZ_IBOOK_UP 0x3E
|
#define QZ_IBOOK_UP 0x3E
|
||||||
|
|
||||||
|
|
||||||
struct VkMapping {
|
struct CocoaVkMapping {
|
||||||
unsigned short vk_from;
|
unsigned short vk_from;
|
||||||
byte map_to;
|
byte map_to;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define AS(x, z) {x, z}
|
#define AS(x, z) {x, z}
|
||||||
|
|
||||||
static const VkMapping _vk_mapping[] = {
|
static const CocoaVkMapping _vk_mapping[] = {
|
||||||
AS(QZ_BACKQUOTE, WKC_BACKQUOTE), // key left of '1'
|
AS(QZ_BACKQUOTE, WKC_BACKQUOTE), // key left of '1'
|
||||||
AS(QZ_BACKQUOTE2, WKC_BACKQUOTE), // some keyboards have it on another scancode
|
AS(QZ_BACKQUOTE2, WKC_BACKQUOTE), // some keyboards have it on another scancode
|
||||||
|
|
||||||
|
|
|
@ -673,7 +673,7 @@ void CocoaDialog(const char *title, const char *message, const char *buttonLabel
|
||||||
BOOL interpret_keys = YES;
|
BOOL interpret_keys = YES;
|
||||||
if (down) {
|
if (down) {
|
||||||
/* Map keycode to OTTD code. */
|
/* Map keycode to OTTD code. */
|
||||||
auto vk = std::find_if(std::begin(_vk_mapping), std::end(_vk_mapping), [=](const VkMapping &m) { return m.vk_from == keycode; });
|
auto vk = std::find_if(std::begin(_vk_mapping), std::end(_vk_mapping), [=](const CocoaVkMapping &m) { return m.vk_from == keycode; });
|
||||||
uint32 pressed_key = vk != std::end(_vk_mapping) ? vk->map_to : 0;
|
uint32 pressed_key = vk != std::end(_vk_mapping) ? vk->map_to : 0;
|
||||||
|
|
||||||
if (modifiers & NSShiftKeyMask) pressed_key |= WKC_SHIFT;
|
if (modifiers & NSShiftKeyMask) pressed_key |= WKC_SHIFT;
|
||||||
|
|
|
@ -401,7 +401,7 @@ void VideoDriver_SDL::EditBoxLostFocus()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
struct VkMapping {
|
struct SDLVkMapping {
|
||||||
SDL_Keycode vk_from;
|
SDL_Keycode vk_from;
|
||||||
byte vk_count;
|
byte vk_count;
|
||||||
byte map_to;
|
byte map_to;
|
||||||
|
@ -413,7 +413,7 @@ struct VkMapping {
|
||||||
#define AS_UP(x, z) {x, 0, z, true}
|
#define AS_UP(x, z) {x, 0, z, true}
|
||||||
#define AM_UP(x, y, z, w) {x, (byte)(y - x), z, true}
|
#define AM_UP(x, y, z, w) {x, (byte)(y - x), z, true}
|
||||||
|
|
||||||
static const VkMapping _vk_mapping[] = {
|
static const SDLVkMapping _vk_mapping[] = {
|
||||||
/* Pageup stuff + up/down */
|
/* Pageup stuff + up/down */
|
||||||
AS_UP(SDLK_PAGEUP, WKC_PAGEUP),
|
AS_UP(SDLK_PAGEUP, WKC_PAGEUP),
|
||||||
AS_UP(SDLK_PAGEDOWN, WKC_PAGEDOWN),
|
AS_UP(SDLK_PAGEDOWN, WKC_PAGEDOWN),
|
||||||
|
@ -468,7 +468,7 @@ static const VkMapping _vk_mapping[] = {
|
||||||
|
|
||||||
static uint ConvertSdlKeyIntoMy(SDL_Keysym *sym, WChar *character)
|
static uint ConvertSdlKeyIntoMy(SDL_Keysym *sym, WChar *character)
|
||||||
{
|
{
|
||||||
const VkMapping *map;
|
const SDLVkMapping *map;
|
||||||
uint key = 0;
|
uint key = 0;
|
||||||
bool unprintable = false;
|
bool unprintable = false;
|
||||||
|
|
||||||
|
@ -508,7 +508,7 @@ static uint ConvertSdlKeyIntoMy(SDL_Keysym *sym, WChar *character)
|
||||||
*/
|
*/
|
||||||
static uint ConvertSdlKeycodeIntoMy(SDL_Keycode kc)
|
static uint ConvertSdlKeycodeIntoMy(SDL_Keycode kc)
|
||||||
{
|
{
|
||||||
const VkMapping *map;
|
const SDLVkMapping *map;
|
||||||
uint key = 0;
|
uint key = 0;
|
||||||
|
|
||||||
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
||||||
|
|
|
@ -403,7 +403,7 @@ bool VideoDriver_SDL::ClaimMousePointer()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct VkMapping {
|
struct SDLVkMapping {
|
||||||
#if SDL_VERSION_ATLEAST(1, 3, 0)
|
#if SDL_VERSION_ATLEAST(1, 3, 0)
|
||||||
SDL_Keycode vk_from;
|
SDL_Keycode vk_from;
|
||||||
#else
|
#else
|
||||||
|
@ -416,7 +416,7 @@ struct VkMapping {
|
||||||
#define AS(x, z) {x, 0, z}
|
#define AS(x, z) {x, 0, z}
|
||||||
#define AM(x, y, z, w) {x, (byte)(y - x), z}
|
#define AM(x, y, z, w) {x, (byte)(y - x), z}
|
||||||
|
|
||||||
static const VkMapping _vk_mapping[] = {
|
static const SDLVkMapping _vk_mapping[] = {
|
||||||
/* Pageup stuff + up/down */
|
/* Pageup stuff + up/down */
|
||||||
AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN),
|
AM(SDLK_PAGEUP, SDLK_PAGEDOWN, WKC_PAGEUP, WKC_PAGEDOWN),
|
||||||
AS(SDLK_UP, WKC_UP),
|
AS(SDLK_UP, WKC_UP),
|
||||||
|
@ -470,7 +470,7 @@ static const VkMapping _vk_mapping[] = {
|
||||||
|
|
||||||
static uint ConvertSdlKeyIntoMy(SDL_keysym *sym, WChar *character)
|
static uint ConvertSdlKeyIntoMy(SDL_keysym *sym, WChar *character)
|
||||||
{
|
{
|
||||||
const VkMapping *map;
|
const SDLVkMapping *map;
|
||||||
uint key = 0;
|
uint key = 0;
|
||||||
|
|
||||||
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
||||||
|
|
|
@ -114,7 +114,7 @@ bool VideoDriver_Win32::ClaimMousePointer()
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct VkMapping {
|
struct Win32VkMapping {
|
||||||
byte vk_from;
|
byte vk_from;
|
||||||
byte vk_count;
|
byte vk_count;
|
||||||
byte map_to;
|
byte map_to;
|
||||||
|
@ -123,7 +123,7 @@ struct VkMapping {
|
||||||
#define AS(x, z) {x, 0, z}
|
#define AS(x, z) {x, 0, z}
|
||||||
#define AM(x, y, z, w) {x, y - x, z}
|
#define AM(x, y, z, w) {x, y - x, z}
|
||||||
|
|
||||||
static const VkMapping _vk_mapping[] = {
|
static const Win32VkMapping _vk_mapping[] = {
|
||||||
/* Pageup stuff + up/down */
|
/* Pageup stuff + up/down */
|
||||||
AM(VK_PRIOR, VK_DOWN, WKC_PAGEUP, WKC_DOWN),
|
AM(VK_PRIOR, VK_DOWN, WKC_PAGEUP, WKC_DOWN),
|
||||||
/* Map letters & digits */
|
/* Map letters & digits */
|
||||||
|
@ -166,7 +166,7 @@ static const VkMapping _vk_mapping[] = {
|
||||||
|
|
||||||
static uint MapWindowsKey(uint sym)
|
static uint MapWindowsKey(uint sym)
|
||||||
{
|
{
|
||||||
const VkMapping *map;
|
const Win32VkMapping *map;
|
||||||
uint key = 0;
|
uint key = 0;
|
||||||
|
|
||||||
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
for (map = _vk_mapping; map != endof(_vk_mapping); ++map) {
|
||||||
|
|
Loading…
Reference in New Issue