DusanFedorcak / mmo

Simple top-down multiplayer game in Godot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AGENTS 0.1

Simple top-down multiplayer game in Godot. It is a pure hobby project written just to find out how difficult is to write a server-governed multi-player game in Godot.

It's not a complete game, it only has a few essential features and can be used as an inspiration on how to deal with server-client communication in your Godot projects.

screenshot

Features

The project features a multiplayer game where each player controls a single character by issuing commands rather than directly controlling the character's movement. This was a design choice as such a control scheme is more suitable to slower-paced RPGs (or RTSs) which I'm more interested in than FPSs. The code can be easily modified to allow for controlling multiple units (RTS style)

  • game features
    • character movement around a map
    • inventory & usable items
    • scanline weapons
    • basic health & damage logic
  • multi-player code
    • lobby & chat
    • full server authority sync scheme
    • fast unreliable updates for the world state
    • slower reliable updates for events (e.g. player join, item pickup, effects, etc.)
  • tile sets
    • all tile types used (auto-tiles, atlas tiles, single tiles)
    • working YSort for large single tiles (with the correct origin at the bottom)
  • AI
    • collision-based sensors for hearing and sight
    • A* navigation with preferred paths (roads) and obstacles working with tilesets collision & navigation shapes
    • rudimentary AI for NPCs (walk around and say lines)

There will not be any active development soon but do not miss the dev branch where you can find some interesting features around AI

  • light-weight, script-driven GOAP in Godot
  • A needs system that generates goals for GOAP to plan and execute
  • A memory system that allows an agent to remember significant facts and let GOAP utilize it when planning

Design Philosophy

The main principle I followed was make it as simple as possible. There are some detailed tutorials but often cover too many non-essential features. I tried to put just a bare minumum to make it playable and to showcase essential features in the multiplayer game use-case. Currently, the whole project has ~1200 loc.

I also tried to follow best practices recommended by the Godot team (like aggregation over inheritance, encapsulating scripts to nodes they affect, etc.) but to keep it simple, there are some tradeoffs. Many things can be (and should be) done differently for the bigger project. Anyway, I believe in short iterations and adding stuff only when necessary.

For the net code, I used Godot's high-level multiplayer framework which works perfectly for my use-case. I've mixed the server and the client code and extensively used remotesync keyword where any update to both server/client was needed, occasionally adding master/puppet to indicate special cases.

I've separated the server section and the remote section in the code so it can be seen what runs on the server only and what's propagated to clients. The code isn't fully commented but should be self-explanatory. I tried to explain myself when the code started to look hairy.

Future Development

The project isn't by any means feature complete and I do not guarantee or plan to add new features in the near future. I might continue with the development and put more stuff in (especially around NPCs AI support) but it really depends on my free time.

Anyway, I welcome comments, suggestions, or bug reports but cannot guarantee I'll integrate it. Feel free to fork it for yourself.

License

Published under MIT license but there are some files (tilesets) that are for non-commercial uses only!

Credits

Many, many thanks to:

About

Simple top-down multiplayer game in Godot

License:MIT License


Languages

Language:GDScript 100.0%