This is something I've been helping build for quite some time now, and it is almost done.
It is an educational MMOG. It is powered by Python out the back, and Unity3D at the front. The Python server(s) are running Python 2.7, with Greenlets :-) and ZeroMQ for IPC. We had to design our own ORM, because SQLAlchemy (our first choice) didn't play well with the asynchronous Psycopg2 extension. The backend is loosely based on an Entity Component architecture, which is quite elegant and a joy to work with. It has been so easy to modify and extend, that I think I'll be using this architecture for most of my new projects.
Soon, the whole system will be battle tested by hordes of screaming children. I am confident it will weather the storm, and more. :-)
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...
-
Something like this: CORE_COUNT = 2 #This is how many CPUs or cores we have to play with. def xmap(fn, seq): """ Run a fu...
-
So, you've created a car prefab using WheelCollider components, and now you can apply a motorTorque to make the whole thing move along. ...
-
Often, when building a game, you need to test if objects are colliding. The objects could be spaceships, rocks, mouse pointers, laser beams....
-
Summary: NodeJS wins. Test Program ab -n 10000 -c 5 http://localhost/ Gevent Code from gevent import wsgi class WebServer(object): def a...
-
I think ER diagrams are very handy tools for designing data requirements for a game. I don't see them given away or even talked about (i...
-
Working with multiple threads is often a necessary evil. This is how I do it safely inside a Unity3D component. There are only certain times...
-
This script takes a screenshot and saves it to the user desktop. It has options to use an alpha background, and also upscale the image. Usef...
-
When someone sends me an exe file, or an ActiveX DLL, and asks me to help out with something software related... I don't. I haven't ...
-
Just 514 lines of code. Uses sockets only, no other dependencies. https://github.com/simonwittber/uniwebserver Example Component: [Req...
6 comments:
Congrats! It's looking really good.
would love to know what changes/enhancements you think SQLAlchemy would need to support asynchronous usage. If concepts like unit of work and all that still apply, etc.
sorry for the comment spam, but I've just done some testing with greenlets/SQLAlchemy, if you just use the set_wait_callback hook (see https://bitbucket.org/dvarrazzo/psycogreen/src/77a9c05f5229/gevent/psyco_gevent.py), SQLAlchemy works just great with psycopg2 async + gevent. I just ran some stress tests, runs great (about 20% faster than a similar threaded example) What's the downside there ?
RE: SQLAlchemy, keep in mind this project started almost two years ago, so it's more than likely any problems we had have been fixed. I wish I could remember where the issue was, and I think I remember discussing it with you... Either way, it's great that it is working.
Hi, I would like to talk about this process (Python - Unity3D). I'm needing use something like this in my research here in Brazil. So, Simon if we can talk more.. Please, take my e-mail marceloxramos3d@gmail.com
Thanks
I would love to see a blog post with some sample code (both client and server) on how to hook up Unity to a python server. I have been googling and can't find anything other than connecting Unity to Unity.
I don't suppose your project is open source??
Your architecture is exactly what I am interested for some simple multiplayer gaming.
Thanks!
- Gardner
Post a Comment