Maintained by @evolutionleo
If you have any questions, please join my Discord
- Simple API to send/process packages on both server and client sides with a single line of code
- No need to deal with buffers whatsoever
- Advanced systems: server-side physics, entities, lobbies, account/profile system, saving/loading data with MongoDB
- Well-commented source code for better readability
- NodeJS server can run on a Linux hosting/dedicated server, as opposed to servers in GML
- MIT license (you can use Warp in commercial projects and contribute/modify it in any way)
- Chess Example (uses v5.0)
- Platformer Example (uses v3.0)
- Pong Example (uses v3.0)
- You need to have NodeJS and npm installed
- Install the package with
npm i -g @evoleo/create-warp-app
- Run
npx create-warp-app
- Select the client and server templates
- Done! The script will automatically bootstrap a new project from the latest release
- Install .yymps from the latest release
- Import it to your project using GameMaker's Local Package system (you can also choose to include the Demo) OR
- Install GMClient.zip and unzip it
-
Install NodeJS (along with npm)
-
Install VS Code (or use any other code editor of your choice)
-
(TypeScript) Install the Typescript compiler with
npm i -g typescript
-
Download JSServer.zip or TSServer.zip from the latest release
-
Open the clonned folder in the command line (or open the folder in VS Code)
-
Run
npm install
-
(Optional) To use the accounts/saving system, install the database engine:
- Install MongoDB
- Choose the default settings, it should now run in the background
- Done!
If you don't need MongoDB - please disable it in the server's config file (it's under common_config.db_enabled), otherwise you will get an error!
Congratulations on completing the Installation step!
Starting with netcode might be a bit overwhelming at first (even to experienced devs), which is why I tried to make implementing basic client/server interaction as simple and straightforward as possible:
Sending a message to the server might be as easy as:
send({ cmd: "hello", str: "Hello, Server!" })
or even (if you create a wrapper function):
sendHello()
GML:
addHandler("hello", function(data) {
show_debug_message(data.str)
})
JS/TS:
addHandler("hello", (client, data) => {
console.log(`${client.name} says: ${data.str}`)
})
- Add new maps in the
maps/
folder - Choose how many lobbies you want to create initially in
initializers/04_lobbies.js
- Use the commands
"lobby list"
,"lobby join"
,"lobby leave"
to work with lobbies - Configure lobbies' behaviour inside the server's config file (under config.lobby)
- If you need any specific features for your game that aren't supported by existing configs,
- You can extend/change the
Lobby
class inconcepts/lobby.js
and theMap
class inconcepts/map.js
- (You can always disable entities and rooms completely from
config.js
if you don't need the functionality for your game) - Entity types are located inside
entities/entity_types/
, you can add new ones or modify/delete the existing ones - Your custom entities generally should inherit from
PhysicsEntity
if they are moving and colliding with other entities, and from the regularEntity
class otherwise - You only need to code the entities behaviour logic once, on the server-side. The client will then interpolate between the data that it receives
- The
Entity.create()
andEntity.update(dt)
methods function similarly to GameMaker's Create and Step events (excepttps
(the game's tickrate) is 20 by default as opposed to 60 in GM, and so it's recommended to use thedt
(aka "delta time") parameter to implement your game physics in a tickrate-agnostic way) - The
Entity.object_type
property links the server-side entities to GameMaker's instances/objects - Rooms are automatically loaded with all the entities from GameMaker's .yy files from a path defined in
config.js
(by default it's a path to theClient/rooms/
folder)
- Make sure you installed MongoDB (instructions in the Installing section)
- Use the "register" and "login" commands on the client-side, the server will do all the authentification for you
- Info: "Account" is an object that holds a pair of login + password, and some data bound to them, while "Profile" is intended to hold the actual gameplay data. One Account could theoretically have many Profiles bound to it
- You can access the gameplay data of each client in
c.profile.%some_variable%
, it will save automatically - If you want to add new properties, extend the schemas in the
schemas/
folder
- Client runs as a normal GMS2 project
- (TypeScript) Compile the server by running
npx tsc
(ornpx tsc -w
to avoid recompiling after every change) - To start the server, navigate to its folder and run
node .
ornpm run dev
in the command line
- Edit the server configs inside
config.js
- Edit the client configs inside
__NetworkingConfig.gml
- Select the server config by appending
--env=prod
or--env=dev
parameter to thenode .
command - Select the client config by clicking the 'target' button in the top-right corner of IDE
- Install Node.js and npm
- Install and configure MongoDB if you're using it in your project
- Copy the JS/TS
Server
folder over, along with therooms/
folder from the GameMaker's project - Navigate to the folder in command line
- Install all the necessary packages using
npm install
- Run
npm run prod
ornode . --env=prod
- (Optional) Use a tool like PM2 for running the server in the background and managing the process
- Don't forget to change the client's config to "Prod" by clicking the target button in the top right corner of the IDE!
- Please try to keep the coding style consistent with the rest of the project (e.x. use tabs instead of spaces, etc.)
- When modifying the server code - please only edit the TypeScript version, as it can be then automatically translated to JS, but not the other way around
- After you've made your changes to the TS server, go to /autorelease/ and run
npm run release
to compile everything to JS and create the .zip files in /Release/ - I only accept pull requests with new features that in my opinion make sense for the framework, so if you want to introduce a brand new feature, please lmk first (create a new issue or ask on Discord) because it could be either something that I don't want to be a part of Warp, or it already has an alternative, or it's just something that I'd want to implement myself
- Check if someone has already made an issue about your bug/feature on the issues tab
- If not, open a new issue detailing the bug that you found in Warp/the feature that you want to be implemented
- If it's a feature request, please write why it makes sense to include it/what problem it solves
- Messagepack serialization format
- @jujuadams's SNAP library, which enables Messagepack's encoding/decoding inside GameMaker
- NodeJS Messagepack encoder/decoder
- rm2kdev's really old series on creating an MMO in GMS 1.4+Node.js that inspired all this
- Pull request for the first TypeScript version: @davawen
- @YellowAfterlife's execute_shell_simple extension
- Framework by: @evolutionleo (me)