├── .gitattributes ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── Client ├── Client.resource_order ├── Client.yyp ├── datafiles │ └── log.txt ├── extensions │ └── MultiClient │ │ ├── MultiClient.yy │ │ └── post_run_step.bat ├── fonts │ └── fTitle │ │ ├── fTitle.old.png │ │ ├── fTitle.old.yy │ │ ├── fTitle.png │ │ └── fTitle.yy ├── notes │ └── ProjectStructure │ │ ├── ProjectStructure.txt │ │ └── ProjectStructure.yy ├── objects │ ├── oBox │ │ └── oBox.yy │ ├── oChatManager │ │ ├── Create_0.gml │ │ ├── Draw_64.gml │ │ └── oChatManager.yy │ ├── oClient │ │ ├── Alarm_1.gml │ │ ├── Create_0.gml │ │ ├── KeyPress_82.gml │ │ ├── Other_3.gml │ │ ├── Other_68.gml │ │ ├── Step_0.gml │ │ └── oclient.yy │ ├── oDemo │ │ ├── Draw_0.gml │ │ ├── Step_0.gml │ │ └── oDemo.yy │ ├── oDualInstance │ │ ├── Create_0.gml │ │ └── oDualInstance.yy │ ├── oEntity │ │ ├── CleanUp_0.gml │ │ ├── Create_0.gml │ │ ├── Other_4.gml │ │ └── oEntity.yy │ ├── oEntityManager │ │ ├── Create_0.gml │ │ ├── Step_0.gml │ │ └── oEntityManager.yy │ ├── oFindingMatch │ │ ├── Alarm_0.gml │ │ ├── Create_0.gml │ │ ├── Draw_0.gml │ │ ├── KeyPress_27.gml │ │ └── oFindingMatch.yy │ ├── oFriendList │ │ ├── CleanUp_0.gml │ │ ├── Create_0.gml │ │ └── oFriendList.yy │ ├── oLobbiesDemo │ │ ├── CleanUp_0.gml │ │ ├── Create_0.gml │ │ ├── Draw_0.gml │ │ ├── KeyPress_27.gml │ │ ├── Step_0.gml │ │ └── oLobbiesDemo.yy │ ├── oLoginMenu │ │ ├── CleanUp_0.gml │ │ ├── Create_0.gml │ │ └── oLoginMenu.yy │ ├── oMainMenu │ │ ├── CleanUp_0.gml │ │ ├── Create_0.gml │ │ └── oMainMenu.yy │ ├── oPartyUI │ │ ├── Draw_0.gml │ │ └── oPartyUI.yy │ ├── oPhysicsEntity │ │ ├── Create_0.gml │ │ └── oPhysicsEntity.yy │ ├── oPingManager │ │ ├── Alarm_0.gml │ │ ├── Alarm_1.gml │ │ ├── Create_0.gml │ │ ├── Draw_0.gml │ │ └── oPingManager.yy │ ├── oPlayer │ │ ├── Create_0.gml │ │ ├── Draw_0.gml │ │ ├── KeyPress_27.gml │ │ ├── Step_0.gml │ │ └── oPlayer.yy │ ├── oSimpleUI │ │ ├── Create_0.gml │ │ ├── Draw_64.gml │ │ ├── Step_0.gml │ │ └── oSimpleUI.yy │ ├── oWall │ │ └── oWall.yy │ └── oWarpPortal │ │ ├── Step_0.gml │ │ └── oWarpPortal.yy ├── options │ ├── amazonfire │ │ └── options_amazonfire.yy │ ├── android │ │ └── options_android.yy │ ├── extensions │ │ ├── MultiClient.json │ │ ├── execute_shell_simple.json │ │ └── execute_shell_simple_ext.json │ ├── html5 │ │ └── options_html5.yy │ ├── ios │ │ └── options_ios.yy │ ├── linux │ │ └── options_linux.yy │ ├── mac │ │ └── options_mac.yy │ ├── main │ │ └── options_main.yy │ ├── operagx │ │ └── options_operagx.yy │ ├── tvos │ │ └── options_tvos.yy │ ├── windows │ │ └── options_windows.yy │ └── windowsuap │ │ └── options_windowsuap.yy ├── rooms │ ├── r1v1 │ │ └── r1v1.yy │ ├── rFindingMatch │ │ └── rFindingMatch.yy │ ├── rLobbiesList │ │ └── rLobbiesList.yy │ ├── rLogin │ │ └── rLogin.yy │ ├── rMenu │ │ └── rMenu.yy │ ├── rStressTest │ │ └── rStressTest.yy │ ├── rTest │ │ └── rTest.yy │ └── rTest2 │ │ └── rTest2.yy ├── scripts │ ├── HandlePacket │ │ ├── handlepacket.gml │ │ └── handlepacket.yy │ ├── MultiClientGetAdditionalParameters │ │ ├── MultiClientGetAdditionalParameters.gml │ │ └── MultiClientGetAdditionalParameters.yy │ ├── MultiClientGetID │ │ ├── MultiClientGetID.gml │ │ └── MultiClientGetID.yy │ ├── MultiClientGetNumberOfClients │ │ ├── MultiClientGetNumberOfClients.gml │ │ └── MultiClientGetNumberOfClients.yy │ ├── MultiClientGetProxyParameters │ │ ├── MultiClientGetProxyParameters.gml │ │ └── MultiClientGetProxyParameters.yy │ ├── MultiClientGetProxyPath │ │ ├── MultiClientGetProxyPath.gml │ │ └── MultiClientGetProxyPath.yy │ ├── NetworkInterpolation │ │ ├── NetworkInterpolation.gml │ │ └── NetworkInterpolation.yy │ ├── PacketQueue │ │ ├── PacketQueue.gml │ │ └── PacketQueue.yy │ ├── SUIBackButton │ │ ├── SUIBackButton.gml │ │ └── SUIBackButton.yy │ ├── SUIBox │ │ ├── SUIBox.gml │ │ └── SUIBox.yy │ ├── SUIButton │ │ ├── SUIButton.gml │ │ └── SUIButton.yy │ ├── SUISprite │ │ ├── SUISprite.gml │ │ └── SUISprite.yy │ ├── SUIText │ │ ├── SUIText.gml │ │ └── SUIText.yy │ ├── SUITextBox │ │ ├── SUITextBox.gml │ │ └── SUITextBox.yy │ ├── SUITitle │ │ ├── SUITitle.gml │ │ └── SUITitle.yy │ ├── SendStuff │ │ ├── SendStuff.gml │ │ └── sendstuff.yy │ ├── SimpleUI │ │ ├── SimpleUI.gml │ │ └── SimpleUI.yy │ ├── SimpleUIBinding │ │ ├── SimpleUIBinding.gml │ │ └── SimpleUIBinding.yy │ ├── SimpleUIDefaultProps │ │ ├── SimpleUIDefaultProps.gml │ │ └── SimpleUIDefaultProps.yy │ ├── SimpleUIUtils │ │ ├── SimpleUIUtils.gml │ │ └── SimpleUIUtils.yy │ ├── Trace │ │ ├── Trace.gml │ │ └── Trace.yy │ ├── UseStates │ │ ├── UseStates.gml │ │ └── UseStates.yy │ ├── UseTimestamps │ │ ├── UseTimestamps.gml │ │ └── UseTimestamps.yy │ ├── UseUUID │ │ ├── UseUUID.gml │ │ └── UseUUID.yy │ ├── WarpEvents │ │ ├── WarpEvents.gml │ │ └── WarpEvents.yy │ ├── WarpInitializers │ │ ├── WarpInitializers.gml │ │ └── WarpInitializers.yy │ ├── _SUIEmpty │ │ ├── _SUIEmpty.gml │ │ └── _SUIEmpty.yy │ ├── __MultiClientExtensionTest │ │ ├── __MultiClientExtensionTest.gml │ │ └── __MultiClientExtensionTest.yy │ ├── __WarpConfig │ │ ├── __WarpConfig.gml │ │ └── __WarpConfig.yy │ ├── authHandlers │ │ ├── authHandlers.gml │ │ └── authHandlers.yy │ ├── authSenders │ │ ├── authSenders.gml │ │ └── authSenders.yy │ ├── buffer_visualize │ │ ├── buffer_visualize.gml │ │ └── buffer_visualize.yy │ ├── chatHandlers │ │ ├── chatHandlers.gml │ │ └── chatHandlers.yy │ ├── entityHandlers │ │ ├── entityHandlers.gml │ │ └── entityHandlers.yy │ ├── friendHandlers │ │ ├── friendHandlers.gml │ │ └── friendHandlers.yy │ ├── friendSenders │ │ ├── friendSenders.gml │ │ └── friendSenders.yy │ ├── gameLoopHandlers │ │ ├── gameLoopHandlers.gml │ │ └── gameLoopHandlers.yy │ ├── gameplaySenders │ │ ├── gameplaySenders.gml │ │ └── gameplaySenders.yy │ ├── lobbyHandlers │ │ ├── lobbyHandlers.gml │ │ └── lobbyHandlers.yy │ ├── lobbySenders │ │ ├── lobbySenders.gml │ │ └── lobbySenders.yy │ ├── matchmakingSenders │ │ ├── matchmakingSenders.gml │ │ └── matchmakingSenders.yy │ ├── network_write │ │ ├── network_write.gml │ │ └── network_write.yy │ ├── partyHandlers │ │ ├── partyHandlers.gml │ │ └── partyHandlers.yy │ ├── partySenders │ │ ├── partySenders.gml │ │ └── partySenders.yy │ ├── snap_from_messagepack │ │ ├── snap_from_messagepack.gml │ │ └── snap_from_messagepack.yy │ ├── snap_to_messagepack │ │ ├── snap_to_messagepack.gml │ │ └── snap_to_messagepack.yy │ ├── systemHandlers │ │ ├── systemHandlers.gml │ │ └── systemHandlers.yy │ └── systemSenders │ │ ├── systemSenders.gml │ │ └── systemSenders.yy └── sprites │ ├── sBox │ ├── 1b1ce743-cf5a-4bca-89db-1b51a26f90d0.png │ ├── layers │ │ └── 1b1ce743-cf5a-4bca-89db-1b51a26f90d0 │ │ │ └── 4dd1e25d-d5c3-401a-91ea-34a17a4f5b62.png │ └── sBox.yy │ ├── sDemoButton │ ├── e2885e3e-172b-4c2f-8181-ef8b9acd146f.png │ ├── layers │ │ └── e2885e3e-172b-4c2f-8181-ef8b9acd146f │ │ │ └── b001a687-6b1b-4250-a94c-5ad4b2c5909b.png │ └── sDemoButton.yy │ ├── sDemoTextbox │ ├── 259c2ab0-0ad7-4680-bd8e-132bd6041360.png │ ├── layers │ │ └── 259c2ab0-0ad7-4680-bd8e-132bd6041360 │ │ │ └── a277224d-a0e7-40d8-a091-46a7a0111625.png │ └── sDemoTextbox.yy │ ├── sPlayer │ ├── 5fc9e86f-0421-4b61-b103-8ca815cb01ce.png │ ├── layers │ │ └── 5fc9e86f-0421-4b61-b103-8ca815cb01ce │ │ │ └── 83b7512a-0e85-4d86-83b3-0318be14d92b.png │ └── sPlayer.yy │ ├── sSimpleUITextCursor │ ├── 54531c86-9a16-49dc-bcef-98b28d9f84e2.png │ ├── layers │ │ └── 54531c86-9a16-49dc-bcef-98b28d9f84e2 │ │ │ └── fd7bbfad-19d0-41cb-a1d4-41ce3c0f83fe.png │ └── sSimpleUITextCursor.yy │ ├── sWall │ ├── cd60a35d-c7cc-4101-94ea-3231848d325b.png │ ├── layers │ │ └── cd60a35d-c7cc-4101-94ea-3231848d325b │ │ │ └── a1e8702c-5263-49ad-acc7-3141ebb6b41c.png │ └── sWall.yy │ └── sWarpPortal │ ├── 21bd1984-d018-4390-9953-5e1b79fc8893.png │ ├── 76376489-dc87-4d16-97df-b26e8771188e.png │ ├── 940d1034-c97e-4754-9912-32690be030d7.png │ ├── layers │ ├── 21bd1984-d018-4390-9953-5e1b79fc8893 │ │ └── c26be6ba-e59b-4e62-9b35-f6909c16e692.png │ ├── 76376489-dc87-4d16-97df-b26e8771188e │ │ └── c26be6ba-e59b-4e62-9b35-f6909c16e692.png │ └── 940d1034-c97e-4754-9912-32690be030d7 │ │ └── c26be6ba-e59b-4e62-9b35-f6909c16e692.png │ └── sWarpPortal.yy ├── JavascriptServer ├── .gitignore ├── README.md ├── cmd │ ├── handlePacket.js │ ├── handlers │ │ ├── auth.js │ │ ├── chat.js │ │ ├── custom.js │ │ ├── friends.js │ │ ├── lobby.js │ │ ├── matchmaking.js │ │ ├── party.js │ │ └── system.js │ ├── middleware.js │ ├── sendStuff.js │ ├── senders │ │ ├── _template.js │ │ ├── auth.js │ │ ├── chat.js │ │ ├── custom.js │ │ ├── friends.js │ │ ├── game_loop.js │ │ ├── lobby.js │ │ ├── matchmaking.js │ │ ├── party.js │ │ └── system.js │ ├── validator.js │ └── validators │ │ ├── friends.js │ │ ├── lobby.js │ │ ├── matchmaking.js │ │ └── party.js ├── concepts │ ├── chat.js │ ├── client.js │ ├── collider.js │ ├── entity.js │ ├── game_mode.js │ ├── level.js │ ├── lobby.js │ ├── map.js │ ├── matchmaking │ │ ├── match.js │ │ ├── matchmaker.js │ │ ├── party.js │ │ ├── queue.js │ │ └── ticket.js │ └── room.js ├── config.js ├── entities │ ├── box.js │ ├── physics_entity.js │ ├── player.js │ ├── unknown.js │ ├── wall.js │ └── warp_portal.js ├── game_modes │ ├── 1v1.js │ ├── 5v5.js │ └── ffa.js ├── initializers │ ├── 00_exit_handler.js │ ├── 01_globals.js │ ├── 02_mongodb.js │ ├── 03_console.js │ ├── 10_entities.js │ ├── 11_levels.js │ ├── 12_maps.js │ ├── 13_game_modes.js │ ├── 14_lobbies.js │ ├── 15_chats.js │ ├── 16_cmd.js │ ├── 20_matchmaker.js │ └── 21_ping.js ├── jsconfig.json ├── levels │ ├── 1v1level.js │ ├── stress_test.js │ ├── test_level.js │ └── test_level2.js ├── maps │ ├── 1v1map.js │ └── globalmap.js ├── package-lock.json ├── package.json ├── packet.js ├── schemas │ ├── account.js │ ├── chat.js │ ├── friend_request.js │ ├── profile.js │ └── session.js ├── server.js └── util │ ├── artificial_delay.js │ ├── auth.js │ ├── deep_merge.js │ ├── load_room.js │ ├── logging.js │ ├── maths.js │ ├── names.js │ └── random_id.js ├── LICENSE ├── README.md ├── Release ├── GMClient.zip ├── JSServer.zip ├── TSServer.zip ├── Warp.yymps └── WebClient.zip ├── TypescriptServer ├── .gitignore ├── README.md ├── jsconfig.json ├── package.json ├── src │ ├── cmd │ │ ├── handlePacket.ts │ │ ├── handlers │ │ │ ├── auth.ts │ │ │ ├── chat.ts │ │ │ ├── custom.ts │ │ │ ├── friends.ts │ │ │ ├── lobby.ts │ │ │ ├── matchmaking.ts │ │ │ ├── party.ts │ │ │ └── system.ts │ │ ├── middleware.ts │ │ ├── sendStuff.ts │ │ ├── senders │ │ │ ├── _template.ts │ │ │ ├── auth.ts │ │ │ ├── chat.ts │ │ │ ├── custom.ts │ │ │ ├── friends.ts │ │ │ ├── game_loop.ts │ │ │ ├── lobby.ts │ │ │ ├── matchmaking.ts │ │ │ ├── party.ts │ │ │ └── system.ts │ │ ├── validator.ts │ │ └── validators │ │ │ ├── friends.ts │ │ │ ├── lobby.ts │ │ │ ├── matchmaking.ts │ │ │ └── party.ts │ ├── concepts │ │ ├── chat.ts │ │ ├── client.ts │ │ ├── collider.ts │ │ ├── entity.ts │ │ ├── game_mode.ts │ │ ├── level.ts │ │ ├── lobby.ts │ │ ├── map.ts │ │ ├── matchmaking │ │ │ ├── match.ts │ │ │ ├── matchmaker.ts │ │ │ ├── party.ts │ │ │ ├── queue.ts │ │ │ └── ticket.ts │ │ └── room.ts │ ├── config.ts │ ├── entities │ │ ├── box.ts │ │ ├── physics_entity.ts │ │ ├── player.ts │ │ ├── unknown.ts │ │ ├── wall.ts │ │ └── warp_portal.ts │ ├── game_modes │ │ ├── 1v1.ts │ │ ├── 5v5.ts │ │ └── ffa.ts │ ├── global.d.ts │ ├── initializers │ │ ├── 00_exit_handler.ts │ │ ├── 01_globals.ts │ │ ├── 02_mongodb.ts │ │ ├── 03_console.ts │ │ ├── 10_entities.ts │ │ ├── 11_levels.ts │ │ ├── 12_maps.ts │ │ ├── 13_game_modes.ts │ │ ├── 14_lobbies.ts │ │ ├── 15_chats.ts │ │ ├── 16_cmd.ts │ │ ├── 20_matchmaker.ts │ │ └── 21_ping.ts │ ├── levels │ │ ├── 1v1level.ts │ │ ├── stress_test.ts │ │ ├── test_level.ts │ │ └── test_level2.ts │ ├── maps │ │ ├── 1v1map.ts │ │ └── globalmap.ts │ ├── packet.ts │ ├── schemas │ │ ├── account.ts │ │ ├── chat.ts │ │ ├── friend_request.ts │ │ ├── profile.ts │ │ └── session.ts │ ├── server.ts │ ├── types │ │ ├── bbox.ts │ │ ├── client_properties.ts │ │ ├── point.ts │ │ └── socktype.ts │ └── util │ │ ├── artificial_delay.ts │ │ ├── auth.ts │ │ ├── deep_merge.ts │ │ ├── load_room.ts │ │ ├── logging.ts │ │ ├── maths.ts │ │ ├── names.ts │ │ └── random_id.ts └── tsconfig.json ├── WebClient ├── GMOF │ ├── config.js │ ├── gmof.js │ ├── handlePacket.js │ └── sendStuff.js ├── index.html └── index.js ├── autorelease ├── .gitignore ├── README.md ├── gulpfile.js ├── package.json └── release.js └── create-warp-app ├── .gitignore ├── README.md ├── index.js └── package.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | server_log.txt -------------------------------------------------------------------------------- /Client/Client.resource_order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/Client.resource_order -------------------------------------------------------------------------------- /Client/Client.yyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/Client.yyp -------------------------------------------------------------------------------- /Client/datafiles/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Client/extensions/MultiClient/MultiClient.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/extensions/MultiClient/MultiClient.yy -------------------------------------------------------------------------------- /Client/extensions/MultiClient/post_run_step.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/extensions/MultiClient/post_run_step.bat -------------------------------------------------------------------------------- /Client/fonts/fTitle/fTitle.old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/fonts/fTitle/fTitle.old.png -------------------------------------------------------------------------------- /Client/fonts/fTitle/fTitle.old.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/fonts/fTitle/fTitle.old.yy -------------------------------------------------------------------------------- /Client/fonts/fTitle/fTitle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/fonts/fTitle/fTitle.png -------------------------------------------------------------------------------- /Client/fonts/fTitle/fTitle.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/fonts/fTitle/fTitle.yy -------------------------------------------------------------------------------- /Client/notes/ProjectStructure/ProjectStructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/notes/ProjectStructure/ProjectStructure.txt -------------------------------------------------------------------------------- /Client/notes/ProjectStructure/ProjectStructure.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/notes/ProjectStructure/ProjectStructure.yy -------------------------------------------------------------------------------- /Client/objects/oBox/oBox.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oBox/oBox.yy -------------------------------------------------------------------------------- /Client/objects/oChatManager/Create_0.gml: -------------------------------------------------------------------------------- 1 | /// @desc 2 | 3 | messages = [] 4 | -------------------------------------------------------------------------------- /Client/objects/oChatManager/Draw_64.gml: -------------------------------------------------------------------------------- 1 | /// @desc 2 | 3 | -------------------------------------------------------------------------------- /Client/objects/oChatManager/oChatManager.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oChatManager/oChatManager.yy -------------------------------------------------------------------------------- /Client/objects/oClient/Alarm_1.gml: -------------------------------------------------------------------------------- 1 | /// @desc 2 | 3 | sendRequestTime() 4 | //alarm[1] = 240 -------------------------------------------------------------------------------- /Client/objects/oClient/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oClient/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oClient/KeyPress_82.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oClient/KeyPress_82.gml -------------------------------------------------------------------------------- /Client/objects/oClient/Other_3.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oClient/Other_3.gml -------------------------------------------------------------------------------- /Client/objects/oClient/Other_68.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oClient/Other_68.gml -------------------------------------------------------------------------------- /Client/objects/oClient/Step_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oClient/Step_0.gml -------------------------------------------------------------------------------- /Client/objects/oClient/oclient.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oClient/oclient.yy -------------------------------------------------------------------------------- /Client/objects/oDemo/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oDemo/Draw_0.gml -------------------------------------------------------------------------------- /Client/objects/oDemo/Step_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oDemo/Step_0.gml -------------------------------------------------------------------------------- /Client/objects/oDemo/oDemo.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oDemo/oDemo.yy -------------------------------------------------------------------------------- /Client/objects/oDualInstance/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oDualInstance/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oDualInstance/oDualInstance.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oDualInstance/oDualInstance.yy -------------------------------------------------------------------------------- /Client/objects/oEntity/CleanUp_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oEntity/CleanUp_0.gml -------------------------------------------------------------------------------- /Client/objects/oEntity/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oEntity/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oEntity/Other_4.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oEntity/Other_4.gml -------------------------------------------------------------------------------- /Client/objects/oEntity/oEntity.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oEntity/oEntity.yy -------------------------------------------------------------------------------- /Client/objects/oEntityManager/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oEntityManager/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oEntityManager/Step_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oEntityManager/Step_0.gml -------------------------------------------------------------------------------- /Client/objects/oEntityManager/oEntityManager.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oEntityManager/oEntityManager.yy -------------------------------------------------------------------------------- /Client/objects/oFindingMatch/Alarm_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oFindingMatch/Alarm_0.gml -------------------------------------------------------------------------------- /Client/objects/oFindingMatch/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oFindingMatch/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oFindingMatch/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oFindingMatch/Draw_0.gml -------------------------------------------------------------------------------- /Client/objects/oFindingMatch/KeyPress_27.gml: -------------------------------------------------------------------------------- 1 | /// @desc 2 | 3 | sendMatchMakingStop() 4 | room_goto(rMenu) -------------------------------------------------------------------------------- /Client/objects/oFindingMatch/oFindingMatch.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oFindingMatch/oFindingMatch.yy -------------------------------------------------------------------------------- /Client/objects/oFriendList/CleanUp_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oFriendList/CleanUp_0.gml -------------------------------------------------------------------------------- /Client/objects/oFriendList/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oFriendList/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oFriendList/oFriendList.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oFriendList/oFriendList.yy -------------------------------------------------------------------------------- /Client/objects/oLobbiesDemo/CleanUp_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLobbiesDemo/CleanUp_0.gml -------------------------------------------------------------------------------- /Client/objects/oLobbiesDemo/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLobbiesDemo/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oLobbiesDemo/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLobbiesDemo/Draw_0.gml -------------------------------------------------------------------------------- /Client/objects/oLobbiesDemo/KeyPress_27.gml: -------------------------------------------------------------------------------- 1 | /// @desc Go back to the main menu 2 | 3 | room_goto(rMenu) -------------------------------------------------------------------------------- /Client/objects/oLobbiesDemo/Step_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLobbiesDemo/Step_0.gml -------------------------------------------------------------------------------- /Client/objects/oLobbiesDemo/oLobbiesDemo.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLobbiesDemo/oLobbiesDemo.yy -------------------------------------------------------------------------------- /Client/objects/oLoginMenu/CleanUp_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLoginMenu/CleanUp_0.gml -------------------------------------------------------------------------------- /Client/objects/oLoginMenu/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLoginMenu/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oLoginMenu/oLoginMenu.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oLoginMenu/oLoginMenu.yy -------------------------------------------------------------------------------- /Client/objects/oMainMenu/CleanUp_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oMainMenu/CleanUp_0.gml -------------------------------------------------------------------------------- /Client/objects/oMainMenu/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oMainMenu/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oMainMenu/oMainMenu.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oMainMenu/oMainMenu.yy -------------------------------------------------------------------------------- /Client/objects/oPartyUI/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPartyUI/Draw_0.gml -------------------------------------------------------------------------------- /Client/objects/oPartyUI/oPartyUI.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPartyUI/oPartyUI.yy -------------------------------------------------------------------------------- /Client/objects/oPhysicsEntity/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPhysicsEntity/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oPhysicsEntity/oPhysicsEntity.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPhysicsEntity/oPhysicsEntity.yy -------------------------------------------------------------------------------- /Client/objects/oPingManager/Alarm_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPingManager/Alarm_0.gml -------------------------------------------------------------------------------- /Client/objects/oPingManager/Alarm_1.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPingManager/Alarm_1.gml -------------------------------------------------------------------------------- /Client/objects/oPingManager/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPingManager/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oPingManager/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPingManager/Draw_0.gml -------------------------------------------------------------------------------- /Client/objects/oPingManager/oPingManager.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPingManager/oPingManager.yy -------------------------------------------------------------------------------- /Client/objects/oPlayer/Create_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPlayer/Create_0.gml -------------------------------------------------------------------------------- /Client/objects/oPlayer/Draw_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPlayer/Draw_0.gml -------------------------------------------------------------------------------- /Client/objects/oPlayer/KeyPress_27.gml: -------------------------------------------------------------------------------- 1 | /// @description quit to main menu 2 | 3 | leaveGame() -------------------------------------------------------------------------------- /Client/objects/oPlayer/Step_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPlayer/Step_0.gml -------------------------------------------------------------------------------- /Client/objects/oPlayer/oPlayer.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oPlayer/oPlayer.yy -------------------------------------------------------------------------------- /Client/objects/oSimpleUI/Create_0.gml: -------------------------------------------------------------------------------- 1 | /// @desc 2 | 3 | -------------------------------------------------------------------------------- /Client/objects/oSimpleUI/Draw_64.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oSimpleUI/Draw_64.gml -------------------------------------------------------------------------------- /Client/objects/oSimpleUI/Step_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oSimpleUI/Step_0.gml -------------------------------------------------------------------------------- /Client/objects/oSimpleUI/oSimpleUI.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oSimpleUI/oSimpleUI.yy -------------------------------------------------------------------------------- /Client/objects/oWall/oWall.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oWall/oWall.yy -------------------------------------------------------------------------------- /Client/objects/oWarpPortal/Step_0.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oWarpPortal/Step_0.gml -------------------------------------------------------------------------------- /Client/objects/oWarpPortal/oWarpPortal.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/objects/oWarpPortal/oWarpPortal.yy -------------------------------------------------------------------------------- /Client/options/amazonfire/options_amazonfire.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/amazonfire/options_amazonfire.yy -------------------------------------------------------------------------------- /Client/options/android/options_android.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/android/options_android.yy -------------------------------------------------------------------------------- /Client/options/extensions/MultiClient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/extensions/MultiClient.json -------------------------------------------------------------------------------- /Client/options/extensions/execute_shell_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/extensions/execute_shell_simple.json -------------------------------------------------------------------------------- /Client/options/extensions/execute_shell_simple_ext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/extensions/execute_shell_simple_ext.json -------------------------------------------------------------------------------- /Client/options/html5/options_html5.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/html5/options_html5.yy -------------------------------------------------------------------------------- /Client/options/ios/options_ios.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/ios/options_ios.yy -------------------------------------------------------------------------------- /Client/options/linux/options_linux.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/linux/options_linux.yy -------------------------------------------------------------------------------- /Client/options/mac/options_mac.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/mac/options_mac.yy -------------------------------------------------------------------------------- /Client/options/main/options_main.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/main/options_main.yy -------------------------------------------------------------------------------- /Client/options/operagx/options_operagx.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/operagx/options_operagx.yy -------------------------------------------------------------------------------- /Client/options/tvos/options_tvos.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/tvos/options_tvos.yy -------------------------------------------------------------------------------- /Client/options/windows/options_windows.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/windows/options_windows.yy -------------------------------------------------------------------------------- /Client/options/windowsuap/options_windowsuap.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/options/windowsuap/options_windowsuap.yy -------------------------------------------------------------------------------- /Client/rooms/r1v1/r1v1.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/r1v1/r1v1.yy -------------------------------------------------------------------------------- /Client/rooms/rFindingMatch/rFindingMatch.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/rFindingMatch/rFindingMatch.yy -------------------------------------------------------------------------------- /Client/rooms/rLobbiesList/rLobbiesList.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/rLobbiesList/rLobbiesList.yy -------------------------------------------------------------------------------- /Client/rooms/rLogin/rLogin.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/rLogin/rLogin.yy -------------------------------------------------------------------------------- /Client/rooms/rMenu/rMenu.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/rMenu/rMenu.yy -------------------------------------------------------------------------------- /Client/rooms/rStressTest/rStressTest.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/rStressTest/rStressTest.yy -------------------------------------------------------------------------------- /Client/rooms/rTest/rTest.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/rTest/rTest.yy -------------------------------------------------------------------------------- /Client/rooms/rTest2/rTest2.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/rooms/rTest2/rTest2.yy -------------------------------------------------------------------------------- /Client/scripts/HandlePacket/handlepacket.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/HandlePacket/handlepacket.gml -------------------------------------------------------------------------------- /Client/scripts/HandlePacket/handlepacket.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/HandlePacket/handlepacket.yy -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetAdditionalParameters/MultiClientGetAdditionalParameters.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetAdditionalParameters/MultiClientGetAdditionalParameters.gml -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetAdditionalParameters/MultiClientGetAdditionalParameters.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetAdditionalParameters/MultiClientGetAdditionalParameters.yy -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetID/MultiClientGetID.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetID/MultiClientGetID.gml -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetID/MultiClientGetID.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetID/MultiClientGetID.yy -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetNumberOfClients/MultiClientGetNumberOfClients.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetNumberOfClients/MultiClientGetNumberOfClients.gml -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetNumberOfClients/MultiClientGetNumberOfClients.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetNumberOfClients/MultiClientGetNumberOfClients.yy -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetProxyParameters/MultiClientGetProxyParameters.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetProxyParameters/MultiClientGetProxyParameters.gml -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetProxyParameters/MultiClientGetProxyParameters.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetProxyParameters/MultiClientGetProxyParameters.yy -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetProxyPath/MultiClientGetProxyPath.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetProxyPath/MultiClientGetProxyPath.gml -------------------------------------------------------------------------------- /Client/scripts/MultiClientGetProxyPath/MultiClientGetProxyPath.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/MultiClientGetProxyPath/MultiClientGetProxyPath.yy -------------------------------------------------------------------------------- /Client/scripts/NetworkInterpolation/NetworkInterpolation.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/NetworkInterpolation/NetworkInterpolation.gml -------------------------------------------------------------------------------- /Client/scripts/NetworkInterpolation/NetworkInterpolation.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/NetworkInterpolation/NetworkInterpolation.yy -------------------------------------------------------------------------------- /Client/scripts/PacketQueue/PacketQueue.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/PacketQueue/PacketQueue.gml -------------------------------------------------------------------------------- /Client/scripts/PacketQueue/PacketQueue.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/PacketQueue/PacketQueue.yy -------------------------------------------------------------------------------- /Client/scripts/SUIBackButton/SUIBackButton.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIBackButton/SUIBackButton.gml -------------------------------------------------------------------------------- /Client/scripts/SUIBackButton/SUIBackButton.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIBackButton/SUIBackButton.yy -------------------------------------------------------------------------------- /Client/scripts/SUIBox/SUIBox.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIBox/SUIBox.gml -------------------------------------------------------------------------------- /Client/scripts/SUIBox/SUIBox.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIBox/SUIBox.yy -------------------------------------------------------------------------------- /Client/scripts/SUIButton/SUIButton.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIButton/SUIButton.gml -------------------------------------------------------------------------------- /Client/scripts/SUIButton/SUIButton.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIButton/SUIButton.yy -------------------------------------------------------------------------------- /Client/scripts/SUISprite/SUISprite.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUISprite/SUISprite.gml -------------------------------------------------------------------------------- /Client/scripts/SUISprite/SUISprite.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUISprite/SUISprite.yy -------------------------------------------------------------------------------- /Client/scripts/SUIText/SUIText.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIText/SUIText.gml -------------------------------------------------------------------------------- /Client/scripts/SUIText/SUIText.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUIText/SUIText.yy -------------------------------------------------------------------------------- /Client/scripts/SUITextBox/SUITextBox.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUITextBox/SUITextBox.gml -------------------------------------------------------------------------------- /Client/scripts/SUITextBox/SUITextBox.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUITextBox/SUITextBox.yy -------------------------------------------------------------------------------- /Client/scripts/SUITitle/SUITitle.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUITitle/SUITitle.gml -------------------------------------------------------------------------------- /Client/scripts/SUITitle/SUITitle.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SUITitle/SUITitle.yy -------------------------------------------------------------------------------- /Client/scripts/SendStuff/SendStuff.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SendStuff/SendStuff.gml -------------------------------------------------------------------------------- /Client/scripts/SendStuff/sendstuff.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SendStuff/sendstuff.yy -------------------------------------------------------------------------------- /Client/scripts/SimpleUI/SimpleUI.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUI/SimpleUI.gml -------------------------------------------------------------------------------- /Client/scripts/SimpleUI/SimpleUI.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUI/SimpleUI.yy -------------------------------------------------------------------------------- /Client/scripts/SimpleUIBinding/SimpleUIBinding.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUIBinding/SimpleUIBinding.gml -------------------------------------------------------------------------------- /Client/scripts/SimpleUIBinding/SimpleUIBinding.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUIBinding/SimpleUIBinding.yy -------------------------------------------------------------------------------- /Client/scripts/SimpleUIDefaultProps/SimpleUIDefaultProps.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUIDefaultProps/SimpleUIDefaultProps.gml -------------------------------------------------------------------------------- /Client/scripts/SimpleUIDefaultProps/SimpleUIDefaultProps.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUIDefaultProps/SimpleUIDefaultProps.yy -------------------------------------------------------------------------------- /Client/scripts/SimpleUIUtils/SimpleUIUtils.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUIUtils/SimpleUIUtils.gml -------------------------------------------------------------------------------- /Client/scripts/SimpleUIUtils/SimpleUIUtils.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/SimpleUIUtils/SimpleUIUtils.yy -------------------------------------------------------------------------------- /Client/scripts/Trace/Trace.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/Trace/Trace.gml -------------------------------------------------------------------------------- /Client/scripts/Trace/Trace.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/Trace/Trace.yy -------------------------------------------------------------------------------- /Client/scripts/UseStates/UseStates.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/UseStates/UseStates.gml -------------------------------------------------------------------------------- /Client/scripts/UseStates/UseStates.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/UseStates/UseStates.yy -------------------------------------------------------------------------------- /Client/scripts/UseTimestamps/UseTimestamps.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/UseTimestamps/UseTimestamps.gml -------------------------------------------------------------------------------- /Client/scripts/UseTimestamps/UseTimestamps.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/UseTimestamps/UseTimestamps.yy -------------------------------------------------------------------------------- /Client/scripts/UseUUID/UseUUID.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/UseUUID/UseUUID.gml -------------------------------------------------------------------------------- /Client/scripts/UseUUID/UseUUID.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/UseUUID/UseUUID.yy -------------------------------------------------------------------------------- /Client/scripts/WarpEvents/WarpEvents.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/WarpEvents/WarpEvents.gml -------------------------------------------------------------------------------- /Client/scripts/WarpEvents/WarpEvents.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/WarpEvents/WarpEvents.yy -------------------------------------------------------------------------------- /Client/scripts/WarpInitializers/WarpInitializers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/WarpInitializers/WarpInitializers.gml -------------------------------------------------------------------------------- /Client/scripts/WarpInitializers/WarpInitializers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/WarpInitializers/WarpInitializers.yy -------------------------------------------------------------------------------- /Client/scripts/_SUIEmpty/_SUIEmpty.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/_SUIEmpty/_SUIEmpty.gml -------------------------------------------------------------------------------- /Client/scripts/_SUIEmpty/_SUIEmpty.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/_SUIEmpty/_SUIEmpty.yy -------------------------------------------------------------------------------- /Client/scripts/__MultiClientExtensionTest/__MultiClientExtensionTest.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/__MultiClientExtensionTest/__MultiClientExtensionTest.gml -------------------------------------------------------------------------------- /Client/scripts/__MultiClientExtensionTest/__MultiClientExtensionTest.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/__MultiClientExtensionTest/__MultiClientExtensionTest.yy -------------------------------------------------------------------------------- /Client/scripts/__WarpConfig/__WarpConfig.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/__WarpConfig/__WarpConfig.gml -------------------------------------------------------------------------------- /Client/scripts/__WarpConfig/__WarpConfig.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/__WarpConfig/__WarpConfig.yy -------------------------------------------------------------------------------- /Client/scripts/authHandlers/authHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/authHandlers/authHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/authHandlers/authHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/authHandlers/authHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/authSenders/authSenders.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/authSenders/authSenders.gml -------------------------------------------------------------------------------- /Client/scripts/authSenders/authSenders.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/authSenders/authSenders.yy -------------------------------------------------------------------------------- /Client/scripts/buffer_visualize/buffer_visualize.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/buffer_visualize/buffer_visualize.gml -------------------------------------------------------------------------------- /Client/scripts/buffer_visualize/buffer_visualize.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/buffer_visualize/buffer_visualize.yy -------------------------------------------------------------------------------- /Client/scripts/chatHandlers/chatHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/chatHandlers/chatHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/chatHandlers/chatHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/chatHandlers/chatHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/entityHandlers/entityHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/entityHandlers/entityHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/entityHandlers/entityHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/entityHandlers/entityHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/friendHandlers/friendHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/friendHandlers/friendHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/friendHandlers/friendHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/friendHandlers/friendHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/friendSenders/friendSenders.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/friendSenders/friendSenders.gml -------------------------------------------------------------------------------- /Client/scripts/friendSenders/friendSenders.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/friendSenders/friendSenders.yy -------------------------------------------------------------------------------- /Client/scripts/gameLoopHandlers/gameLoopHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/gameLoopHandlers/gameLoopHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/gameLoopHandlers/gameLoopHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/gameLoopHandlers/gameLoopHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/gameplaySenders/gameplaySenders.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/gameplaySenders/gameplaySenders.gml -------------------------------------------------------------------------------- /Client/scripts/gameplaySenders/gameplaySenders.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/gameplaySenders/gameplaySenders.yy -------------------------------------------------------------------------------- /Client/scripts/lobbyHandlers/lobbyHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/lobbyHandlers/lobbyHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/lobbyHandlers/lobbyHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/lobbyHandlers/lobbyHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/lobbySenders/lobbySenders.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/lobbySenders/lobbySenders.gml -------------------------------------------------------------------------------- /Client/scripts/lobbySenders/lobbySenders.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/lobbySenders/lobbySenders.yy -------------------------------------------------------------------------------- /Client/scripts/matchmakingSenders/matchmakingSenders.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/matchmakingSenders/matchmakingSenders.gml -------------------------------------------------------------------------------- /Client/scripts/matchmakingSenders/matchmakingSenders.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/matchmakingSenders/matchmakingSenders.yy -------------------------------------------------------------------------------- /Client/scripts/network_write/network_write.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/network_write/network_write.gml -------------------------------------------------------------------------------- /Client/scripts/network_write/network_write.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/network_write/network_write.yy -------------------------------------------------------------------------------- /Client/scripts/partyHandlers/partyHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/partyHandlers/partyHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/partyHandlers/partyHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/partyHandlers/partyHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/partySenders/partySenders.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/partySenders/partySenders.gml -------------------------------------------------------------------------------- /Client/scripts/partySenders/partySenders.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/partySenders/partySenders.yy -------------------------------------------------------------------------------- /Client/scripts/snap_from_messagepack/snap_from_messagepack.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/snap_from_messagepack/snap_from_messagepack.gml -------------------------------------------------------------------------------- /Client/scripts/snap_from_messagepack/snap_from_messagepack.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/snap_from_messagepack/snap_from_messagepack.yy -------------------------------------------------------------------------------- /Client/scripts/snap_to_messagepack/snap_to_messagepack.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/snap_to_messagepack/snap_to_messagepack.gml -------------------------------------------------------------------------------- /Client/scripts/snap_to_messagepack/snap_to_messagepack.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/snap_to_messagepack/snap_to_messagepack.yy -------------------------------------------------------------------------------- /Client/scripts/systemHandlers/systemHandlers.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/systemHandlers/systemHandlers.gml -------------------------------------------------------------------------------- /Client/scripts/systemHandlers/systemHandlers.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/systemHandlers/systemHandlers.yy -------------------------------------------------------------------------------- /Client/scripts/systemSenders/systemSenders.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/systemSenders/systemSenders.gml -------------------------------------------------------------------------------- /Client/scripts/systemSenders/systemSenders.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/scripts/systemSenders/systemSenders.yy -------------------------------------------------------------------------------- /Client/sprites/sBox/1b1ce743-cf5a-4bca-89db-1b51a26f90d0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sBox/1b1ce743-cf5a-4bca-89db-1b51a26f90d0.png -------------------------------------------------------------------------------- /Client/sprites/sBox/layers/1b1ce743-cf5a-4bca-89db-1b51a26f90d0/4dd1e25d-d5c3-401a-91ea-34a17a4f5b62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sBox/layers/1b1ce743-cf5a-4bca-89db-1b51a26f90d0/4dd1e25d-d5c3-401a-91ea-34a17a4f5b62.png -------------------------------------------------------------------------------- /Client/sprites/sBox/sBox.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sBox/sBox.yy -------------------------------------------------------------------------------- /Client/sprites/sDemoButton/e2885e3e-172b-4c2f-8181-ef8b9acd146f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sDemoButton/e2885e3e-172b-4c2f-8181-ef8b9acd146f.png -------------------------------------------------------------------------------- /Client/sprites/sDemoButton/layers/e2885e3e-172b-4c2f-8181-ef8b9acd146f/b001a687-6b1b-4250-a94c-5ad4b2c5909b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sDemoButton/layers/e2885e3e-172b-4c2f-8181-ef8b9acd146f/b001a687-6b1b-4250-a94c-5ad4b2c5909b.png -------------------------------------------------------------------------------- /Client/sprites/sDemoButton/sDemoButton.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sDemoButton/sDemoButton.yy -------------------------------------------------------------------------------- /Client/sprites/sDemoTextbox/259c2ab0-0ad7-4680-bd8e-132bd6041360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sDemoTextbox/259c2ab0-0ad7-4680-bd8e-132bd6041360.png -------------------------------------------------------------------------------- /Client/sprites/sDemoTextbox/layers/259c2ab0-0ad7-4680-bd8e-132bd6041360/a277224d-a0e7-40d8-a091-46a7a0111625.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sDemoTextbox/layers/259c2ab0-0ad7-4680-bd8e-132bd6041360/a277224d-a0e7-40d8-a091-46a7a0111625.png -------------------------------------------------------------------------------- /Client/sprites/sDemoTextbox/sDemoTextbox.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sDemoTextbox/sDemoTextbox.yy -------------------------------------------------------------------------------- /Client/sprites/sPlayer/5fc9e86f-0421-4b61-b103-8ca815cb01ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sPlayer/5fc9e86f-0421-4b61-b103-8ca815cb01ce.png -------------------------------------------------------------------------------- /Client/sprites/sPlayer/layers/5fc9e86f-0421-4b61-b103-8ca815cb01ce/83b7512a-0e85-4d86-83b3-0318be14d92b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sPlayer/layers/5fc9e86f-0421-4b61-b103-8ca815cb01ce/83b7512a-0e85-4d86-83b3-0318be14d92b.png -------------------------------------------------------------------------------- /Client/sprites/sPlayer/sPlayer.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sPlayer/sPlayer.yy -------------------------------------------------------------------------------- /Client/sprites/sSimpleUITextCursor/54531c86-9a16-49dc-bcef-98b28d9f84e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sSimpleUITextCursor/54531c86-9a16-49dc-bcef-98b28d9f84e2.png -------------------------------------------------------------------------------- /Client/sprites/sSimpleUITextCursor/layers/54531c86-9a16-49dc-bcef-98b28d9f84e2/fd7bbfad-19d0-41cb-a1d4-41ce3c0f83fe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sSimpleUITextCursor/layers/54531c86-9a16-49dc-bcef-98b28d9f84e2/fd7bbfad-19d0-41cb-a1d4-41ce3c0f83fe.png -------------------------------------------------------------------------------- /Client/sprites/sSimpleUITextCursor/sSimpleUITextCursor.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sSimpleUITextCursor/sSimpleUITextCursor.yy -------------------------------------------------------------------------------- /Client/sprites/sWall/cd60a35d-c7cc-4101-94ea-3231848d325b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWall/cd60a35d-c7cc-4101-94ea-3231848d325b.png -------------------------------------------------------------------------------- /Client/sprites/sWall/layers/cd60a35d-c7cc-4101-94ea-3231848d325b/a1e8702c-5263-49ad-acc7-3141ebb6b41c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWall/layers/cd60a35d-c7cc-4101-94ea-3231848d325b/a1e8702c-5263-49ad-acc7-3141ebb6b41c.png -------------------------------------------------------------------------------- /Client/sprites/sWall/sWall.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWall/sWall.yy -------------------------------------------------------------------------------- /Client/sprites/sWarpPortal/21bd1984-d018-4390-9953-5e1b79fc8893.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWarpPortal/21bd1984-d018-4390-9953-5e1b79fc8893.png -------------------------------------------------------------------------------- /Client/sprites/sWarpPortal/76376489-dc87-4d16-97df-b26e8771188e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWarpPortal/76376489-dc87-4d16-97df-b26e8771188e.png -------------------------------------------------------------------------------- /Client/sprites/sWarpPortal/940d1034-c97e-4754-9912-32690be030d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWarpPortal/940d1034-c97e-4754-9912-32690be030d7.png -------------------------------------------------------------------------------- /Client/sprites/sWarpPortal/layers/21bd1984-d018-4390-9953-5e1b79fc8893/c26be6ba-e59b-4e62-9b35-f6909c16e692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWarpPortal/layers/21bd1984-d018-4390-9953-5e1b79fc8893/c26be6ba-e59b-4e62-9b35-f6909c16e692.png -------------------------------------------------------------------------------- /Client/sprites/sWarpPortal/layers/76376489-dc87-4d16-97df-b26e8771188e/c26be6ba-e59b-4e62-9b35-f6909c16e692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWarpPortal/layers/76376489-dc87-4d16-97df-b26e8771188e/c26be6ba-e59b-4e62-9b35-f6909c16e692.png -------------------------------------------------------------------------------- /Client/sprites/sWarpPortal/layers/940d1034-c97e-4754-9912-32690be030d7/c26be6ba-e59b-4e62-9b35-f6909c16e692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWarpPortal/layers/940d1034-c97e-4754-9912-32690be030d7/c26be6ba-e59b-4e62-9b35-f6909c16e692.png -------------------------------------------------------------------------------- /Client/sprites/sWarpPortal/sWarpPortal.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Client/sprites/sWarpPortal/sWarpPortal.yy -------------------------------------------------------------------------------- /JavascriptServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/.gitignore -------------------------------------------------------------------------------- /JavascriptServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/README.md -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlePacket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlePacket.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/auth.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/chat.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/custom.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/friends.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/lobby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/lobby.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/matchmaking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/matchmaking.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/party.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/handlers/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/handlers/system.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/middleware.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/sendStuff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/sendStuff.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/_template.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/auth.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/chat.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/custom.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/friends.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/game_loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/game_loop.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/lobby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/lobby.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/matchmaking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/matchmaking.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/party.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/senders/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/senders/system.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/validator.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/validators/friends.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/validators/friends.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/validators/lobby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/validators/lobby.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/validators/matchmaking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/validators/matchmaking.js -------------------------------------------------------------------------------- /JavascriptServer/cmd/validators/party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/cmd/validators/party.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/chat.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/client.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/collider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/collider.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/entity.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/game_mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/game_mode.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/level.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/lobby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/lobby.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/map.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/matchmaking/match.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/matchmaking/match.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/matchmaking/matchmaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/matchmaking/matchmaker.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/matchmaking/party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/matchmaking/party.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/matchmaking/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/matchmaking/queue.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/matchmaking/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/matchmaking/ticket.js -------------------------------------------------------------------------------- /JavascriptServer/concepts/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/concepts/room.js -------------------------------------------------------------------------------- /JavascriptServer/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/config.js -------------------------------------------------------------------------------- /JavascriptServer/entities/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/entities/box.js -------------------------------------------------------------------------------- /JavascriptServer/entities/physics_entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/entities/physics_entity.js -------------------------------------------------------------------------------- /JavascriptServer/entities/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/entities/player.js -------------------------------------------------------------------------------- /JavascriptServer/entities/unknown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/entities/unknown.js -------------------------------------------------------------------------------- /JavascriptServer/entities/wall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/entities/wall.js -------------------------------------------------------------------------------- /JavascriptServer/entities/warp_portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/entities/warp_portal.js -------------------------------------------------------------------------------- /JavascriptServer/game_modes/1v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/game_modes/1v1.js -------------------------------------------------------------------------------- /JavascriptServer/game_modes/5v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/game_modes/5v5.js -------------------------------------------------------------------------------- /JavascriptServer/game_modes/ffa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/game_modes/ffa.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/00_exit_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/00_exit_handler.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/01_globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/01_globals.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/02_mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/02_mongodb.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/03_console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/03_console.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/10_entities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/10_entities.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/11_levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/11_levels.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/12_maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/12_maps.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/13_game_modes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/13_game_modes.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/14_lobbies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/14_lobbies.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/15_chats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/15_chats.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/16_cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/16_cmd.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/20_matchmaker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/20_matchmaker.js -------------------------------------------------------------------------------- /JavascriptServer/initializers/21_ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/initializers/21_ping.js -------------------------------------------------------------------------------- /JavascriptServer/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/jsconfig.json -------------------------------------------------------------------------------- /JavascriptServer/levels/1v1level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/levels/1v1level.js -------------------------------------------------------------------------------- /JavascriptServer/levels/stress_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/levels/stress_test.js -------------------------------------------------------------------------------- /JavascriptServer/levels/test_level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/levels/test_level.js -------------------------------------------------------------------------------- /JavascriptServer/levels/test_level2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/levels/test_level2.js -------------------------------------------------------------------------------- /JavascriptServer/maps/1v1map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/maps/1v1map.js -------------------------------------------------------------------------------- /JavascriptServer/maps/globalmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/maps/globalmap.js -------------------------------------------------------------------------------- /JavascriptServer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/package-lock.json -------------------------------------------------------------------------------- /JavascriptServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/package.json -------------------------------------------------------------------------------- /JavascriptServer/packet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/packet.js -------------------------------------------------------------------------------- /JavascriptServer/schemas/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/schemas/account.js -------------------------------------------------------------------------------- /JavascriptServer/schemas/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/schemas/chat.js -------------------------------------------------------------------------------- /JavascriptServer/schemas/friend_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/schemas/friend_request.js -------------------------------------------------------------------------------- /JavascriptServer/schemas/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/schemas/profile.js -------------------------------------------------------------------------------- /JavascriptServer/schemas/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/schemas/session.js -------------------------------------------------------------------------------- /JavascriptServer/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/server.js -------------------------------------------------------------------------------- /JavascriptServer/util/artificial_delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/artificial_delay.js -------------------------------------------------------------------------------- /JavascriptServer/util/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/auth.js -------------------------------------------------------------------------------- /JavascriptServer/util/deep_merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/deep_merge.js -------------------------------------------------------------------------------- /JavascriptServer/util/load_room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/load_room.js -------------------------------------------------------------------------------- /JavascriptServer/util/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/logging.js -------------------------------------------------------------------------------- /JavascriptServer/util/maths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/maths.js -------------------------------------------------------------------------------- /JavascriptServer/util/names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/names.js -------------------------------------------------------------------------------- /JavascriptServer/util/random_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/JavascriptServer/util/random_id.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/README.md -------------------------------------------------------------------------------- /Release/GMClient.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Release/GMClient.zip -------------------------------------------------------------------------------- /Release/JSServer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Release/JSServer.zip -------------------------------------------------------------------------------- /Release/TSServer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Release/TSServer.zip -------------------------------------------------------------------------------- /Release/Warp.yymps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Release/Warp.yymps -------------------------------------------------------------------------------- /Release/WebClient.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/Release/WebClient.zip -------------------------------------------------------------------------------- /TypescriptServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/.gitignore -------------------------------------------------------------------------------- /TypescriptServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/README.md -------------------------------------------------------------------------------- /TypescriptServer/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/jsconfig.json -------------------------------------------------------------------------------- /TypescriptServer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/package.json -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlePacket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlePacket.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/auth.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/chat.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/custom.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/friends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/friends.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/lobby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/lobby.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/matchmaking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/matchmaking.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/party.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/party.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/handlers/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/handlers/system.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/middleware.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/sendStuff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/sendStuff.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/_template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/_template.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/auth.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/chat.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/custom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/custom.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/friends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/friends.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/game_loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/game_loop.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/lobby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/lobby.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/matchmaking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/matchmaking.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/party.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/party.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/senders/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/senders/system.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/validator.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/validators/friends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/validators/friends.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/validators/lobby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/validators/lobby.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/validators/matchmaking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/validators/matchmaking.ts -------------------------------------------------------------------------------- /TypescriptServer/src/cmd/validators/party.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/cmd/validators/party.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/chat.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/client.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/collider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/collider.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/entity.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/game_mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/game_mode.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/level.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/lobby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/lobby.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/map.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/matchmaking/match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/matchmaking/match.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/matchmaking/matchmaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/matchmaking/matchmaker.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/matchmaking/party.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/matchmaking/party.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/matchmaking/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/matchmaking/queue.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/matchmaking/ticket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/matchmaking/ticket.ts -------------------------------------------------------------------------------- /TypescriptServer/src/concepts/room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/concepts/room.ts -------------------------------------------------------------------------------- /TypescriptServer/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/config.ts -------------------------------------------------------------------------------- /TypescriptServer/src/entities/box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/entities/box.ts -------------------------------------------------------------------------------- /TypescriptServer/src/entities/physics_entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/entities/physics_entity.ts -------------------------------------------------------------------------------- /TypescriptServer/src/entities/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/entities/player.ts -------------------------------------------------------------------------------- /TypescriptServer/src/entities/unknown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/entities/unknown.ts -------------------------------------------------------------------------------- /TypescriptServer/src/entities/wall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/entities/wall.ts -------------------------------------------------------------------------------- /TypescriptServer/src/entities/warp_portal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/entities/warp_portal.ts -------------------------------------------------------------------------------- /TypescriptServer/src/game_modes/1v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/game_modes/1v1.ts -------------------------------------------------------------------------------- /TypescriptServer/src/game_modes/5v5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/game_modes/5v5.ts -------------------------------------------------------------------------------- /TypescriptServer/src/game_modes/ffa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/game_modes/ffa.ts -------------------------------------------------------------------------------- /TypescriptServer/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/global.d.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/00_exit_handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/00_exit_handler.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/01_globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/01_globals.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/02_mongodb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/02_mongodb.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/03_console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/03_console.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/10_entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/10_entities.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/11_levels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/11_levels.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/12_maps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/12_maps.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/13_game_modes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/13_game_modes.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/14_lobbies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/14_lobbies.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/15_chats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/15_chats.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/16_cmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/16_cmd.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/20_matchmaker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/20_matchmaker.ts -------------------------------------------------------------------------------- /TypescriptServer/src/initializers/21_ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/initializers/21_ping.ts -------------------------------------------------------------------------------- /TypescriptServer/src/levels/1v1level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/levels/1v1level.ts -------------------------------------------------------------------------------- /TypescriptServer/src/levels/stress_test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/levels/stress_test.ts -------------------------------------------------------------------------------- /TypescriptServer/src/levels/test_level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/levels/test_level.ts -------------------------------------------------------------------------------- /TypescriptServer/src/levels/test_level2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/levels/test_level2.ts -------------------------------------------------------------------------------- /TypescriptServer/src/maps/1v1map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/maps/1v1map.ts -------------------------------------------------------------------------------- /TypescriptServer/src/maps/globalmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/maps/globalmap.ts -------------------------------------------------------------------------------- /TypescriptServer/src/packet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/packet.ts -------------------------------------------------------------------------------- /TypescriptServer/src/schemas/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/schemas/account.ts -------------------------------------------------------------------------------- /TypescriptServer/src/schemas/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/schemas/chat.ts -------------------------------------------------------------------------------- /TypescriptServer/src/schemas/friend_request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/schemas/friend_request.ts -------------------------------------------------------------------------------- /TypescriptServer/src/schemas/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/schemas/profile.ts -------------------------------------------------------------------------------- /TypescriptServer/src/schemas/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/schemas/session.ts -------------------------------------------------------------------------------- /TypescriptServer/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/server.ts -------------------------------------------------------------------------------- /TypescriptServer/src/types/bbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/types/bbox.ts -------------------------------------------------------------------------------- /TypescriptServer/src/types/client_properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/types/client_properties.ts -------------------------------------------------------------------------------- /TypescriptServer/src/types/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/types/point.ts -------------------------------------------------------------------------------- /TypescriptServer/src/types/socktype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/types/socktype.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/artificial_delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/artificial_delay.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/auth.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/deep_merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/deep_merge.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/load_room.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/load_room.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/logging.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/maths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/maths.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/names.ts -------------------------------------------------------------------------------- /TypescriptServer/src/util/random_id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/src/util/random_id.ts -------------------------------------------------------------------------------- /TypescriptServer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/TypescriptServer/tsconfig.json -------------------------------------------------------------------------------- /WebClient/GMOF/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/WebClient/GMOF/config.js -------------------------------------------------------------------------------- /WebClient/GMOF/gmof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/WebClient/GMOF/gmof.js -------------------------------------------------------------------------------- /WebClient/GMOF/handlePacket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/WebClient/GMOF/handlePacket.js -------------------------------------------------------------------------------- /WebClient/GMOF/sendStuff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/WebClient/GMOF/sendStuff.js -------------------------------------------------------------------------------- /WebClient/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/WebClient/index.html -------------------------------------------------------------------------------- /WebClient/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/WebClient/index.js -------------------------------------------------------------------------------- /autorelease/.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ 3 | out/ -------------------------------------------------------------------------------- /autorelease/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/autorelease/README.md -------------------------------------------------------------------------------- /autorelease/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/autorelease/gulpfile.js -------------------------------------------------------------------------------- /autorelease/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/autorelease/package.json -------------------------------------------------------------------------------- /autorelease/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/autorelease/release.js -------------------------------------------------------------------------------- /create-warp-app/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /create-warp-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/create-warp-app/README.md -------------------------------------------------------------------------------- /create-warp-app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/create-warp-app/index.js -------------------------------------------------------------------------------- /create-warp-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evolutionleo/Warp/HEAD/create-warp-app/package.json --------------------------------------------------------------------------------