├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── assets ├── fonts │ ├── DejaVuSansMono_15pt.png │ ├── DejaVuSans_15pt.png │ └── DejaVuSans_15pt_border.png ├── logo.png ├── scripts │ ├── candy.lua │ ├── coins.lua │ ├── constants.lua │ ├── hidden.lua │ ├── keys_doors.lua │ ├── main.lua │ ├── smileys.lua │ ├── teleporter.lua │ ├── unittest.lua │ └── unittest_server.lua ├── sounds │ ├── coin.mp3 │ └── piano_c4.mp3 └── textures │ ├── empty.png │ ├── god_aura.png │ ├── icon_chat.png │ ├── icon_leave.png │ ├── icon_minimap.png │ ├── missing_texture.png │ ├── pack_action.png │ ├── pack_basic.png │ ├── pack_beta.png │ ├── pack_boost.png │ ├── pack_candy.png │ ├── pack_coins.png │ ├── pack_dev_blocks.png │ ├── pack_doors.png │ ├── pack_factory.png │ ├── pack_hidden.png │ ├── pack_keys.png │ ├── pack_music.png │ ├── pack_owner.png │ ├── pack_simple.png │ ├── pack_spike.png │ ├── pack_spring.png │ ├── pack_switches.png │ ├── pack_teleporter.png │ ├── pack_timed_gates.png │ ├── selected_30px.png │ ├── shadow.png │ └── smileys.png ├── cmake ├── FindENet.cmake ├── FindLuaJIT.cmake └── SetVersion.cmake ├── doc ├── DIRECTION.md ├── auth.drawio.svg ├── coordinate_system.drawio.svg ├── events.drawio.svg ├── lua_api.md ├── media.drawio.png └── structure.drawio.png ├── misc ├── AppRun.sh ├── licenses │ ├── enet.txt │ ├── irrlichtmt.txt │ └── sqlite3.txt └── pack.sh ├── screenshot.jpeg ├── src ├── CMakeLists.txt ├── client │ ├── CMakeLists.txt │ ├── client.cpp │ ├── client.h │ ├── client_packethandler.cpp │ ├── clientmedia.cpp │ ├── clientmedia.h │ ├── clientscript.cpp │ ├── clientscript.h │ ├── gameevent.cpp │ ├── gameevent.h │ ├── hudelement.cpp │ ├── hudelement.h │ ├── localplayer.cpp │ └── localplayer.h ├── core │ ├── CMakeLists.txt │ ├── auth.cpp │ ├── auth.h │ ├── blockmanager.cpp │ ├── blockmanager.h │ ├── blockmanager_reg.cpp │ ├── blockparams.cpp │ ├── blockparams.h │ ├── chatcommand.cpp │ ├── chatcommand.h │ ├── compressor.cpp │ ├── compressor.h │ ├── connection.cpp │ ├── connection.h │ ├── eeo_converter.cpp │ ├── eeo_converter.h │ ├── environment.cpp │ ├── environment.h │ ├── filesystem.cpp │ ├── filesystem.h │ ├── friends.h │ ├── logger.cpp │ ├── logger.h │ ├── macros.h │ ├── mediamanager.cpp │ ├── mediamanager.h │ ├── network_enums.h │ ├── operators.cpp │ ├── operators.h │ ├── packet.cpp │ ├── packet.h │ ├── player.cpp │ ├── player.h │ ├── playerflags.cpp │ ├── playerflags.h │ ├── script │ │ ├── CMakeLists.txt │ │ ├── playerref.cpp │ │ ├── playerref.h │ │ ├── script.cpp │ │ ├── script.h │ │ ├── script_callbacks.cpp │ │ ├── script_environment.cpp │ │ ├── script_player.cpp │ │ ├── script_registration.cpp │ │ ├── script_utils.cpp │ │ ├── script_utils.h │ │ ├── scriptevent.cpp │ │ ├── scriptevent.h │ │ └── scriptevent_fwd.h │ ├── sha3.c │ ├── sha3.h │ ├── smileydef.h │ ├── timer.h │ ├── types.h │ ├── utils.cpp │ ├── utils.h │ ├── world.cpp │ ├── world.h │ ├── worldmeta.cpp │ └── worldmeta.h ├── gui │ ├── CBulkSceneNode.cpp │ ├── CBulkSceneNode.h │ ├── CMakeLists.txt │ ├── connect.cpp │ ├── connect.h │ ├── game_commands.cpp │ ├── game_commands.h │ ├── gameplay │ │ ├── blockselector.cpp │ │ ├── blockselector.h │ │ ├── gameplay.cpp │ │ ├── gameplay.h │ │ ├── minimap.cpp │ │ ├── minimap.h │ │ ├── smileyselector.cpp │ │ ├── smileyselector.h │ │ ├── world_render.cpp │ │ └── world_render.h │ ├── gui.cpp │ ├── gui.h │ ├── guilayout │ │ ├── guilayout.cpp │ │ ├── guilayout.h │ │ ├── guilayout_irrlicht.cpp │ │ └── guilayout_irrlicht.h │ ├── guiscript.cpp │ ├── guiscript.h │ ├── loading.cpp │ ├── loading.h │ ├── lobby.cpp │ ├── lobby.h │ ├── minimp3.h │ ├── minimp3_ex.h │ ├── register.cpp │ ├── register.h │ ├── sound.cpp │ └── sound.h ├── main.cpp ├── server │ ├── database.cpp │ ├── database.h │ ├── database_auth.cpp │ ├── database_auth.h │ ├── database_world.cpp │ ├── database_world.h │ ├── remoteplayer.cpp │ ├── remoteplayer.h │ ├── server.cpp │ ├── server.h │ ├── server_commands.cpp │ ├── server_packethandler.cpp │ ├── servermedia.cpp │ ├── servermedia.h │ ├── serverscript.cpp │ └── serverscript.h ├── tests │ ├── test_auth.cpp │ ├── test_chatcommand.cpp │ ├── test_connection.cpp │ ├── test_database.cpp │ ├── test_eeo_converter.cpp │ ├── test_gui_gameplay.cpp │ ├── test_gui_layout.cpp │ ├── test_mediamanager.cpp │ ├── test_packet.cpp │ ├── test_physics.cpp │ ├── test_script.cpp │ ├── test_sound.cpp │ ├── test_utilities.cpp │ ├── test_world.cpp │ ├── unittest.cpp │ └── unittest_internal.h ├── version.cpp.in └── version.h └── worlds └── README.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/DejaVuSansMono_15pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/fonts/DejaVuSansMono_15pt.png -------------------------------------------------------------------------------- /assets/fonts/DejaVuSans_15pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/fonts/DejaVuSans_15pt.png -------------------------------------------------------------------------------- /assets/fonts/DejaVuSans_15pt_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/fonts/DejaVuSans_15pt_border.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/scripts/candy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/candy.lua -------------------------------------------------------------------------------- /assets/scripts/coins.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/coins.lua -------------------------------------------------------------------------------- /assets/scripts/constants.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/constants.lua -------------------------------------------------------------------------------- /assets/scripts/hidden.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/hidden.lua -------------------------------------------------------------------------------- /assets/scripts/keys_doors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/keys_doors.lua -------------------------------------------------------------------------------- /assets/scripts/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/main.lua -------------------------------------------------------------------------------- /assets/scripts/smileys.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/smileys.lua -------------------------------------------------------------------------------- /assets/scripts/teleporter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/teleporter.lua -------------------------------------------------------------------------------- /assets/scripts/unittest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/unittest.lua -------------------------------------------------------------------------------- /assets/scripts/unittest_server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/scripts/unittest_server.lua -------------------------------------------------------------------------------- /assets/sounds/coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/sounds/coin.mp3 -------------------------------------------------------------------------------- /assets/sounds/piano_c4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/sounds/piano_c4.mp3 -------------------------------------------------------------------------------- /assets/textures/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/empty.png -------------------------------------------------------------------------------- /assets/textures/god_aura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/god_aura.png -------------------------------------------------------------------------------- /assets/textures/icon_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/icon_chat.png -------------------------------------------------------------------------------- /assets/textures/icon_leave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/icon_leave.png -------------------------------------------------------------------------------- /assets/textures/icon_minimap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/icon_minimap.png -------------------------------------------------------------------------------- /assets/textures/missing_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/missing_texture.png -------------------------------------------------------------------------------- /assets/textures/pack_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_action.png -------------------------------------------------------------------------------- /assets/textures/pack_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_basic.png -------------------------------------------------------------------------------- /assets/textures/pack_beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_beta.png -------------------------------------------------------------------------------- /assets/textures/pack_boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_boost.png -------------------------------------------------------------------------------- /assets/textures/pack_candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_candy.png -------------------------------------------------------------------------------- /assets/textures/pack_coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_coins.png -------------------------------------------------------------------------------- /assets/textures/pack_dev_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_dev_blocks.png -------------------------------------------------------------------------------- /assets/textures/pack_doors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_doors.png -------------------------------------------------------------------------------- /assets/textures/pack_factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_factory.png -------------------------------------------------------------------------------- /assets/textures/pack_hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_hidden.png -------------------------------------------------------------------------------- /assets/textures/pack_keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_keys.png -------------------------------------------------------------------------------- /assets/textures/pack_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_music.png -------------------------------------------------------------------------------- /assets/textures/pack_owner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_owner.png -------------------------------------------------------------------------------- /assets/textures/pack_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_simple.png -------------------------------------------------------------------------------- /assets/textures/pack_spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_spike.png -------------------------------------------------------------------------------- /assets/textures/pack_spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_spring.png -------------------------------------------------------------------------------- /assets/textures/pack_switches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_switches.png -------------------------------------------------------------------------------- /assets/textures/pack_teleporter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_teleporter.png -------------------------------------------------------------------------------- /assets/textures/pack_timed_gates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/pack_timed_gates.png -------------------------------------------------------------------------------- /assets/textures/selected_30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/selected_30px.png -------------------------------------------------------------------------------- /assets/textures/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/shadow.png -------------------------------------------------------------------------------- /assets/textures/smileys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/assets/textures/smileys.png -------------------------------------------------------------------------------- /cmake/FindENet.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/cmake/FindENet.cmake -------------------------------------------------------------------------------- /cmake/FindLuaJIT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/cmake/FindLuaJIT.cmake -------------------------------------------------------------------------------- /cmake/SetVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/cmake/SetVersion.cmake -------------------------------------------------------------------------------- /doc/DIRECTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/doc/DIRECTION.md -------------------------------------------------------------------------------- /doc/auth.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/doc/auth.drawio.svg -------------------------------------------------------------------------------- /doc/coordinate_system.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/doc/coordinate_system.drawio.svg -------------------------------------------------------------------------------- /doc/events.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/doc/events.drawio.svg -------------------------------------------------------------------------------- /doc/lua_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/doc/lua_api.md -------------------------------------------------------------------------------- /doc/media.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/doc/media.drawio.png -------------------------------------------------------------------------------- /doc/structure.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/doc/structure.drawio.png -------------------------------------------------------------------------------- /misc/AppRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/misc/AppRun.sh -------------------------------------------------------------------------------- /misc/licenses/enet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/misc/licenses/enet.txt -------------------------------------------------------------------------------- /misc/licenses/irrlichtmt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/misc/licenses/irrlichtmt.txt -------------------------------------------------------------------------------- /misc/licenses/sqlite3.txt: -------------------------------------------------------------------------------- 1 | Public Domain 2 | 3 | https://www.sqlite.org/copyright.html 4 | -------------------------------------------------------------------------------- /misc/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/misc/pack.sh -------------------------------------------------------------------------------- /screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/screenshot.jpeg -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/CMakeLists.txt -------------------------------------------------------------------------------- /src/client/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/client.cpp -------------------------------------------------------------------------------- /src/client/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/client.h -------------------------------------------------------------------------------- /src/client/client_packethandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/client_packethandler.cpp -------------------------------------------------------------------------------- /src/client/clientmedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/clientmedia.cpp -------------------------------------------------------------------------------- /src/client/clientmedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/clientmedia.h -------------------------------------------------------------------------------- /src/client/clientscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/clientscript.cpp -------------------------------------------------------------------------------- /src/client/clientscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/clientscript.h -------------------------------------------------------------------------------- /src/client/gameevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/gameevent.cpp -------------------------------------------------------------------------------- /src/client/gameevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/gameevent.h -------------------------------------------------------------------------------- /src/client/hudelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/hudelement.cpp -------------------------------------------------------------------------------- /src/client/hudelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/hudelement.h -------------------------------------------------------------------------------- /src/client/localplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/localplayer.cpp -------------------------------------------------------------------------------- /src/client/localplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/client/localplayer.h -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/auth.cpp -------------------------------------------------------------------------------- /src/core/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/auth.h -------------------------------------------------------------------------------- /src/core/blockmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/blockmanager.cpp -------------------------------------------------------------------------------- /src/core/blockmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/blockmanager.h -------------------------------------------------------------------------------- /src/core/blockmanager_reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/blockmanager_reg.cpp -------------------------------------------------------------------------------- /src/core/blockparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/blockparams.cpp -------------------------------------------------------------------------------- /src/core/blockparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/blockparams.h -------------------------------------------------------------------------------- /src/core/chatcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/chatcommand.cpp -------------------------------------------------------------------------------- /src/core/chatcommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/chatcommand.h -------------------------------------------------------------------------------- /src/core/compressor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/compressor.cpp -------------------------------------------------------------------------------- /src/core/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/compressor.h -------------------------------------------------------------------------------- /src/core/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/connection.cpp -------------------------------------------------------------------------------- /src/core/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/connection.h -------------------------------------------------------------------------------- /src/core/eeo_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/eeo_converter.cpp -------------------------------------------------------------------------------- /src/core/eeo_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/eeo_converter.h -------------------------------------------------------------------------------- /src/core/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/environment.cpp -------------------------------------------------------------------------------- /src/core/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/environment.h -------------------------------------------------------------------------------- /src/core/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/filesystem.cpp -------------------------------------------------------------------------------- /src/core/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/filesystem.h -------------------------------------------------------------------------------- /src/core/friends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/friends.h -------------------------------------------------------------------------------- /src/core/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/logger.cpp -------------------------------------------------------------------------------- /src/core/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/logger.h -------------------------------------------------------------------------------- /src/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/macros.h -------------------------------------------------------------------------------- /src/core/mediamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/mediamanager.cpp -------------------------------------------------------------------------------- /src/core/mediamanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/mediamanager.h -------------------------------------------------------------------------------- /src/core/network_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/network_enums.h -------------------------------------------------------------------------------- /src/core/operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/operators.cpp -------------------------------------------------------------------------------- /src/core/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/operators.h -------------------------------------------------------------------------------- /src/core/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/packet.cpp -------------------------------------------------------------------------------- /src/core/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/packet.h -------------------------------------------------------------------------------- /src/core/player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/player.cpp -------------------------------------------------------------------------------- /src/core/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/player.h -------------------------------------------------------------------------------- /src/core/playerflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/playerflags.cpp -------------------------------------------------------------------------------- /src/core/playerflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/playerflags.h -------------------------------------------------------------------------------- /src/core/script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/script/playerref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/playerref.cpp -------------------------------------------------------------------------------- /src/core/script/playerref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/playerref.h -------------------------------------------------------------------------------- /src/core/script/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script.cpp -------------------------------------------------------------------------------- /src/core/script/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script.h -------------------------------------------------------------------------------- /src/core/script/script_callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script_callbacks.cpp -------------------------------------------------------------------------------- /src/core/script/script_environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script_environment.cpp -------------------------------------------------------------------------------- /src/core/script/script_player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script_player.cpp -------------------------------------------------------------------------------- /src/core/script/script_registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script_registration.cpp -------------------------------------------------------------------------------- /src/core/script/script_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script_utils.cpp -------------------------------------------------------------------------------- /src/core/script/script_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/script_utils.h -------------------------------------------------------------------------------- /src/core/script/scriptevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/scriptevent.cpp -------------------------------------------------------------------------------- /src/core/script/scriptevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/scriptevent.h -------------------------------------------------------------------------------- /src/core/script/scriptevent_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/script/scriptevent_fwd.h -------------------------------------------------------------------------------- /src/core/sha3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/sha3.c -------------------------------------------------------------------------------- /src/core/sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/sha3.h -------------------------------------------------------------------------------- /src/core/smileydef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/smileydef.h -------------------------------------------------------------------------------- /src/core/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/timer.h -------------------------------------------------------------------------------- /src/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/types.h -------------------------------------------------------------------------------- /src/core/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/utils.cpp -------------------------------------------------------------------------------- /src/core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/utils.h -------------------------------------------------------------------------------- /src/core/world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/world.cpp -------------------------------------------------------------------------------- /src/core/world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/world.h -------------------------------------------------------------------------------- /src/core/worldmeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/worldmeta.cpp -------------------------------------------------------------------------------- /src/core/worldmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/core/worldmeta.h -------------------------------------------------------------------------------- /src/gui/CBulkSceneNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/CBulkSceneNode.cpp -------------------------------------------------------------------------------- /src/gui/CBulkSceneNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/CBulkSceneNode.h -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/connect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/connect.cpp -------------------------------------------------------------------------------- /src/gui/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/connect.h -------------------------------------------------------------------------------- /src/gui/game_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/game_commands.cpp -------------------------------------------------------------------------------- /src/gui/game_commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/game_commands.h -------------------------------------------------------------------------------- /src/gui/gameplay/blockselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/blockselector.cpp -------------------------------------------------------------------------------- /src/gui/gameplay/blockselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/blockselector.h -------------------------------------------------------------------------------- /src/gui/gameplay/gameplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/gameplay.cpp -------------------------------------------------------------------------------- /src/gui/gameplay/gameplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/gameplay.h -------------------------------------------------------------------------------- /src/gui/gameplay/minimap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/minimap.cpp -------------------------------------------------------------------------------- /src/gui/gameplay/minimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/minimap.h -------------------------------------------------------------------------------- /src/gui/gameplay/smileyselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/smileyselector.cpp -------------------------------------------------------------------------------- /src/gui/gameplay/smileyselector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/smileyselector.h -------------------------------------------------------------------------------- /src/gui/gameplay/world_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/world_render.cpp -------------------------------------------------------------------------------- /src/gui/gameplay/world_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gameplay/world_render.h -------------------------------------------------------------------------------- /src/gui/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gui.cpp -------------------------------------------------------------------------------- /src/gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/gui.h -------------------------------------------------------------------------------- /src/gui/guilayout/guilayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/guilayout/guilayout.cpp -------------------------------------------------------------------------------- /src/gui/guilayout/guilayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/guilayout/guilayout.h -------------------------------------------------------------------------------- /src/gui/guilayout/guilayout_irrlicht.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/guilayout/guilayout_irrlicht.cpp -------------------------------------------------------------------------------- /src/gui/guilayout/guilayout_irrlicht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/guilayout/guilayout_irrlicht.h -------------------------------------------------------------------------------- /src/gui/guiscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/guiscript.cpp -------------------------------------------------------------------------------- /src/gui/guiscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/guiscript.h -------------------------------------------------------------------------------- /src/gui/loading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/loading.cpp -------------------------------------------------------------------------------- /src/gui/loading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/loading.h -------------------------------------------------------------------------------- /src/gui/lobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/lobby.cpp -------------------------------------------------------------------------------- /src/gui/lobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/lobby.h -------------------------------------------------------------------------------- /src/gui/minimp3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/minimp3.h -------------------------------------------------------------------------------- /src/gui/minimp3_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/minimp3_ex.h -------------------------------------------------------------------------------- /src/gui/register.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/register.cpp -------------------------------------------------------------------------------- /src/gui/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/register.h -------------------------------------------------------------------------------- /src/gui/sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/sound.cpp -------------------------------------------------------------------------------- /src/gui/sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/gui/sound.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/server/database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/database.cpp -------------------------------------------------------------------------------- /src/server/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/database.h -------------------------------------------------------------------------------- /src/server/database_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/database_auth.cpp -------------------------------------------------------------------------------- /src/server/database_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/database_auth.h -------------------------------------------------------------------------------- /src/server/database_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/database_world.cpp -------------------------------------------------------------------------------- /src/server/database_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/database_world.h -------------------------------------------------------------------------------- /src/server/remoteplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/remoteplayer.cpp -------------------------------------------------------------------------------- /src/server/remoteplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/remoteplayer.h -------------------------------------------------------------------------------- /src/server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/server.cpp -------------------------------------------------------------------------------- /src/server/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/server.h -------------------------------------------------------------------------------- /src/server/server_commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/server_commands.cpp -------------------------------------------------------------------------------- /src/server/server_packethandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/server_packethandler.cpp -------------------------------------------------------------------------------- /src/server/servermedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/servermedia.cpp -------------------------------------------------------------------------------- /src/server/servermedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/servermedia.h -------------------------------------------------------------------------------- /src/server/serverscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/serverscript.cpp -------------------------------------------------------------------------------- /src/server/serverscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/server/serverscript.h -------------------------------------------------------------------------------- /src/tests/test_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_auth.cpp -------------------------------------------------------------------------------- /src/tests/test_chatcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_chatcommand.cpp -------------------------------------------------------------------------------- /src/tests/test_connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_connection.cpp -------------------------------------------------------------------------------- /src/tests/test_database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_database.cpp -------------------------------------------------------------------------------- /src/tests/test_eeo_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_eeo_converter.cpp -------------------------------------------------------------------------------- /src/tests/test_gui_gameplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_gui_gameplay.cpp -------------------------------------------------------------------------------- /src/tests/test_gui_layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_gui_layout.cpp -------------------------------------------------------------------------------- /src/tests/test_mediamanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_mediamanager.cpp -------------------------------------------------------------------------------- /src/tests/test_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_packet.cpp -------------------------------------------------------------------------------- /src/tests/test_physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_physics.cpp -------------------------------------------------------------------------------- /src/tests/test_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_script.cpp -------------------------------------------------------------------------------- /src/tests/test_sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_sound.cpp -------------------------------------------------------------------------------- /src/tests/test_utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_utilities.cpp -------------------------------------------------------------------------------- /src/tests/test_world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/test_world.cpp -------------------------------------------------------------------------------- /src/tests/unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/unittest.cpp -------------------------------------------------------------------------------- /src/tests/unittest_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/tests/unittest_internal.h -------------------------------------------------------------------------------- /src/version.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/version.cpp.in -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/src/version.h -------------------------------------------------------------------------------- /worlds/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmallJoker/OpenEdits/HEAD/worlds/README.txt --------------------------------------------------------------------------------