Home
last modified time | relevance | path

Searched refs:joymap (Results 1 – 21 of 21) sorted by relevance

/dports/games/libretro-fuse/fuse-libretro-8b51f87/src/
H A Dlibretro.c115 int joymap[16]; variable
413 joymap[ RETRO_DEVICE_ID_JOYPAD_UP ] = spectrum_keys_map[option]; in update_variables()
425 joymap[ RETRO_DEVICE_ID_JOYPAD_A ] = spectrum_keys_map[option]; in update_variables()
428 joymap[ RETRO_DEVICE_ID_JOYPAD_B ] = spectrum_keys_map[option]; in update_variables()
431 joymap[ RETRO_DEVICE_ID_JOYPAD_X ] = spectrum_keys_map[option]; in update_variables()
434 joymap[ RETRO_DEVICE_ID_JOYPAD_Y ] = spectrum_keys_map[option]; in update_variables()
437 joymap[ RETRO_DEVICE_ID_JOYPAD_L ] = spectrum_keys_map[option]; in update_variables()
440 joymap[ RETRO_DEVICE_ID_JOYPAD_R ] = spectrum_keys_map[option]; in update_variables()
443 joymap[ RETRO_DEVICE_ID_JOYPAD_L2 ] = spectrum_keys_map[option]; in update_variables()
446 joymap[ RETRO_DEVICE_ID_JOYPAD_R2 ] = spectrum_keys_map[option]; in update_variables()
[all …]
H A Dexterns.h52 extern int joymap[16];
/dports/games/libretro-fmsx/fmsx-libretro-c2c26b1/
H A Dlibretro.c244 keymap_t joymap[] = variable
798 for (i = 0; i < sizeof(joymap) / sizeof(keymap_t); i++) in retro_run()
807 for (i = 0; i < sizeof(joymap) / sizeof(keymap_t); i++) in retro_run()
816 for (i = 0; i < sizeof(joymap) / sizeof(keymap_t); i++) in retro_run()
817 if (joypad_bits[0] & (1 << joymap[i].retro)) in retro_run()
818 JOY_SET(joymap[i].fmsx, 0); in retro_run()
828 for (i = 0; i < sizeof(joymap) / sizeof(keymap_t); i++) in retro_run()
830 if (joypad_bits[1] & (1 << joymap[i].retro)) in retro_run()
831 JOY_SET(joymap[i].fmsx, 1); in retro_run()
/dports/games/renpy/renpy-7.4.11-sdk/renpy/common/_layout/
H A Dclassic_joystick_preferences.rpym72 …layout.button(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "prefs_js", cli…
81 if key in _preferences.joymap:
82 del _preferences.joymap[key]
84 _preferences.joymap[key] = binding
114 …layout.button(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "js_prefs", cli…
/dports/games/libretro-fuse/fuse-libretro-8b51f87/src/compat/
H A Dui.c24 …if (index < (sizeof(joymap) / sizeof(joymap[0])) && port == 0 && joymap[index] != INPUT_KEY_NONE) { in translate()
26 return joymap[index]; in translate()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/arch/sdl/syllable-files/
H A DREADME101 (default keys/joymap shown)
147 (default keys/joymap shown)
186 (default keys/joymap shown)
249 - joymap (sdl-joymap-MACHINE.vjm, "Load/Save joystick map")
/dports/emulators/hugo/hugo-2.12/
H A Dsys_inp.h83 } joymap; typedef
H A Dosd_keyboard.c387 sdl_config_joypad_axis (short which, joymap axis, UInt16 * bad_axes, in sdl_config_joypad_axis()
461 sdl_config_joypad_button (short which, joymap button, UInt16 * bad_buttons, in sdl_config_joypad_button()
/dports/games/libretro-beetle_wswan/beetle-wswan-libretro-5b03d1b/
H A Dlibretro.cpp789 bool joymap = (rotate_joymap == 2) ? rotate_tall : (rotate_joymap ? true : false); in update_input() local
792 input_buf |= map[joymap][i] != -1u && in update_input()
793 input_state_cb(0, RETRO_DEVICE_JOYPAD, 0, map[joymap][i]) ? (1 << i) : 0; in update_input()
/dports/games/renpy/renpy-7.4.11-sdk/renpy/common/_compat/
H A Dpreferences.rpym397 …_button_factory(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "prefs_js", c…
407 if key in _preferences.joymap:
408 del _preferences.joymap[key]
410 _preferences.joymap[key] = binding
448 …_button_factory(_(label) + " - " + _(_preferences.joymap.get(key, u"Not Assigned")), "prefs_js", c…
/dports/emulators/mess/mame-mame0226/src/emu/
H A Dinputdev.cpp942 joystick_map &joymap = downcast<input_device_joystick &>(m_device).joymap(); in read_as_switch() local
943 …return (joymap.update(xaxis_item->current(), yaxis_item->current()) >> (modifier - ITEM_MODIFIER_L… in read_as_switch()
H A Dinputdev.h247 joystick_map &joymap() { return m_joymap; } in joymap() function
/dports/emulators/mame/mame-mame0226/src/emu/
H A Dinputdev.cpp942 joystick_map &joymap = downcast<input_device_joystick &>(m_device).joymap(); in read_as_switch() local
943 …return (joymap.update(xaxis_item->current(), yaxis_item->current()) >> (modifier - ITEM_MODIFIER_L… in read_as_switch()
H A Dinputdev.h247 joystick_map &joymap() { return m_joymap; } in joymap() function
/dports/emulators/stella/stella-6.6/src/common/
H A DPJoystickHandler.cxx77 string joymap, joyname; in convertLegacyMapping() local
79 getline(buf, joymap, CTRL_DELIM); // event list size, ignore in convertLegacyMapping()
83 while(getline(buf, joymap, CTRL_DELIM)) in convertLegacyMapping()
85 istringstream namebuf(joymap); in convertLegacyMapping()
88 convertedMapping.push_back(PhysicalJoystick::convertLegacyMapping(joymap, joyname)); in convertLegacyMapping()
/dports/emulators/mess/mame-mame0226/docs/source/commandline/
H A Dcommandline-all.rst3073 **-joystick_map** *<map>* / **-joymap** *<map>*
3136 …| **-joymap 777888999.777888999.777888999.444555666.444555666.444555666.111222333.111222333.111222…
3148 **-joymap 7778...4445**)
3195 …| **-joymap s8888888s.4s88888s6.44s888s66.444555666.444555666.444555666.44s222s66.4s22222s6.s22222…
3202 | **-joymap s8.4s8.44s8.4445** |
/dports/emulators/mame/mame-mame0226/docs/source/commandline/
H A Dcommandline-all.rst3073 **-joystick_map** *<map>* / **-joymap** *<map>*
3136 …| **-joymap 777888999.777888999.777888999.444555666.444555666.444555666.111222333.111222333.111222…
3148 **-joymap 7778...4445**)
3195 …| **-joymap s8888888s.4s88888s6.44s888s66.444555666.444555666.444555666.44s222s66.4s22222s6.s22222…
3202 | **-joymap s8.4s8.44s8.4445** |
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/doc/
H A Dvice.info10124 '-joymap <name>'
21927 * -joymap: SDL-specific features.
H A Dvice.texi13027 @findex -joymap
13028 @item -joymap <name>
/dports/emulators/vice/vice-3.5/doc/
H A Dvice.texi13887 @findex -joymap
13888 @item -joymap <name>
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/
H A DChangeLog1718 * data/C64/Makefile.am: also add the joymap to the makefile :)