aboutsummaryrefslogtreecommitdiff
path: root/src/client/clientlauncher.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Drop --videomodes, fullscreen_bpp and high_precision_fpu settingssfan52021-06-161-1/+0
| | | | These have been pointless for a while.
* refacto: RenderingEngine is now better hiddenLoic Blot2021-05-031-0/+1
| | | | | | | | | | * 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
* Cleanup ClientLauncher structure (#10160)SmallJoker2020-07-141-19/+4
| | | Remove duplicated variables and unify the startup data into a new (inherited) struct.
* C++ modernize: Pragma once (#6264)Loïc Blot2017-08-171-4/+1
| | | | * Migrate cpp headers to pragma once
* Modernize client code (#6250)Loïc Blot2017-08-151-1/+1
| | | | | | | | * Various code style fixes * Use range based for loops * Use empty instead of empty objects * Use C++11 default keyword for trivial constructors and destructors * Drop some useless casts * Use emplace_back instead of push_back to improve performance of some vectors push
* Fix crash when using --go in command lineJuozas Pocius2017-08-031-1/+1
|
* Isolate irrlicht references and use a singleton (#6041)Loïc Blot2017-06-261-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add Device3D class which will contain IrrlichtDevice interface move getSupportedVideoDrivers to Device3D Add Device3D singleton & use it in various places Rename Device3D to Rendering engine & add helper functions to various device pointers More singleton work RenderingEngine owns draw_load_screen move draw functions to RenderingEngine Reduce IrrlichtDevice exposure and guienvironment RenderingEngine: Expose get_timer_time() to remove device from guiEngine Make irrlichtdevice & scene manager less exposed * Code style fixes * Move porting::getVideoDriverName, getVideoDriverFriendlyName, getDisplayDensity, getDisplaySize to RenderingEngine Fix XORG_USED macro -> RenderingEngine + create_engine_device from RenderingEngine constructor directly * enum paralax => enum parallax
* C++11 cleanup on constructors dir client (#6012)Vincent Glize2017-06-211-36/+18
| | | | * C++11 cleanup on constructors dir client
* Clean up getTime helpersShadowNinja2017-04-281-36/+0
| | | | | | This increases size of the getTime return values to 64 bits. It also removes the TimeGetter classes since the getTime functions are now very precise.
* Add Joystick type detection and Xbox controller supportrubenwardy2017-04-061-0/+1
| | | | | | * Add joystick type detection (with joystick_type setting to override it) * Fix multiple joysticks from interfering with each other by only reading from one (add joystick_id setting) * Add support for Xbox controllers
* Refactor loggingShadowNinja2015-10-141-2/+2
| | | | | | | | | - Add warning log level - Change debug_log_level setting to enumeration string - Map Irrlicht log events to MT log events - Encapsulate log_* functions and global variables into a class, Logger - Unify dstream with standard logging mechanism - Unify core.debug() with standard core.log() script API
* Optional reconnect functionalityest312015-07-231-2/+2
| | | | | | Enable the server to request the client to reconnect. This can be done with the now extended minetest.request_shutdown([reason], [reconnect]) setting.
* Change error_message from wstring to stringShadowNinja2015-03-271-1/+1
| | | | This removes a lot of narrow/wide conversions where a wide string was never used.
* main.cpp rework * Move ClientLauncher class to a dedicated file * ↵Loic Blot2015-02-121-0/+129
ClientLauncher now owns print_video_modes and speed_tests functions (they are only called by him) * Move GameParams to shared/gameparams.h because it's shared between server and client and launcher need to know it * Move InputHandlers class to client/inputhandler.h * Cleanup includes