FreeBASIC Runtime Library questions:
FreeBASIC Runtime Library questions
How do I play sound?
Of the QB's sound keywords only BEEP is implemented in FB.
If PC speaker sound is required, it should be programmed using IN and OUT. See the example in the OUT keyword for a replacement of SOUND.
There is a library called QBSound that allows to emulate qb's ability to PLAY in the background tunes encoded in strings, it uses the soundcard's synthesizer.
If what's required is to play .wav or .mp3 files thru a soundcard, external libraries as FMOD or BASS can be used in Linux and Windows. For DOS see the
DOS FAQ section.
Back to top
How do I access the serial ports?
Back to top
How do I print?
Since version 0.15 FB supports character output to printer.
To print graphics two approaches are possible:
- Preprocess the graphics, program the printer and send the pixels in FB. This is OS-portable but depends on the printer model. The only way for DOS, see also DOS FAQ section.
- In Windows and Linux there are specific API calls. This is not OS-portable but the OS's printer driver makes it printer-independent
Back to top
How do I access the hardware ports?
As of V0.15 QB's INP, OUT and WAIT are implemented.
The GfxLib intercepts the calls to some VGA ports to emulate the widely used QB's palete manipulation and vsync methods. So ports &H3DA, &H3C7, &H3C8 and &H3C9 can't be accessed it GfxLib is used. All other ports are accessible.
No further care is required to use INP and OUT in Linux or DOS. For the Windows version the required device driver is installed each first time the program is run in a windows session; this requires Administrator rights for this first run or the program will end with an error.
Back to top
What is the behavior of strings passed byval?
This item is written as of 01.30.2007.
A FreeBASIC
String is essentially a built-in user-defined type that, among other things, contains a pointer to the string data and it's length. This type is called a 'descriptor' internally, and it is this descriptor that is passed to procedures when it's parameters are passed by reference.
When passed by value, however, the actual string data is passed, not the descriptor. Internally, the string data is terminated with the NULL character (chr(0)). When the temporary
String is created for the procedure, FreeBASIC copies the string data passed up until the first NULL character. If the
String argument passed contained NULL characters within the string, then the rest of the string data after the first NULL is not copied, and the string is truncated. You also run the risk of writing outside the bounds of the allocated memory.
This behavior will eventually be fixed to act as it should: a temporary descriptor will be created for the procedure and a 'deep copy' of it's fields will be made (notably, the entire string data itself will be copied into new memory, and the new descriptor will point to that memory).
To be safe, pass
Strings by reference. If you need to simulate the correct behavior of passing a
String by value, either 1) create a temporary
String, initialize it with the
String you want to pass and pass the temporary by reference, or 2) pass the
String by reference and have the procedure create and initialize a temporary
String and work with the temporary.
Back to top
See also:
and