Recent content by TKF15H

  1. T

    C Vs. C++

    About polymorphism... has anybody checked to see if it actually does impact speed on the ARM? I know that on an X86 it is slower than a static JMP, but on the ARM processor, GCC uses registers as jump targets even if it's a static far call (dunno about the static near calls). So they should be...
  2. T

    Zeengine Compiling But Not Running

    you should try and do your debugging over telnet. What may be happening (if you didn't link statically) is that you're getting a run-time linking error on the console... only without telnet you can't see it. >_<
  3. T

    Gp2x Crap Games Competition

    Does that count as a positive point?
  4. T

    Zaurus Sl-c1000

    I never noticed this on the dreamcast. :huh:
  5. T

    GP2X Anim8or + Zeengine3d

    Well, not really... The Anim8or plugin interface is still under development and so it has various limitations. 1) Text export only (so the binary 3do object is currently impossible to use). 2) Anim8or can't export animations. I hope the next version fixes these issues, I'd really like to use...
  6. T

    Zaurus Sl-c1000

    If I wasn't dead broke I'd want one. :P And what's this with the DPad people keep asking for? Sorry for taking it further OT, it's just that I never understood why people prefer the DPad to, say, an analogue joystick. Since when is less precision a good thing?
  7. T

    GP2X Anim8or + Zeengine3d

    Being quite prone to programmer's art, I've found that Anim8or is merciful to my modelling skills. Knowing that there may be others out there like me in this aspect, I figured the following code could be of use. Both are modifications of code available elsewhere. I do not garantee both are...
  8. T

    Is This A Stupid Idea

    The seed tag is only for predicting the outcome of possible battles. This means there is no need for re-uploading the XML files.
  9. T

    Is This A Stupid Idea

    Using XML does not mean players can cheat: Every player has a different Seed tag which is randomly generated each time his XML file is created. The result of the fight between players is based on the two players' seeds added together. Basically: srand( Player1Seed + Player2Seed ); Winner =...
  10. T

    Digital Recorder

    I do wish the GP2X had a built-in microphone, would be nice to see a Caution: Seaman remake. :P
  11. T

    GP2X Gba Emu And Static Translation

    Nope, I'm still working on this. The other project shares quite a bit of IBA source code (so working on one helps the other as well). Other than that, when I get tired of working on one I switch to working on the other. They take up %50-%50 of the development time. Besides, gpSP is by far a...
  12. T

    GP2X Development Basics

    I found GDB compiled for ARM somewhere (archives, I think). All I had to do was copy it to the SD, enable USB Networking and Telnet, then run GDB over Putty.
  13. T

    GP2X Development Basics

    I use USB networking and GDB. I configured Code::Blocks to compile directly onto the gp2x and testing is done with Putty.
  14. T

    GP2X Blender Question

    I'm not much of a modeller (ok, I suck) but Anim8or has been good enough for me (the exportable formats are easy to make/find loaders for).
  15. T

    GP2X Sdl Event Polling

    I set values to variables also, but I've never had any problems with missing events. I think your framerate would have to be pretty low for that to happen (1-2 fps? Somebody do a test :P).
Back
Top