Search results

  1. D

    Homebrew competition!!

    Does it has to be original for the Pandora? I've been working on a platform game with someone for the last few months, castlevania style. And we already have a demo out. We are planning to release a 2 stage demo within the next month. It already runs in the Wii and the PC, so porting to the...
  2. D

    Beta Clonk Rage

    Bit late, but I'm around (sometimes) I did the GP2X port of Clonk. Which is based on the Linux SDL version I found on the net. The source contains some nasty hacks on the SDL level. If you have any questions about it email me at sneakeye_ at hotmail Rest of the changes I did are optimizations...
  3. D

    A Word Of Advice, About People Thinking Of Bying The Wiz Near The Bene

    This is an old topic, I know. But I have some news. He's back, posted today on the dutch forums. He is a bit short on details, but he had some major traffic accident, which he is still recovering from. He cannot access a computer for to long. Guess I wasn't that far off.
  4. D

    Rca (Composite) Input

    Note of warning, video capture cards have a significant delay. I'm a linux box as PVR, and I tried to add my Wii to the possible input selections. But the delay was somewhere between 0.5 and 1 second, so it was unplayable. You can find quite a bit of information about capture cards here...
  5. D

    A Word Of Advice, About People Thinking Of Bying The Wiz Near The Bene

    You assume he disappeared without a trace because he wanted to. I currently assume he disappeared without a trace because he died.
  6. D

    A Word Of Advice, About People Thinking Of Bying The Wiz Near The Bene

    Great how people always assume bad intent. I ordered my gp2x F100 from the same store, and that went without a hitch, but it was managed by a different person back then. So the store wasn't setup as a false front. As rx_shorty was always very interested in everything surrounding gp2x/wiz/Linux...
  7. D

    Guitarsonfire

    I guess a status update wouldn't hurt. I've revamped the input system, this should allow for better configurable Pandora support. I've revamped some of the video system, mainly the texture and model support. The new models are textured and look a bit better. This will require some changes in...
  8. D

    Guitarsonfire

    I have two songs that don't work. 99% of the songs are saved as 44.1kHz OGG files, but some saved at different sample rates, and GuitarsOnFire does not cope with that :P Well, I gave the notes a nice update for the next version. (I'll try to make a nice screenshot) But what I really could use...
  9. D

    Guitarsonfire

    The duck is an Easter egg :P don't worry about it. And I get your plugin system now. Guess that would be a good way to go. The new Makefiles should make that easy. Was not needed before because there was just Wii and PC, which has difference in everything. If you are going to change stuff on...
  10. D

    Guitarsonfire

    Yeah, figured the model drawing was going to be a problem. Because the whole .raw model format was giving more people problems I have replaced it with .OBJ formats. The color/alpha split is because the alpha is usually calculated because of some effect while the color is static. Ints instead of...
  11. D

    Guitarsonfire

    Well, it supports up to 5 players. On the wii that can be 4 guitars or drums (in any mix) and a single USB keyboard. We can use whatever controls we can get working ;) The wiiuse library should make this pretty easy. So, that was the plan yes. Guess those work as basic HID devices then. I...
  12. D

    Guitarsonfire

    Best way to get serious is by getting your hands dirty ;) Just try to compile the PC version for starters, which might be quite a feat already. "How do the controls work" - Good question. On my laptop I use F1-F5 as 'fret' keys, and up/down keys to strum. And I got scary good with it because of...
  13. D

    Guitarsonfire

    Hello, I'm pretty sure I've seen the request somewhere. So here I am. I own a GP2X and have followed the development of the Pandora for a 'while' now. And now it finally looks that it will ship in less then 2 months. So time to get some software plans ready. For the last half year or so I...
  14. D

    Caanoo / WIZ Wiz Sdk Install On Linux

    I've seen codeblocks add a library search path to /usr/lib/ by default for custom compilers. You might want to remove that: Settings -> compiler and debugger ... -> select your compiler -> search directories Make sure those 3 tabs are empty. Also, if you select the last tab, there is an option...
  15. D

    GP2X Gp2x Entropy On Startup.

    the tv_usec of gettimeofday seems to be a bit random at least. Combining that with the adc jitter and I think I have a reasonable seed: CODE struct timeval tv; gettimeofday(&tv, NULL); int seed = tv.tv_usec; for(int i=0;i<32;i+=2) { seed ^= (batterycharge() & 0x03) << i; } srand(seed)...
  16. D

    GP2X Gp2x Entropy On Startup.

    I've build an MP3 player application which autoruns on my GP2x, to use it as a MP3 player. It starts playing directly when it starts, so it's just a 'switch on' and 30 seconds later I have music. However, the shuffle function always generates the same songs, this because the startup sequence is...
  17. D

    How Green Will Be The Pandora

    With mixed results.
  18. D

    GP2X Code::blocks 8.02

    CodeBlocks doesn't require updates. But with the latest bunch of updates for CodeBlocks makes it so much better then DevCPP. Working with DevCPP feels like doing an opperation with an axe, compaired to codeblocks.
  19. D

    Is Alsa Or Oss Sequencer (midi) Available?

    Don't think there is a midi sequencer in the hardware, but the port of Doom makes use of some software sequencer if I remember right.
  20. D

    GP2X Code::blocks 8.02

    Small note of warning: http://developer.berlios.de/bugs/?func=det...p;group_id=5358 This bug can cause a lot irritation. (Bug was in the nightly build of a few days ago, don't think they fixed it before the stable release) Other then that it's a great IDE. Expecialy for free.
Back
Top