06-25-2023, 09:25 PM
I appreciate the feedback. Since we are talking about style of large projects. I would like to share a tip that I use to keep track of sub and functions in large monolithic source files.
I like to put Dummy Subs in my code. Like this:
So when I use the F2 key to look at the Subs and Functions I'l see this:
To me it makes it easier to navigate the larger code bases. I hope this helps. When I was playing with the QB64 source, it sure could have benefited from doing something like this.
I like to put Dummy Subs in my code. Like this:
Code: (Select All)
'**********************************************************************************************
' Main Loop
'**********************************************************************************************
SUB _______________MAIN_LOOP (): END SUB
So when I use the F2 key to look at the Subs and Functions I'l see this:
To me it makes it easier to navigate the larger code bases. I hope this helps. When I was playing with the QB64 source, it sure could have benefited from doing something like this.
2D physics engine https://github.com/mechatronic3000/fzxNGN
Untitled Rouge-like https://github.com/mechatronic3000/Untitled-Rougelike
QB Pool https://github.com/mechatronic3000/QBPool
Untitled Rouge-like https://github.com/mechatronic3000/Untitled-Rougelike
QB Pool https://github.com/mechatronic3000/QBPool