Search results

  1. H

    Quad-ren 0.2

  2. H

    Tincs - Name Poll

    Just stick with Tincs ;)
  3. H

    Quad-ren 0.2

    Try commenting out anything related to the sprite loaded from a PNG in the example prog to see if the QRDD loader works.
  4. H

    Quad-ren 0.2

    Example of the usage of the event system, any suggestions? CODE #include <quad-ren/quad-ren.h> qr_renderer *renderer; // Event receiver class class new_event_receiver : public qr_event_receiver { bool on_event(qr_event event, qr_scene_node *node) { // Quit on escape...
  5. H

    Quad-ren 0.2

    Texture animation is based directilly on OpenGL textures which are generated when the sprite is converted, from this point the performance is completely dependent on the graphics card. Should be fast so long as you are not drawing a lot of large textures, or the equivalent in smaller images...
  6. H

    Quad-ren 0.2

    This was done to make a QRDD -> X converter passable. Though i suppose I could add `don't convert' as a optional param to qr_load_sprite(). QUOTE Is it possible to tint a sprite? Currently when I do the morph effect in my game, I have a load of particles, which each has its own copy of the...
  7. H

    Screen Stretch, Opengl?

    SDL, on its own is resolution dependent, This is the exact problem that I wrote Quad-Ren to solve.
  8. H

    Quad-ren 0.2

    QUOTE What's on the roadmap? Vers 0.4 is lickly to be relesed in a couple of weeks, this version is going to include an event system. There is also the bigginings of collision detection system in SVN, though it is unlickly to get into version 0.4. The demo program was just something which...
  9. H

    Quad-ren 0.2

  10. H

    Interested In Being A Game Programmer...

    @torpor: I know nothing about openGL ES and it would take me too long to learn because I want to finish this, but thaks for the idea anyway The jumping feals wrong, it should be more dynamic, i.e. if the jump button is quickly tapped, don't jump as high. Jumping would also feel much more...
  11. H

    Quad-ren 0.2

    QUOTE I am at home for a couple of days, it looks like I'll be spending them with quad-ren 0.3 ;-) More input later on. Looking forewords to your feedback :) I am developing Quad-Ren on Arch Linux, but it should be easy enough to compile on any platform with SDL and OpenGL(though you will...
  12. H

    Music Quality, .flac Vs. .mp3 On Pandora

    The main problem with most MP3's is that they are encoded at a much too low bitrate. I have all my music in FLAC so as not to degrade the quality if I encode it to something else, but it is just so much more convenient being able to play FLAC directilly without messing around with re-encoding...
  13. H

    Quad-ren 0.2

    Quad-ren 0.3 is now avalable, The primary highlight of this release is that the API is now completely documented, see the API Documentation section. There have also bean some minor feature additions such as an FPS counter. Also, the QRDD file reader/writer and math functions have bean moved into...
  14. H

    Why Do We Still Use These Forums?

    Unless the issues with links and the like on this forum can be fixed soon, the Pandora project should move somewhere else. Theses issue's, and the fact that this forum appears to have nothing to do with the Pandora at first (due to the reasons mentioned in the first post) may give a bad first...
  15. H

    What Would You Get? A Psp2 Or A Pandora?

    The digital downloads system is highly lickly to be windows only, thus Im not interested. I may get a Pandora from the second+ batch, but am waiting for it to prove itself first.
  16. H

    Beta Galactic Artifact - Game Balance

    I don't have time to play your game through 9 times right now. at my current play speed of 1~1.5 hours per game, it would take about 2~3 days of pretty much solid playing ;) . (a save feature would be nice) Howeaver, something I have noticed is a tendency for a particular type of alien to...
  17. H

    Dual-boot Vista + Ubuntu

    Yes you can, ext2ifs ;) EXT3 is a superior file system to NTFS in that it doesn't fragment(to any noticeable degree) and has a proper permissions support. You generality don't want your data on the same partition as the OS anyway, putting data on a different partition makes recovering from...
  18. H

    When Is The Forum Going To Be Fixed?

    As you already know, ever since the forum went down it has bean imposable to post URLs and images without the forum messing up, unless the URL is put in code tags. Any idea when this is going to be fixed?
  19. H

    Quad-ren 0.2

    Drew a tree sprite for an RPG style demo program I have an idea for, it came out quite well, considering I normally suck at 2D. CODE http://www.hessiess.dyndns.org/files/Tree.png
  20. H

    Quad-ren 0.2

    No, colour key transparency is not currently implemented, Il probably add a simple key coulor -> alpha converter and the option of using nearest neighbour filtering, but if you want anti-aliased sprites, you are better off using alpha transparency from the get go.
Back
Top