Search found 14 matches
- Mar 24, 2022 14:20
- Forum: Game Dev
- Topic: Rotozoom archive restored
- Replies: 6
- Views: 1863
Re: Rotozoom archive restored
I guess it's nice. I can only "guess" because when I compile (1.09 64bit) I get: all.asm:869: Error: incorrect register `ebx' used with `q' suffix all.asm:872: Error: incorrect register `ebx' used with `q' suffix all.asm:941: Error: incorrect register `eax' used with `q' suffix all.asm:172...
- Sep 23, 2021 14:15
- Forum: Sources, Examples, Tips and Tricks
- Topic: Bingo!
- Replies: 0
- Views: 1868
Bingo!
Every Christmas is the same story: we want to play bingo but either we can't find the cards or some are missing. With this little program you can print one or more random series of 6 cards. the program output will be a printable html file, located in the same directory as the executable. the quantit...
- Jun 26, 2020 15:33
- Forum: Beginners
- Topic: Is this a "Pointer mess"?
- Replies: 7
- Views: 1210
Re: Is this a "Pointer mess"?
Thanks a lot, fxm, the problem was just under my eyes but I couldn't see it. I was keeping on confusing 32 (the number of bits in a qword) with 8 (the bits in a byte).
Again, thanks to you all! :)
Again, thanks to you all! :)
- Jun 26, 2020 15:21
- Forum: Beginners
- Topic: Is this a "Pointer mess"?
- Replies: 7
- Views: 1210
Re: Is this a "Pointer mess"?
Unfortunately the solution has to be built with no array: the allocation table is part of an object (I am writing an AVL Tree indexing object) and, as you know, dynamic arrays are not allowed within an object...
- Jun 26, 2020 7:08
- Forum: Beginners
- Topic: Is this a "Pointer mess"?
- Replies: 7
- Views: 1210
Is this a "Pointer mess"?
Hi guys, keeping track of which records have been deleted in a table has always ben an issue to me, so I wrote a simple routine that uses an allocated memory area as a bitmask: dim shared as ulong FreeSlots, PoolSize dim as ushort i, x dim as ulong ptr table function FindFreeSlot(byref rm as ulong p...
- Oct 19, 2011 21:13
- Forum: General
- Topic: Very strange problem with font rendering
- Replies: 2
- Views: 842
You may have a look at Cairo for simple text rendering. And for advanced textes (multiline, I18N, ...) use PangoCairo or GooCanvas. To start with: I'm sorry for being so late in answering but I had troubles with my old PC. Now it's fixed so I'm back again. Thanks for the suggestion: I'll surely giv...
- Sep 27, 2011 12:44
- Forum: General
- Topic: Very strange problem with font rendering
- Replies: 2
- Views: 842
Very strange problem with font rendering
Hi! Here is a problem I've got with the XFont library. With xfconv.exe I created five XF fonts from "verdana.ttf": v10.xf, v14.xf, v16.xf, v20.xf and v22.xf (of course the name of the files is simply the pitch size). Here is the code I wrote to load and test the rendering: #include "w...
- Jul 04, 2011 19:39
- Forum: Projects
- Topic: FBIde 0.4.6 r3 Avilable now
- Replies: 83
- Views: 54974
- Jul 03, 2011 14:50
- Forum: Projects
- Topic: FBIde 0.4.6 r3 Avilable now
- Replies: 83
- Views: 54974
Maybe this might be useful; it's the update italian.fbl Comparing the old one with english.fbl I noticed that there were some item missing. [FBIde] 234=Percorso corrente 235=Imposta percorso corrente quando esegui/compili 236=Mostra log 237=Mostra log di compilazione 238=Esegui comando 239=Impostazi...
- Jul 03, 2011 13:50
- Forum: Projects
- Topic: FBIde 0.4.6 r3 Avilable now
- Replies: 83
- Views: 54974
- Jul 03, 2011 10:03
- Forum: Projects
- Topic: FBIde 0.4.6 r3 Avilable now
- Replies: 83
- Views: 54974
- Jul 03, 2011 9:38
- Forum: Projects
- Topic: FBIde 0.4.6 r3 Avilable now
- Replies: 83
- Views: 54974
- Jul 02, 2011 16:57
- Forum: Beginners
- Topic: Compiling a library
- Replies: 9
- Views: 2610
- Jul 02, 2011 13:50
- Forum: Beginners
- Topic: Compiling a library
- Replies: 9
- Views: 2610
Compiling a library
Could someone tell me how to create a library (".a" extension I guess) from a .bas source?
And after I created it, how can I link it (I'm using FBIDE) in a project so that it can be "seen" by all the project modules?
Thanks in advance!
And after I created it, how can I link it (I'm using FBIDE) in a project so that it can be "seen" by all the project modules?
Thanks in advance!