Search results

  1. J

    Caanoo / WIZ Wiz Prototype Ext Pinout

    I think yesterday you found the pinout, it would be great if you could post it here for reference.
  2. J

    Python And Pygame

    That's right. Though, pyglet uses GL_QUADs instead of triangles, and those are not supported by OpenGL ES (afaik). Also, I don't know if/how AVBin works, and if it's portable, so pyglet might not be able to use any sound. Other than that, it might work, since it's pure python (and therefore slow...
  3. J

    Python And Pygame

    Orkie was so kind to give me the link to Python 2.6/Pygame: http://x11.gp2x.de/openwiz/python-wiz-2.6.tar.bz2 Thanks Orkie! Some pygame gotchas: font module is missing touchscreen (mouse input) does not work can only load BMP files WIZ button definitions are in pygame.gp2x.locals screen...
  4. J

    Python And Pygame

    I'm also very interested in Python/Pygame for the wiz. Seeing how it was ported to the GP2X a long while ago, it should be possible. At the moment I'm trying to port it, but I'm useless.
  5. J

    GP2X Messy F200 Touchpad X-coord, Or Just Me?

    Here is some cheap interpolating for you: CODE // Returns 1 when pressed, 0 otherwise, fills given integers with // the coords of the touch (fills with -1 if not touched). px and py // should be the coords received from the last call of this function. bool getTouch(int& px, int& py) { if...
Back
Top