Search results

  1. H

    Development using Vala?

    Every language is a PITA to deploy on windows...
  2. H

    Call for help: Quad-Ren cross platform testing.

    As far as I am aware the problem was occurring with one of the example apps, The files in these are all referenced using relative filenames, maby using / instead of \ was causing the problem, however this is strange as the custom QRDD loader was working, and all of the files referenced with this...
  3. H

    Call for help: Quad-Ren cross platform testing.

    The qr_0.2 branch is the current development version, I just haven't bean creating new branches for each new version, it should rilly be called qr_0.2* ;) To be honest the build system was kind of ``hacked together quickly', Have you got any tips on how to fix these problems? Thanks, fixed ;)...
  4. H

    Call for help: Quad-Ren cross platform testing.

    QR *Should* be platform independent as it only uses cross-platform libraries, however I have only tested it on Linux, and when benjymous tried to compile it with MSVC (thread on the other forum, unfortunately not assessable right now) the engine was crashing in the libpng code, which suggests...
  5. H

    Finding 2D Artwork

    Learn Blender and make it yourself, 3D computer graphics, especially animation is both much easier and much faster than the hand drawn equivalent, and 3D renderings also lack ugly aliasing :), unlike pixel art .
  6. H

    Quad-Ren scripting language

    The python API bindings will mean that QR will be usable from python, however it was designed to be a graphics engine in its own right, so cannot integrate with other drawing API's natively. You would need to replace the SDL back end in qr_renderer.cpp with one that renders to a texture, and...
  7. H

    Quad-Ren scripting language

    If you don't already know what QR is see http://quad-ren.sourceforge.net/ I am considering Integrating a scripting language into QR, the question is which one, Currently I am considering Lisp, Lua, Python or possibly creating something completely new from scratch, any suggestions? Incase...
  8. H

    Simple C++ Questinon

    Actually I was referring to GVim, not the CLI version. Modal editing rocks.
  9. H

    Ascii3d

    You could probably acheve that effect much more effecently by just drawing textured plains for the walls and using OpenGL's perspective to transform it. Edit: Quick test using the multiple scaled image technique in Quad-Ren. And the source code and image. CODE #include <quad-ren/quad-ren.h>...
  10. H

    Simple C++ Questinon

    Without a doubt, Vim is THE best C++ editor ;)
  11. H

    Quad-ren 0.4

    Doing that would make the documentation messy, and make the application more lickly to segfault, should a pointer to a block of memory with less than 4 elements be passed.
  12. H

    Quad-ren 0.4

    I agree the vector type could be better, currently its just a class for storing a pair of intagers or floats :). Arrays in C++ are pointers, which is proved by the ability of using pointer math to address them instead of the [] operator.
  13. H

    Quad-ren 0.4

    Quad-Ren is a resolution independent 2D graphics engine that aims to ease the development of bitmap-based applications, primarily games. Applications using Quad-Ren will function the same regardless of screen resolution or aspect ratio, windowed or fullscreen. Version 0.4 adds a number of...
  14. H

    will it be possible to add winblows xp embedded?

    This topic comes up all the time, try using the search feature ;).
  15. H

    Dosbox Power?

    I don't know about red alert, but duke nukem is open source, so a native port is highly lickly.
  16. H

    Quad-ren 0.2

    Screenshot of the 0.4 event system example prog.
  17. H

    Quad-ren 0.2

    The release of QR 0.4 is going to be moved forwards an extra week, updating the documentation is tacking ages and i have a lot of other stuff eating up my free time.
  18. H

    Quad-ren 0.2

    PNG images *MUST* have an alpha channel to work properly, gimp doesn't always create one. in GIMP layer->transparency->add alpha channel ;). Thanks for reminding me, need to fix that bug.
  19. H

    Quad-ren 0.2

    Glad you got it working, did you just comment out SDL_SetVideoMode(), or did you make any other changes as well? If so i can get a patch so they can be applied to SVN. Have you tried compiling LibPNG with MSVC? are you linking ZLIB?
  20. H

    Quad-ren 0.2

    Yep, this was added for 0.4 along with the event system, it just mappes directly onto SDLKey.. QUOTE Also had to change int main() to int main( int argc, char* args[] ) to make it link. When I run it, I get an empty black window again. [edit] - Making progress now - if I comment out the...
Back
Top