Code Monkey home page Code Monkey logo

godot-matcha's Introduction

godot-matcha

Easy webrtc matchmaking using WebTorrent tracker.
This project uses webtorrent to do signaling. This allows you to connect players peer2peer without a server!
I plan on improving this library and add more features. Stay tuned!

Installation

  1. Copy addons/matcha to your godot project.
  2. For non browser builds: Install webrtc-native
  3. Done!

Usage

Example (Mesh):

extends Node

var mp1 := MatchaRoom.create_mesh_room({ "identifier": "my-unique-game-identifier" })
var mp2 := MatchaRoom.create_mesh_room({ "identifier": "my-unique-game-identifier" })

func _init():
	mp1.peer_joined.connect(func(_id, peer):
		print("(1) Peer connected: ", peer.peer_id)
	)

	mp1.peer_left.connect(func(_id, peer):
		print("(1) Peer disconnected: ", peer.peer_id)
	)

	mp2.peer_joined.connect(func(_id, peer):
		print("(2) Peer connected: ", peer.peer_id)
	)

	mp2.peer_left.connect(func(_id, peer):
		print("(2) Peer disconnected: ", peer.peer_id)
	)

Example (Server/Client):

extends Node

var server := MatchaRoom.create_server_room()
var client := MatchaRoom.create_client_room(server.room_id) # Client must know the room id

func _init():
	server.peer_joined.connect(func(_id, peer):
		print("(server) Peer connected: ", peer.peer_id)
	)

	server.peer_left.connect(func(_id, peer):
		print("(server) Peer disconnected: ", peer.peer_id)
	)

	client.peer_joined.connect(func(_id, peer):
		print("(client) Peer connected: ", peer.peer_id)
	)

	client.peer_left.connect(func(_id, peer):
		print("(client) Peer disconnected: ", peer.peer_id)
	)

Changelog

29. Dec. 2023

  • Replaced asserts with push_error + Error return value
    • This fixed some nasty invisible bugs
  • Added example for server/client implementation
  • Improved MatchaPeer class
    • Made it extend from WebRTCPeerConnection
  • Improved MatchaRoom class
    • Made it extend from MultiplayerPeer
    • Added peer_joined/peer_left signals for direct access to the peer
    • Changed naming from info_hash to room_id
    • Added client/server/mesh functionality
  • Improved TrackerClient class
    • Proper user-agent for non-web environment
    • Cleaner code
    • More documentation
  • Prepared nostr implementation
    • In the future you can use nostr aswell as webtorrent
  • Prepared lobby implementation
    • In the future you can find/list/create lobbies

26. Dec. 2023

  • Replaces EventEmitter with native Signals
    • EventEmitter did not improve RefCounted reference issue behaviour so replaced it with signals
  • Removed TrackerRoom class
    • Got replaced with MatchaRoom
  • Exposed MatchaRoom class
    • Using multiplayer api
  • Added example game "bobble"
  • Added web export github page for example

23. Dec. 2023

  • Initial commit
  • Exposed TrackerRoom class

Thanks to

I got the idea for using webtorrent for signaling from that project.
Big thanks :)

godot-matcha's People

Contributors

freehuntx avatar jrburga avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.