diff options
| author | Rémi Verschelde | 2017-01-08 21:29:57 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2017-01-08 21:33:37 +0100 |
| commit | 5bfa4227b309062b3ec9651a5d0c1e560a3f9863 (patch) | |
| tree | 0d8ad4e601cda85175e230a8f595aae6ea3b88c0 | |
| parent | c2310b41fa71ce94c2cc127c55b39b8ba07ab4c3 (diff) | |
| download | godot-5bfa4227b309062b3ec9651a5d0c1e560a3f9863.tar.gz godot-5bfa4227b309062b3ec9651a5d0c1e560a3f9863.tar.zst godot-5bfa4227b309062b3ec9651a5d0c1e560a3f9863.zip | |
Finish replacement of joystick by joypad
Some parts were forgotten in 547a577.
| -rw-r--r-- | platform/osx/SCsub | 2 | ||||
| -rw-r--r-- | platform/osx/joypad_osx.cpp (renamed from platform/osx/joystick_osx.cpp) | 3 | ||||
| -rw-r--r-- | platform/osx/joypad_osx.h (renamed from platform/osx/joystick_osx.h) | 0 | ||||
| -rw-r--r-- | platform/osx/os_osx.mm | 6 | ||||
| -rw-r--r-- | platform/uwp/SCsub | 2 | ||||
| -rw-r--r-- | platform/uwp/joypad_uwp.cpp (renamed from platform/uwp/joystick_uwp.cpp) | 2 | ||||
| -rw-r--r-- | platform/uwp/joypad_uwp.h (renamed from platform/uwp/joystick_uwp.h) | 2 | ||||
| -rw-r--r-- | platform/windows/SCsub | 2 | ||||
| -rw-r--r-- | platform/windows/joypad.cpp (renamed from platform/windows/joystick.cpp) | 0 | ||||
| -rw-r--r-- | platform/windows/joypad.h (renamed from platform/windows/joystick.h) | 0 | ||||
| -rw-r--r-- | platform/x11/SCsub | 2 | ||||
| -rw-r--r-- | platform/x11/joypad_linux.cpp (renamed from platform/x11/joystick_linux.cpp) | 4 | ||||
| -rw-r--r-- | platform/x11/joypad_linux.h (renamed from platform/x11/joystick_linux.h) | 3 | ||||
| -rw-r--r-- | platform/x11/os_x11.h | 2 | ||||
| -rw-r--r-- | tools/editor/icons/2x/icon_joypad.png (renamed from tools/editor/icons/2x/icon_joystick.png) | bin | 380 -> 380 bytes | |||
| -rw-r--r-- | tools/editor/icons/icon_joypad.png (renamed from tools/editor/icons/icon_joystick.png) | bin | 239 -> 239 bytes | |||
| -rw-r--r-- | tools/editor/icons/source/icon_joypad.svg (renamed from tools/editor/icons/source/icon_joystick.svg) | 2 |
17 files changed, 17 insertions, 15 deletions
diff --git a/platform/osx/SCsub b/platform/osx/SCsub index c8e0e1761..00f23687c 100644 --- a/platform/osx/SCsub +++ b/platform/osx/SCsub @@ -9,7 +9,7 @@ files = [ 'sem_osx.cpp', # 'context_gl_osx.cpp', 'dir_access_osx.mm', - 'joystick_osx.cpp', + 'joypad_osx.cpp', ] env.Program('#bin/godot', files) diff --git a/platform/osx/joystick_osx.cpp b/platform/osx/joypad_osx.cpp index 18c714e92..4a8744d3a 100644 --- a/platform/osx/joystick_osx.cpp +++ b/platform/osx/joypad_osx.cpp @@ -1,5 +1,5 @@ /*************************************************************************/ -/* joypad_osx.cpp */ +/* joypad_osx.cpp */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ @@ -27,6 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "joypad_osx.h" + #include <machine/endian.h> #define GODOT_JOY_LOOP_RUN_MODE CFSTR("GodotJoypad") diff --git a/platform/osx/joystick_osx.h b/platform/osx/joypad_osx.h index aafd82880..aafd82880 100644 --- a/platform/osx/joystick_osx.h +++ b/platform/osx/joypad_osx.h diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm index 548d33ebf..a66f6abba 100644 --- a/platform/osx/os_osx.mm +++ b/platform/osx/os_osx.mm @@ -1122,7 +1122,7 @@ void OS_OSX::initialize(const VideoMode& p_desired,int p_video_driver,int p_audi physics_2d_server->init(); input = memnew( InputDefault ); - joystick_osx = memnew( JoystickOSX ); + joypad_osx = memnew( JoypadOSX ); _ensure_data_dir(); @@ -1165,7 +1165,7 @@ void OS_OSX::finalize() { spatial_sound_2d_server->finish(); memdelete(spatial_sound_2d_server); - memdelete(joystick_osx); + memdelete(joypad_osx); memdelete(input); memdelete(sample_manager); @@ -1738,7 +1738,7 @@ void OS_OSX::run() { while (!force_quit) { process_events(); // get rid of pending events - last_id = joystick_osx->process_joysticks(last_id); + last_id = joypad_osx->process_joypads(last_id); if (Main::iteration()==true) break; }; diff --git a/platform/uwp/SCsub b/platform/uwp/SCsub index 430d4ef9e..0167ea9e0 100644 --- a/platform/uwp/SCsub +++ b/platform/uwp/SCsub @@ -8,7 +8,7 @@ files = [ '#platform/windows/packet_peer_udp_winsock.cpp', '#platform/windows/stream_peer_winsock.cpp', '#platform/windows/key_mapping_win.cpp', - 'joystick_uwp.cpp', + 'joypad_uwp.cpp', 'gl_context_egl.cpp', 'app.cpp', 'os_uwp.cpp', diff --git a/platform/uwp/joystick_uwp.cpp b/platform/uwp/joypad_uwp.cpp index e26b81bb6..7f0837d7b 100644 --- a/platform/uwp/joystick_uwp.cpp +++ b/platform/uwp/joypad_uwp.cpp @@ -1,5 +1,5 @@ /*************************************************************************/ -/* joypad_uwp.cpp */ +/* joypad_uwp.cpp */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ diff --git a/platform/uwp/joystick_uwp.h b/platform/uwp/joypad_uwp.h index 7e15e5ddb..90505b409 100644 --- a/platform/uwp/joystick_uwp.h +++ b/platform/uwp/joypad_uwp.h @@ -1,5 +1,5 @@ /*************************************************************************/ -/* joypad_uwp.h */ +/* joypad_uwp.h */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ diff --git a/platform/windows/SCsub b/platform/windows/SCsub index 32c23b906..ae8c07384 100644 --- a/platform/windows/SCsub +++ b/platform/windows/SCsub @@ -11,7 +11,7 @@ common_win = [ "tcp_server_winsock.cpp", "packet_peer_udp_winsock.cpp", "stream_peer_winsock.cpp", - "joystick.cpp", + "joypad.cpp", ] restarget = "godot_res" + env["OBJSUFFIX"] diff --git a/platform/windows/joystick.cpp b/platform/windows/joypad.cpp index 932403114..932403114 100644 --- a/platform/windows/joystick.cpp +++ b/platform/windows/joypad.cpp diff --git a/platform/windows/joystick.h b/platform/windows/joypad.h index 8875e6d0c..8875e6d0c 100644 --- a/platform/windows/joystick.h +++ b/platform/windows/joypad.h diff --git a/platform/x11/SCsub b/platform/x11/SCsub index 0defd4f02..4ae8ac07f 100644 --- a/platform/x11/SCsub +++ b/platform/x11/SCsub @@ -7,7 +7,7 @@ common_x11 = [\ "context_gl_x11.cpp",\ "os_x11.cpp",\ "key_mapping_x11.cpp",\ - "joystick_linux.cpp",\ + "joypad_linux.cpp",\ ] env.Program('#bin/godot', ['godot_x11.cpp'] + common_x11) diff --git a/platform/x11/joystick_linux.cpp b/platform/x11/joypad_linux.cpp index bef2ef3fc..f07d34b5e 100644 --- a/platform/x11/joystick_linux.cpp +++ b/platform/x11/joypad_linux.cpp @@ -1,5 +1,5 @@ /*************************************************************************/ -/* joypad_linux.cpp */ +/* joypad_linux.cpp */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ @@ -30,7 +30,7 @@ //author: Andreas Haas <hondres, liugam3@gmail.com> #ifdef JOYDEV_ENABLED -#include "joystick_linux.h" +#include "joypad_linux.h" #include <linux/input.h> #include <unistd.h> diff --git a/platform/x11/joystick_linux.h b/platform/x11/joypad_linux.h index ebd1e8210..92687995f 100644 --- a/platform/x11/joystick_linux.h +++ b/platform/x11/joypad_linux.h @@ -1,5 +1,5 @@ /*************************************************************************/ -/* joypad_linux.h */ +/* joypad_linux.h */ /*************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ @@ -30,6 +30,7 @@ //author: Andreas Haas <hondres, liugam3@gmail.com> #ifndef JOYPAD_LINUX_H #define JOYPAD_LINUX_H + #ifdef JOYDEV_ENABLED #include "main/input_default.h" #include "os/thread.h" diff --git a/platform/x11/os_x11.h b/platform/x11/os_x11.h index 4f9ff7129..66974da3c 100644 --- a/platform/x11/os_x11.h +++ b/platform/x11/os_x11.h @@ -48,7 +48,7 @@ #include "servers/physics_2d/physics_2d_server_sw.h" #include "servers/physics_2d/physics_2d_server_wrap_mt.h" #include "main/input_default.h" -#include "joystick_linux.h" +#include "joypad_linux.h" #include <X11/keysym.h> #include <X11/Xlib.h> diff --git a/tools/editor/icons/2x/icon_joystick.png b/tools/editor/icons/2x/icon_joypad.png Binary files differindex 285d04854..285d04854 100644 --- a/tools/editor/icons/2x/icon_joystick.png +++ b/tools/editor/icons/2x/icon_joypad.png diff --git a/tools/editor/icons/icon_joystick.png b/tools/editor/icons/icon_joypad.png Binary files differindex 5df471109..5df471109 100644 --- a/tools/editor/icons/icon_joystick.png +++ b/tools/editor/icons/icon_joypad.png diff --git a/tools/editor/icons/source/icon_joystick.svg b/tools/editor/icons/source/icon_joypad.svg index 539506017..fb8446291 100644 --- a/tools/editor/icons/source/icon_joystick.svg +++ b/tools/editor/icons/source/icon_joypad.svg @@ -18,7 +18,7 @@ inkscape:export-filename="/home/djrm/Projects/godot/tools/editor/icons/icon_key.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90" - sodipodi:docname="icon_joystick.svg"> + sodipodi:docname="icon_joypad.svg"> <defs id="defs4" /> <sodipodi:namedview |
