Search results

  1. H

    My First Class

    Hard to say considering that you have not shown the code where you define "screen", nor said exactly what happened when you write on the screen. Maybe it is just that something went wrong at the initialization, so your screen pointer points nowhere.
  2. H

    Question About Buying A Gp2x At.....

    With Play-asia, you buy directly in Asia, so I think that you don't pay all the taxes that you should pay when your product enters Europe. Theoretically, they should attach the bill to the packet, and the customs could ask you to pay the taxes.
  3. H

    Mame Gp2x Inline Assembler For Vector Games

    Do never use float on GP2X. It is extremely slow. As Franxis said, use fixed point arithmetic. Let's be a bit more precise on the example Let's say you use 24.8 representation (24 bits for the integer part and 8 bits for the remaining part). The precision of the number you can define will be...
  4. H

    Drod-gp2x V1.0

  5. H

    Drod-gp2x V1.0

    Stable version of my GP2X port of this puzzle / dungeon crawling game. New features: - Undo (even when you are dead!) - Mimic view: in zoom mode, switch between your mimics. Bug fixes: - Bug fixed in fullscreen interpolation (looks nicer now) - Invisibility potion does not cause slowdown...
  6. H

    Drod For Gp2x

    For the sound, DROD-Architect Edition uses FMod, a free (as in free beer) but not open-source library. There is therefore no way to compile it for ARM. However, recent versions of DROD are using SDL for sound, so I could try to port sound modules of recent versions to the old source. Maybe in a...
  7. H

    Drod For Gp2x

    No. The commercial data uses a more recent version of the engine, which is also open-source, but has higher memory requirement. I have a working prototype at home, but it uses swap on SD-Card, which is a Bad Thing. It take 2 minutes to start, too. It could be than one day I try to optimize it...
  8. H

    Wifi Sd Card Announced

    I did not know that. After a quick googling, it seems that some are actually supported by Linux PDAs. Interesting... So the innovation of this Memory/WiFi card seems to be this integrated file server. Not really interesting for GP2X users.
  9. H

    Wifi Sd Card Announced

    As far as I understand, this card is not exactly a WiFi card. It is both a memory card and a Wifi file server, giving access to distant machines to the files that the memory contains. It does not mean that it will be impossible to use it as a WiFi card, but it will most certainly require some...
  10. H

    Drod For Gp2x

    DROD (Deadly Rooms of Death) is a Dungeon crawling / Puzzle game developed by Caravel Games ( http://www.caravelgames.com ) Its principle is simple: you inspect dungeons, you fight monsters with your sword, in turn-by-turn combats. But the silly architecture of these dungeons makes these fights...
  11. H

    GP2X Compiling Shared Library

    Hello, I have to compile libcurl.so and libexpat.so, and in both case, the configure script does not want to generate shared libraries. I use gp2xdev. When I try: ./configure --prefix=/usr/local/gp2xdev/ --host=arm --enable-shared I get: ... checking whether the gp2x-gcc linker...
  12. H

    Trapezoid Filling

    The classical algorithm for this is called scanline algorithm (you can google it). But in your case, if you can already draw your edges, I would say that there is an easier way. For each polygon, you store for each Y the minimum and maximum values of X such that (X,Y) is a point of one of the...
  13. H

    Trapezoid Filling

    That is a very, very crazy way to fill a polygon. What you should do is filling triangles row-by-row. Drawing an horizontal line is just filling a segment of memory, which is many times faster than your Bresenham algorithm. And it does not let "holes" everywhere. Seriously, I don't think you...
  14. H

    Dvd Playback?

    Decoding Mpeg2 needs less power than decoding DivX. So the GP2X is clearly powerfull enough to read DVDs. EDIT: Well, as sehs33 said, the transfer speed could actually be a problem. But the video player given by GPH will obviously not be able to play encrypted DVDs.
  15. H

    GP32 Grey Scale

    Actually, yes. I am coding a ski game, and I should release an alpha version soon. I'll release the source code, too, so anyone interested in the engine could use it.
  16. H

    GP32 Grey Scale

    I am working on a game in which a landscape is rendered in real time. Each fps count. Therefore, I think that even static dithering is not possible. But I could try. Anyway, I realized that this was mainly a problem with pure grey. When you slightly shift the color to blue, you can have much...
  17. H

    GP32 Grey Scale

  18. H

    Oh Damn... Vektar

    That was reported somewhere, but this is wrong. The version of Vektar given with Value Pack is the 5 level timebattle demo. The value pack includes only free games and demos. It is a bit disappointing, but considering the difference in price between GP2X alone and Value Pack, this is not...
  19. H

    Usb & Linux Problem

    I had the same problem and I solved it by connecting directly the cable to my PC, not to my hub. It has been reported that USB problems could be solved by switching to USB 1, too, but you don't want to do that. And don't spend too much time on this problem, you will switch to card reader at...
  20. H

    Gp2x-thom: A To7-70 Emulator For Gp2x V1.0.2 (final)

    Thanks ZX-81! But your link to the game page is broken. The real one is: http://lair.thomsonistes.org/to7/jeux/index
Back
Top