Search found 54 matches

by Pim Scheffers
Feb 26, 2022 12:21
Forum: Linux
Topic: FreeBasic Raspberry Pi OS Bullseye
Replies: 13
Views: 3926

Re: FreeBasic Raspberry Pi OS Bullseye

Hi,

I've build FreeBasic 1.09.0 64bit for the latest Raspberry Pi OS Bullseye (on a 3b+) using the FreeBasic 1.06 build linked above

It works without the glibc version error.

See the link below:
https://1drv.ms/u/s!ArvnuLSK5obmgr9bNZ ... ?e=VTdLz7
by Pim Scheffers
Feb 14, 2022 19:23
Forum: Community Discussion
Topic: FreeBASIC 1.09.0 Release
Replies: 256
Views: 51671

Re: FreeBASIC 1.09.0 Release

Super micro optimization :-) spotted a double if(len > 0) in str_ftoa.c in the FreeBASIC source code. if( len > 0 ) <------------------this { /* skip the dot at end if any */ if( len > 0 ) <------------------ and this if( p[len-1] == '.' ) p[len-1] = '\0'; } /* -----------------------------------cou...
by Pim Scheffers
Dec 29, 2020 8:40
Forum: Community Discussion
Topic: FreeBASIC 1.07 Release Discussion
Replies: 107
Views: 28308

Re: FreeBASIC 1.07 Release Discussion

Hello,

Thanks for the release, small issue is that on Raspbian OS (latest version) the keyboard does not process input (Multikey) when the flag GFX_FULLSCREEN is set. It works fine in windowed mode.

OS: Raspberry Pi OS (32-bit) / 2020-08-20

Again, thanks for this release,

Greets,
Pim
by Pim Scheffers
Sep 10, 2020 17:00
Forum: Game Dev
Topic: sword3D_chung
Replies: 1
Views: 1108

Re: sword3D_chung

Hello chung, Works really nice on my Intel graphics PC, so well done! You should develop it into a full game, the engine has a unique charm to it. Small point of critique, your coding style is... wel... how do I say this nicely... lets say: "entangled", I hope there is a rosetta stone some...
by Pim Scheffers
Sep 07, 2020 4:49
Forum: Community Discussion
Topic: FreeBASIC 1.08 Development
Replies: 339
Views: 61178

Re: FreeBASIC 1.08 Development

Getting more and more excited for 1.08 :-)

Great work!
by Pim Scheffers
Sep 02, 2020 5:46
Forum: Community Discussion
Topic: Executable size 11x larger than C's?
Replies: 8
Views: 2015

Re: Executable size 11x larger than C's?

Hello Bluepixel, As stated above, the FB runtime library gives you access to all the 'good' stuff BASIC has to offer. The fact that you have C++ like string handling, procedural / object oriented features and a very capable graphics library, all statically linked to your Binary adds to the executabl...
by Pim Scheffers
Apr 15, 2020 18:49
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 979
Views: 344071

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.1.1 April 14, 2020)

Hello Paul,

I indeed meant a variable after 'Next' for completion.

Code: Select all

For y = 0 to 799
	for x = 0 to 599
		some_function()
	next x <-----
next y <-----
Greets,
Pim
by Pim Scheffers
Apr 14, 2020 19:50
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 979
Views: 344071

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V2.1.1 April 14, 2020)

Hello Paul, Thanks for the update, I really think WinFBE is a wonderful editor. Some small remarks (just my personal opinions) and not meant as criticism :-) Peronally I would: 1* default deselect 'Treat Tab as spaces' (really messes up final .bas files with mixed tabs / spaces) and took me a while ...
by Pim Scheffers
Feb 25, 2020 6:52
Forum: Sources, Examples, Tips and Tricks
Topic: Growing plant in the breeze v0.70
Replies: 10
Views: 2166

Re: Growing plant in the breeze v0.70

Well done, realy like the effect. Maybe an entire forest of small ones would make an even nicer effect.
by Pim Scheffers
Sep 15, 2019 21:11
Forum: Projects
Topic: Full RGB image to DOS CGA and EGA
Replies: 9
Views: 4049

Full RGB image to DOS CGA and EGA

I would like to share a small program using FBImage that can convert all images (full RGB) in a folder to a CGA and EGA representation by matching / assigning colours. See the source folder in the .zip for results. Have fun :-) b.t.w compiled under Linux. For Windows replace the "/" in the...
by Pim Scheffers
Sep 14, 2019 18:57
Forum: Linux
Topic: Installing on Linux Mint 19
Replies: 8
Views: 9696

Re: Installing on Linux Mint 19

Geany is great indeed and fits all my needs as well. I now wrote a small shell script to compile my test.bas program in the desktop environment. The file compiled and runs fine (and fast... much faster then on Windows). I wrote a fairly large program on windows that finds and isolates unwanted parti...
by Pim Scheffers
Sep 14, 2019 8:38
Forum: Linux
Topic: Installing on Linux Mint 19
Replies: 8
Views: 9696

Re: Installing on Linux Mint 19

Ah... thank you,

This worked great.
This deserves a top pinned comment for new Linux users.
by Pim Scheffers
Sep 14, 2019 7:19
Forum: Linux
Topic: Installing on Linux Mint 19
Replies: 8
Views: 9696

Installing on Linux Mint 19

Hello, I am relatively new to Linux (and FBC on Linux) so I have the following question: Can somebody help me install FBC on Linux mint 19? I am currently unable to do so. Somehow installing software on Linux feels like Windows-95 DLL hell multiplied by 666 :-) I have been getting nothing but depend...
by Pim Scheffers
Apr 17, 2019 10:31
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 979
Views: 344071

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (Updated March 25, 2019)

Hello, A few questions: I am still having trouble getting the auto indentation to behave properly. I have set the TAB width to 4 and left auto indent on. nested if, else .... select, case statements jump all over the place in the editor after hitting enter on the previous line. I have also noticed t...