Search found 1402 matches

by yetifoot
Dec 05, 2009 9:51
Forum: Archive
Topic: New version of PNG library (now v3.2.q)
Replies: 100
Views: 74337

First post updated with new version v1.9.3
by yetifoot
Nov 26, 2009 11:24
Forum: Archive
Topic: New version of PNG library (now v3.2.q)
Replies: 100
Views: 74337

Thanks dreamerman, yes that is a bug, I will update the code in the next version.
by yetifoot
Nov 10, 2009 6:04
Forum: Game Dev
Topic: Roguelike Game Engine
Replies: 25
Views: 10431

Hi rdc, I recently wrote an isometric display engine, and attached it to DDD. I'm considering making the patch available for people to use, and was wondering about your license terms. I have used some pre-existing graphics from a GPL'd game, so I think I have two options. Either combine your game wi...
by yetifoot
Nov 09, 2009 11:36
Forum: Beginners
Topic: Array not dimensioned
Replies: 16
Views: 4672

Compile with "-s gui"

That will tell Windows not to create the console window.
by yetifoot
Nov 09, 2009 11:23
Forum: Beginners
Topic: Exit code 12
Replies: 19
Views: 5626

I tried to have a little play with this, but I'm on linux, and it was a bit troublesome because of case sensitivity and '\' or '/' differences. Anyway, when a program crashes at "return X" that to me is often a sign that the stack/memory is being ruined somehow, usually this is by overwrit...
by yetifoot
Nov 07, 2009 1:56
Forum: General
Topic: Makefiles, GNU Build System and FBC?
Replies: 8
Views: 5398

Personally I don't know how to set up the whole autotools system, but really for FB it's not very necessary. From what I understand, things like configure scripts are mostly used for dealing with all the millions of combinations of compilers/headers/systems/dependencies/etc. With FB as we only targe...
by yetifoot
Oct 26, 2009 2:13
Forum: Archive
Topic: New SHMUP
Replies: 39
Views: 8930

Hello all, here are some instructions for getting it going on Linux. Part 1: Install FMOD if you don't have it. Download the API from here: http://www.fmod.org/index.php/release/version/fmodapi375linux.tar.gz Copy the file fmodapi375linux.tar.gz/fmodapi375linux/api/libfmod-3.75.so to /lib/libfmod.so...
by yetifoot
Oct 26, 2009 1:42
Forum: Linux
Topic: does it matter if I get the linux or windows version under w
Replies: 4
Views: 1616

If using Wine, then you should use the Windows version of FreeBASIC.

Is there any reason to not use the Linux version of FreeBASIC?
by yetifoot
Jun 29, 2009 0:14
Forum: Archive
Topic: New version of PNG library (now v3.2.q)
Replies: 100
Views: 74337

Maybe I am misunderstanding but I thought that by adding the line... #define PNG_STATICZ 1 would make it so I do not require the zlib dll. But when I run test1.bas it gives an error that it cannot find the dll. Am I doing something wrong or do I just need the dll? -Vince Hi Vince, here is an exampl...
by yetifoot
Jun 18, 2009 12:23
Forum: Archive
Topic: New version of PNG library (now v3.2.q)
Replies: 100
Views: 74337

Thanks to KristopherW, a bug has been spotted in png_dimensions. At the moment it doesn't close the file, which will be a problem if you want to delete it while the program is still running apparently. I will do another release soon, but for now if you want to use that function, and this bug would e...
by yetifoot
Jun 10, 2009 22:01
Forum: Archive
Topic: New version of PNG library (now v3.2.q)
Replies: 100
Views: 74337

I've put up a new version of fbpng, now at version 1.9.2 This version will be SSE compatible, and match the new ImageCreate allocation method. However, as stated you should really be using png_destroy() now, that is the 'cleanest' way, but this will now mean if you use 0.21, and your old code still ...
by yetifoot
May 05, 2009 20:19
Forum: Windows
Topic: working with INI type files
Replies: 8
Views: 3985

Here is a repost of an old post I made to a request this library I haven't seen sir_mud around much lately, I think he was moving house. I found a copy of libini.zip, I don't know if it's his newest version, but here it is: http://streetcds.co.uk/libini.zip http://freebasic.net/forum/viewtopic.php?p...
by yetifoot
Mar 17, 2009 11:45
Forum: Linux
Topic: FBC 0.21 executeable
Replies: 14
Views: 4509

But I'm getting the old frozen black OpenGL window, and segmentation faults with fbpng... I'm not sure about the frozen OpenGL window, but the seg fault with fbpng could be due to the changes in imagecreate/destroy in the svn. The fbpng thread has details about this, by upgrading to a newer version...
by yetifoot
Mar 13, 2009 21:05
Forum: Beginners
Topic: Trying to make a prog that does simple text file analysis
Replies: 27
Views: 4153

Here is an alternative way to read in a file into a string dim as string text open filename for binary as #1 text = input( lof( 1 ), 1 ) close #1 Here is my word statistics program #include once "crt.bi" #define NULL 0 type node_t word as string count as integer l as node_t ptr r as node_t...
by yetifoot
Mar 13, 2009 18:57
Forum: Linux
Topic: FBC 0.21 executeable
Replies: 14
Views: 4509

I'm not sure, but libbfd seems pretty instable, i know that between 2.17 and 2.18 a lot changed that caused problems. It could be that FB is not compatible with 2.19 yet.