Search found 11 matches

by Auios
Dec 31, 2020 1:08
Forum: Community Discussion
Topic: FreeBasic Discord Server (Alternative to IRC)
Replies: 5
Views: 12934

Re: FreeBasic Discord Server (Alternative to IRC)

Pin might be nice.
Also made a PR to add a link to the Discord server in the FreeBasic readme
https://github.com/freebasic/fbc/pull/276
by Auios
Nov 30, 2019 2:20
Forum: General
Topic: Dynamic list class with forEach
Replies: 9
Views: 1357

Re: Dynamic list class with forEach

Thanks fxm. I appreciate your help and advice :)
by Auios
Nov 27, 2019 22:02
Forum: General
Topic: Dynamic list class with forEach
Replies: 9
Views: 1357

Re: Dynamic list class with forEach

Thanks fxm - but what would you say if a better method? Using 'redim' in your first example or using that for loop in the second example?
by Auios
Nov 27, 2019 17:30
Forum: General
Topic: Dynamic list class with forEach
Replies: 9
Views: 1357

Re: Dynamic list class with forEach

Seems to work fine? I'm not sure what exactly you mean exactly. Can you make an example of a scenario which fails? #include once "crt.bi" #DEFINE LISTALLOCSIZE 32 #MACRO DeclareList(_T) type _T##List as uinteger allocated, count as _T ptr item declare constructor() declare sub allocate() d...
by Auios
Nov 27, 2019 16:24
Forum: General
Topic: Dynamic list class with forEach
Replies: 9
Views: 1357

Dynamic list class with forEach

Hi guys - I made this dynamic list class which can store any datatype and is basically a dynamic array. #include once "crt.bi" #DEFINE LISTALLOCSIZE 32 #MACRO DeclareList(_T) type _T##List as uinteger allocated, count as _T ptr item declare constructor() declare sub allocate() declare sub ...
by Auios
Nov 21, 2018 2:14
Forum: General
Topic: GetJoystick() with Xbox controllers
Replies: 0
Views: 1378

GetJoystick() with Xbox controllers

I received some Xbox controllers in the mail today. I was interested in making an application that moves the mouse pointer on the screen or whatever I want. I thought FreeBasic would be a fun language to use. The wording in the documentation wasn't exactly clear about how to achieve this - so after ...
by Auios
Jul 28, 2018 16:55
Forum: General
Topic: 1.50.0 fbide where ?
Replies: 4
Views: 1296

Re: 1.50.0 fbide where ?

if you make a new version i want the fbc and fbide in 1 dir and i want that i can set all the char's of the ide in one move Hi I did this a while ago: https://github.com/Auios/FreeBasicIDE You may have to re-configure the settings in the IDE but its pretty straight forward if youre familiar with th...
by Auios
Feb 16, 2017 13:25
Forum: General
Topic: Creating Bloom Effects
Replies: 3
Views: 1200

Re: Creating Bloom Effects

Thanks for the quick feedback guys!
by Auios
Feb 15, 2017 10:53
Forum: General
Topic: Creating Bloom Effects
Replies: 3
Views: 1200

Creating Bloom Effects

I've been challenging myself to create somewhat random programs using FB's built in graphics library and I wanted to get a bit more creative with things I am doing. I wanted to learn how to create a bloom effect and understand how they are generated at its core. Personally I dislike using things oth...
by Auios
Oct 14, 2016 6:36
Forum: Projects
Topic: Height map manager
Replies: 1
Views: 1056

Height map manager

A long time ago a friend of mine asked me if I could make him a BMP file reader for height maps. I agreed to create it for him. Recently I stumbled upon my old height map code and decided to make a height map manager. Maybe someone will find it useful perhaps or just to learn off it. Project: https:...