aboutsummaryrefslogtreecommitdiff
path: root/src/keycode.cpp
AgeCommit message (Collapse)Author
2018-11-28Move client-specific files to 'src/client' (#7902)Quentin Bazin
Update Android.mk Remove 'src/client' from include_directories
2018-05-29Rename some keys for clarity (#7384)Wuzzy
2017-09-21keycode.cpp: use std::unordered_map for keypress cacheLoic Blot
2017-08-18Modernize various files (src/k*, src/l*)Loic Blot
* range-based for loops * code style * C++ headers instead of C headers * Default operators
2017-07-30Make direct item selection keys freely bindableWuzzy
2017-06-17Cpp11 initializers 2 (#5999)Loïc Blot
* C++11 patchset 10: continue cleanup on constructors * Drop obsolete bool MainMenuData::enable_public (setting is called with cURL in server loop) * More classes cleanup * More classes cleanup + change NULL tests to boolean tests
2017-02-18Use the `ARRLEN` macro in more places and remove an unused macro. (#5260)red-001
2016-10-28Add missing keyname_to_keycode function (needed on Android)sfan5
When rewriting keycode.cpp I overlooked this function, fixes #4683 completely
2016-09-25Rewrite keycode.cpp (Keycode handling & names)sfan5
2015-08-07Fix camera updates being toggled by N key in release mode (#2762)Kahrl
2015-04-01Move globals from main.cpp to more sane locationsCraig Robbins
Move debug streams to log.cpp|h Move GUI-related globals to clientlauncher Move g_settings and g_settings_path to settings.cpp|h Move g_menuclouds to clouds.cpp|h Move g_profiler to profiler.cpp|h
2015-03-07For usages of assert() that are meant to persist in Release builds (when ↵Craig Robbins
NDEBUG is defined), replace those usages with persistent alternatives
2015-02-21Move hex.h to util/Loic Blot
2014-09-21Split settings into seperate source and header filesShadowNinja
This also cleans up settings a bit
2014-06-29Add support for Android 2.3+sapier
There have been plenty of ppl involved in creating this version. I don't wanna mention names as I'm sure I'd forget someone so I just tell where help has been done: - The partial android versions done by various ppl - Testing on different android devices - reviewing code (especially the in core changes) - testing controls - reviewing texts A big thank you to everyone helping this to be completed!
2013-03-11Migrate to STL containers/algorithms.Ilya Zhuravlev
2013-02-24Update Copyright YearsSfan5
2013-02-24Change Minetest-c55 to MinetestPilzAdam
2012-12-23Fix keycodes (#325)Ilya Zhuravlev
2012-09-01Fix GUIKeyChangeMenu so that '/' can be inserted on a finnish keyboardPerttu Ahola
2012-09-01Don't crash in "unexpected multibyte character"; just print it in log. ↵Perttu Ahola
Github #222
2012-07-21Fix wctomb useAndreas Zwinkau
wctomb(NULL, _) returns "nonzero if the encoding has nontrivial shift state, or zero if the encoding is stateless." I assume the intentation was to get the size of the target buffer. Use MB_CUR_MAX for this.
2012-07-21Remove mbtowc warningsAndreas Zwinkau
As mbtowc(_, _, 1) reads at most one char, everything other than a return value of 1 is an error. Since the input strings are static, an assert protects against future changes. Likewise, wctomb should currently never encounter a character, which actually needs a multibyte representation.
2012-06-05Switch the license to be LGPLv2/later, with small parts still remaining as ↵Perttu Ahola
GPLv2/later, by agreement of major contributors
2012-01-06Fix key change menu a bitPerttu Ahola
2011-10-12Header file tweaking; mainly for speedPerttu Ahola
2011-08-22Overhaul the input systemGiuseppe Bilotta
This allows us to map the keys which are not considered in irrlicht's EKEY_CODE system, such as \, [, /, ] etc.
2011-08-13Fix keycode_to_keyname return valueGiuseppe Bilotta
2011-08-12Clean up key names handlingGiuseppe Bilotta
Constify keycode and move the static array of localizable names from the guiKeyChangeMenu header to the implementation file, changing its name.
2011-06-26Merge branch 'master' of https://github.com/erlehmann/minetest-delta.git ↵Sebastian Rühl
into upstream_merge Conflicts: .gitignore CMakeLists.txt data/heart.png src/CMakeLists.txt src/game.cpp src/guiMainMenu.cpp src/inventory.cpp src/map.cpp src/mapblock.cpp src/mapnode.cpp src/mapnode.h src/materials.cpp src/server.cpp Signed-off-by: Sebastian Rühl <bahamada_basti@yahoo.de>
2011-06-01added new submenu for key assignmentteddydestodes
configwriting/saving isn't complete and will break your config if you use fancy keys
2011-05-14Added key configuration in the configuration file.Perttu Ahola