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...
-
After my last post, I decided to benchmark the scaling properties of Stackless, Kamaelia, Fibra using the same hackysack algorithm. Left axi...
-
It is about 8 degrees C this morning. So cold, especially when last week we had high twenties. To help solve the problem, a friend suggeste...
-
So, you've created a car prefab using WheelCollider components, and now you can apply a motorTorque to make the whole thing move along. ...
-
Why would I ask that question? Python 3 has been available for some time now, yet uptake is slow. There aren't a whole lot of packages i...
-
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...
-
I've just uploaded Fibra 2 to the cheeseshop. Fibra 2 includes the promised non-blocking plugin, which allows a generator based task to...
-
I've just read a newspaper article (courtesy of Kranzky ) from WA Business News documenting the malfeasance, gross negligence and misc...
-
I just received a link to this rather incriminating writeup about IZ Corporate management tactics. It reeks of dishonesty, fraud and greed....
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