On Monday, January 6, 2014 12:02:31 PM UTC-5, blis...@gmail.com wrote:
> I love programming in python but I'm having trouble deciding over a framework 
> for a single player MUD like game I'm making for fun. Ideally it's a 
> cross-platform free framework in case I want make it open source later with 
> good capabilities of customizing the GUI look/style.
> 
> 
> 
> Currently I'm using wxpython which is great but I'm reading that if I want 
> more customization over the look (i.e. a frame being all black and not using 
> windows 7 blue borders) 

You can turn off some of the frame style flags and make the frame look a number 
of different ways, though the point in a frame in wxPython is *native*, and so 
will be limited in look to what the OS natively draws.  (So, in a sense, don't 
blame wxPython, blame Windows, OS X, or Linux, if you want). You'd have to 
describe what you mean by "all black" more (I mean, do you want a top border at 
all?  Do you want a gripper?  Full screen? Etc), but I suggest you ask on the 
wxPython list and they can tell you best what is and what is not possible. My 
guess is that whatever you have in mind that is beyond wxPython's capabilities 
is going to fall into YAGNI territory (user-experience-wise) anyway.

> Keep in mind this is only a text based game so 3D is not needed. Perhaps I 
> have to forgo my love of python for something else?

I highly doubt that.  I'm sure whatever you want to do is doable with Python.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to