Also, does anyone know of any previous browser game attempts with
Python or Django in general? My research yields little to no such
projects.
> Also, does anyone know of any previous browser game attempts with
> Python or Django in general? My research yields little to no such
> projects.
The only thing that comes to mind is Jacob's Sudoku app, which he
built for his talk at PyCon Dallas:
http://www.jacobian.org/2006/mar/02/django-at-pycon/
http://www.jacobian.org/sudoku/
Cheers,
Simon
My Dark Secret is a Django-powered game site: http://www.mydarksecret.com/ .
Adrian
--
Adrian Holovaty
holovaty.com | djangoproject.com
Power sets / items (loot) are a good example, if your game will have
it. They translate well into Django models. CCG toos.
If your game relies on dynamic stuff (DOM and XMLHTTPRequest), it
might be a little harder, since I believe models will be developed to
respond to the user's actions, but careful planning takes care of
that.
But what do you mean by browser game framework? I've seen plenty of
Javascript libraries to emulate side-scrollers and puzzles, but few
things on the server side. There are some iniciatives for turn based
strategy and rpg games (like http://tm.hypermutt.com/ and
phprpg.org/). I guess you'll need to pick a genre to have a game
framework on top of the Django web-framework, and these two are the
most well suited for the medium.
On 6/16/06, gastaco <gas...@gmail.com> wrote:
>
--
Julio Nobrega - http://www.inerciasensorial.com.br
Julio Nobrega wrote:
> I had plenty of ideas for browser based games and I can't remember
> one that I thought Django couldn't handle. In fact, depending on the
> game mechanics, certain things are easier.
>
> Power sets / items (loot) are a good example, if your game will have
> it. They translate well into Django models. CCG toos.
>
> If your game relies on dynamic stuff (DOM and XMLHTTPRequest), it
> might be a little harder, since I believe models will be developed to
> respond to the user's actions, but careful planning takes care of
> that.
>
> But what do you mean by browser game framework? I've seen plenty of
> Javascript libraries to emulate side-scrollers and puzzles, but few
> things on the server side. There are some iniciatives for turn based
> strategy and rpg games (like http://tm.hypermutt.com/ and
> phprpg.org/). I guess you'll need to pick a genre to have a game
> framework on top of the Django web-framework, and these two are the
> most well suited for the medium.
>