Skip to content
forked from davenonymous/tWAMP

Implementation of the WebSocket Application Messaging Protocol for SourceMod

Notifications You must be signed in to change notification settings

sumonst21/tWAMP

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

I have some questions!

What is this?

A server-side implementation of the WAMP specification for Sourcemod. It basically allows to define RPC methods and create PubSub channels in SourceMod without having to worry about implementation specifics.

Why should i NOT run this?

Because it's currently a project for fun only. At its current state I would not recommend running this on a productive server.

I don't care! What do I need?

Ok, you know what you are doing. Links should be enough then.

If this is server-side, how do I implement the client-side of all this?

You can use the Autobahn.js client library by Tavendo. You should also take a look at some of the examples in the htdocs folder.

There is no documentation yet!?

Indeed. Though there is not really much to know.

In a nutshell:

It's all JSON

  • Use the SMJansson extension to read passed parameters and format results.

Channels

  • Register a channel (those can't be shared atm, so use a unique name).
  • The callback will fire everytime somebody published something in the channel, even if it was the plugin itself.
  • Publish something to the channel.
  • Un-register the channel on plugin end.

RPC

  • Register a method.
  • The callback will fire everytime the method is called. hResult must be a valid SMJansson handle.
  • Un-register the method on plugin end.

About

Implementation of the WebSocket Application Messaging Protocol for SourceMod

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published