Useful resources
  • haafhaaf June 2004
    Large collection of bitmap fonts:
    http://cgi.algonet.se/htbin/cgiwrap?user=guld1&script=fonts.pl
    Thanks to Impy.
  • MyraMainsMyraMains June 2004
    Earlier today I noticed a thread on Game Dev asking about code to find the nearest power of 2 from any given number. This can be cery useful in building art processing tools for an HGE game engine. I had acutally worked this out in Delphi a few months ago since none of the art I have is sized in powers of 2. Even my tiles are 32x63 :cry: So I have been building lots of art editing tools. Any way I thought I would pass the thread along for anyone who wishes to see some C++ examples for this

    http://www.gamedev.net/community/forums/topic.asp?topic_id=229831

    For those of you doing Delphi...
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    function NextPow2(iNum: integer): integer;
    var
    iTmp: integer;
    begin
    iTmp := 1;
    while (iTmp<iNum) do
    iTmp:= iTmp shl 1;
     
    result := iTmp;
    end;

    Note: This is not my Delphi code but rather a quick translation I did from one of the examples in the thread. I think it is much better than what I came up with :)
  • haafhaaf June 2004
    Hoek's revenge' HGE utilities page: http://members.dodo.net.au/~whitde/hge.html

    Right now exposes optimized pixel perfect collision detection code.

    Great thanks! :)
  • MyraMainsMyraMains January 2005
    Here is a list of free game development libraries that has been floating around on GameDev for the last couple of days. I thought you guys may find it useful.

    The GameDev thread where you can suggest additions to the list can be found here. http://www.gamedev.net/community/forums/topic.asp?topic_id=291432
  • AnonymousAnonymous April 2005
    haaf said:

    Large collection of bitmap fonts:
    http://cgi.algonet.se/htbin/cgiwrap?user=guld1&script=fonts.pl
    Thanks to Impy.



    does anyone know how to download/use these fonts?
  • depsdeps April 2005
    Anonymous said:

    haaf said:

    Large collection of bitmap fonts:
    http://cgi.algonet.se/htbin/cgiwrap?user=guld1&script=fonts.pl
    Thanks to Impy.



    does anyone know how to download/use these fonts?


    Looks like Hoek's revenge knows how. :)
    His program: http://hoek.inkblue.net/slicer.html
    A tutorial: http://hoek.inkblue.net/tutorial1.html
  • IantheMadIantheMad June 2007

    [quote="haaf"]Hoek's revenge' HGE utilities page: http://members.dodo.net.au/~whitde/hge.html

    Right now exposes optimized pixel perfect collision detection code.

    Great thanks! :)



    Haaf the link doesn't work :(

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In Apply for Membership

In this Discussion

Who's Online (1)