aboutsummaryrefslogtreecommitdiff
path: root/src/gui (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Re-order sound-related code (#12382)SmallJoker2022-06-202-3/+3
| | | | | | | | Dropped ServerSoundParams -> moved to ServerPlayingSound. This gets rid of the duplicated 'fade' and 'pitch' values on server-side where only one was used anyway. SimpleSoundSpec is the basic sound without positional information, hence 'loop' is included. Recursively added PROTOCOL_VERSION to most functions to reduce the versioning mess in the future. Per-type version numbers are kept for now as a safety rope in a special case.
* Fix Android input box crashROllerozxa2022-06-141-5/+0
|
* Add register dialog to separate login/register (#12185)rubenwardy2022-06-054-332/+3
| | | | | | | | | | New users find Minetest's account system confusing. This change moves username/password to a new dialog, with login and register buttons added to the Join Game tab. The old registration confirmation dialog is removed in favour of the new dialog. Fixes #8138
* Improve a translation stringsfan52022-05-291-4/+2
| | | | fixes #11442
* Replace all uses of core::list with std::list (#12313)paradust72022-05-2215-146/+34
|
* Remove confusing message in keybindings menusavilli2022-05-171-1/+1
|
* FormspecMenu: make drawing of backgrounds less hacky (#9517)DS2022-02-223-21/+15
|
* Rework drawtime and related timekeeping code to use microsecondssfan52022-01-271-3/+12
|
* Formspec: Fix bgcolor and set_focus checksSmallJoker2022-01-091-2/+2
|
* Fully remove bitmap font support (#11863)sfan52022-01-083-30/+18
| | | Freetype is now a build requirement.
* Base formspec coordinate size on padded screensizeVincent Robinson2022-01-041-1/+1
|
* Add padding[] element to formspecs (#11821)Vincent Robinson2021-12-302-15/+76
|
* Formspec: Unify argument checks (#11851)SmallJoker2021-12-292-1111/+1043
|
* Remove unused (de)serializeAttributes() methodsROllerozxa2021-12-298-224/+0
|
* Allow for Game-Specific Menu Music (#11241)ExeVirus2021-11-221-10/+16
|
* Fix crash on hypertext[] with not enough partsrubenwardy2021-10-251-2/+3
| | | | | | | | The length check used < rather than <=, disabling the check when the formspec version matches the client's FORMSPEC_API_VERSION. Additionally, it was possible to have fewer parts than required if the formspec version was greater than the client's FORMSPEC_API_VERSION.
* Various code improvementsSmallJoker2021-09-271-1/+1
| | | | | * Camera: Fix division by 0 after view bobbing * Remove ignored constness * Connection: Improve window size range limits
* Touch UI support for desktop builds (#10729)TheBrokenRail2021-09-269-29/+54
|
* Chop game background in mainmenu (#10796)Lars Müller2021-09-141-1/+14
|
* Make sure relevant std::stringstreams are set to binarysfan52021-09-112-8/+3
|
* Async-related script cleanupssfan52021-08-282-11/+0
|
* Use utf-8 for the Irrlicht clipboard (#11538)DS2021-08-232-11/+9
|
* Fix GUIEditBoxWithScrollBar using a smaller steps than intlGUIEditBox (#11519)DS2021-08-081-2/+13
|
* Gettext support on Android (#11435)Pevernow2021-08-081-1/+1
| | | | Co-authored-by: sfan5 <sfan5@live.de> Co-authored-by: =?UTF-8?q?Olivier=20Samyn=20=F0=9F=8E=BB?= <code@oleastre.be>
* Remove unused header includeshecks2021-07-212-3/+0
|
* Perform some quality assurance for translation strings (#11375)Wuzzy2021-06-231-6/+9
|
* Make chat web links clickable (#11092)pecksin2021-06-202-2/+104
| | | If enabled in minetest.conf, provides colored, clickable (middle-mouse or ctrl-left-mouse) weblinks in chat output, to open the OS' default web browser.
* Fix background color of formspec text fieldssfan52021-05-301-4/+3
|
* GUIEditBox: Allow selecting and copying read-only textsSmallJoker2021-05-221-7/+6
|
* refacto: remove get_gui_env & draw_load_screen from RenderingEngine singletonLoic Blot2021-05-033-8/+11
|
* refacto: RenderingEngine::get_scene_manager() is now not callable from singletonLoic Blot2021-05-031-1/+1
| | | | | | This permits to make evidence that we have some bad object passing on various code parts. I fixed majority of them to reduce the scope of passed objects Unfortunately, for some edge cases i should have to expose ISceneManager from client, this should be fixed in the future when our POO will be cleaner client side (we have a mix of rendering and processing in majority of the client objects, it works but it's not clean)
* refacto: RenderingEngine is now better hiddenLoic Blot2021-05-032-14/+19
| | | | | | | | | | * No more access to the singleton instance from everywhere (RenderingEngine::get_instance dropped) * RenderingEngine::get_timer_time is now non static * RenderingEngine::draw_menu_scene is now non static * RenderingEngine::draw_scene is now non static * RenderingEngine::{initialize,finalize} are now non static * RenderingEngine::run is now non static * RenderingEngine::getWindowSize now have a static helper. It was mandatory to hide the global get_instance access
* Add a key to toggle map block bounds (#11172)Seth Traverse2021-04-201-33/+35
| | | | It's often useful to know where the map block boundaries are for doing server admin work and the like. Adds three modes: single mapblock, range of 5, and disabled.
* Make edit boxes respond to string input (IME) (#11156)yw052021-04-054-28/+52
| | | Make edit boxes respond to string input events (introduced in minetest/irrlicht#23) that are usually triggered by entering text with an IME.
* Reserve vectors before pushing and other code quality changes (#11161)sfan52021-04-052-5/+5
|
* CGUITTFont optimizations (#11136)sfan52021-04-021-1/+0
|
* Fix segfault for model[] without animation speedJean-Patrick Guerrero2021-03-211-2/+2
|
* Drop old text input workarounds (#11089)sfan52021-03-197-745/+13
| | | | | * Drop unused intlGUIEditBox * Drop unnecessary Linux text input workarounds
* GUIScene: Clear depth buffer + replace deprecated clearZBuffer callsJean-Patrick Guerrero2021-03-163-4/+16
|
* Restore Irrlicht 1.9 supportsfan52021-03-092-12/+30
|
* Use "Aux1" key name consistently everywhereWuzzy2021-02-243-16/+16
|
* Fix animation_image support in scroll containersJean-Patrick Guerrero2021-02-081-1/+1
|
* Rewrite touch event conversion (#10636)Vitaliy2021-02-072-76/+104
|
* Fix memory leak detected by address sanitizer (#10896)k.h.lai2021-02-021-2/+1
|
* Fix list spacing and size (again) (#10869)Vincent Robinson2021-02-022-22/+18
|
* Drop wide/narrow conversion functionssfan52021-02-021-2/+1
| | | | | | | | | The only valid usecase for these is interfacing with OS APIs that want a locale/OS-specific multibyte encoding. But they weren't used for that anywhere, instead UTF-8 is pretty much assumed when it comes to that. Since these are only a potential source of bugs and do not fulfil their purpose at all, drop them entirely.
* Settings: Proper priority hierarchySmallJoker2021-01-291-1/+1
| | | | | | | | | | | Remove old defaults system Introduce priority-based fallback list Use new functions for map_meta special functions Change groups to use end tags Unittest changes: * Adapt unittest to the new code * Compare Settings objects
* Include irrlichttypes.h first to work around Irrlicht#433 (#10872)Vitaliy2021-01-282-0/+2
| | | Fixes the PcgRandom::PcgRandom linker issue, caused by inconsistent data type definition.
* Fix formspec list spacing (#10861)Vincent Robinson2021-01-231-4/+7
|
* Make hypertext and textarea have proper scroll event propagation. (#10860)Vincent Robinson2021-01-232-1/+2
|