I've been working on something new. I get a lot of projects where I have to add multiuser functionality. Finally I've made the jump to Python 3, and built a generic multi-user game server, so I can stop rewriting this sort of thing for every new project. It's using the most excellent asyncio framework, with aiopg for Postgresql support.
The server code is on GitHub, the Unity3D client is still in progress.
Those tedious functions, such as Registration, Authentication, Reset Password, Messaging, Rooms and Object storage are solved, may I never have to write a "Reset Password" module again!
Thursday, November 13, 2014
Subscribe to:
Post Comments (Atom)
Popular Posts
-
These are the robots I've been working on for the last 12 months. They each weigh about 11 tonnes and have a 17 meter reach. The control...
-
This hard-to-see screenshot is a Generic Node Graph Editing framework I'm building. I'm hoping it can be used for any kind of node...
-
So, you've created a car prefab using WheelCollider components, and now you can apply a motorTorque to make the whole thing move along. ...
-
MiddleMan: A Pub/Sub and Request/Response server in Go. This is my first Go project. It is a rewrite of an existing Python server, based o...
-
Often, when building a game, you need to test if objects are colliding. The objects could be spaceships, rocks, mouse pointers, laser beams....
-
I've just read a newspaper article (courtesy of Kranzky ) from WA Business News documenting the malfeasance, gross negligence and misc...
-
After my last post, I decided to benchmark the scaling properties of Stackless, Kamaelia, Fibra using the same hackysack algorithm. Left axi...
-
Possibly slightly more correct lighting. The rim light is now only applied in the direction of the sun, rather than being purely based on vi...
-
Update: This is another planet shader, with more physical fidelity. Shader "Planet" { Properties { _MainTex ("Diff...
-
At the last few GameJams, I've seen an increase in the use of RAD game tools, some of them even being developed by the participants them...
5 comments:
Love it. I'm amazed how clean modern python async code can be.
Also, a very nice example of asyncio with postgresql. Do you know of any other good examples?
Knowing how racy this type of code can be... are you going to add tests of some sort?
Some of the types seem a bit off. Like when you add to contact, it's as a string, where as they should be int types. https://github.com/DifferentMethods/netwrok-server/blob/master/netwrok/contacts.py
Really nice. Especially after having a look at some asyncore code recently! This is 1,000,000 times cleaner.
I've just been using the aiopg manual, the API is very different from psycopg. Tests and fixes are coming!
Looking forward to watching you as you go.
Like Rene, i'm amazed at how amazingly succinct the code is.
Was thinking of branching to work on room based objects with sync...
@jos Room based objects with sync... not sure what you mean? Like shared objects in a room that a synced to clients when modified?
Post a Comment