Applications, Games, Tools, User libs and useful stuff coded in PureBasic
eddy
Addict
Posts: 1479 Joined: Mon May 26, 2003 3:07 pm
Location: Nantes
Post
by eddy » Sat Apr 05, 2008 7:58 pm
[released]
- FIXED : indent (for non-bold keywords)
- ADDED : custom indent tags
;< and
;> like JAPBE
- ADDED : indent start..stop PB commands
Code: Select all
ProcedureCDLL DUMMY(param.l)
;///// STRUCTURE
Structure TEST
a.l
b.s
StructureUnion
x.l
y.l
EndStructureUnion
EndStructure
;///// START-STOP PB FUNCTIONS
StartDrawing()
If a>1
Select a
Case 10
Case 20
Default
Debug "POP"
EndSelect
ElseIf Not a=0
;> indent
Debug "POP"
;< unindent
Else
FillArea(x, y, 1, 0)
EndIf
StopDrawing()
EndProcedure
DataSection
NumericalData:
Data.l 100, 200, -250, -452, 145
EndDataSection
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
eddy
Addict
Posts: 1479 Joined: Mon May 26, 2003 3:07 pm
Location: Nantes
Post
by eddy » Sun Apr 06, 2008 11:38 pm
[released v2.5]
- ADDED : autocomplete end keyword ( by pressing RETURN key like JAPBE )
- UPDATED : configuration panel with tooltip
Last edited by
eddy on Wed Apr 09, 2008 1:06 am, edited 1 time in total.
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
#NULL
Addict
Posts: 1497 Joined: Thu Aug 30, 2007 11:54 pm
Location: right here
Post
by #NULL » Mon Apr 07, 2008 10:52 am
thank you.
the only thing is still these *.ini files flying around
could you maybe live with the following? :
if such a file is found in the program dir of the tool, it will be used and no other ini is created somewhere else. if the program dir doesn't contain that ini file it will create them in the source directories like it's doing it now. (but maybe one more checkbox is even simpler)
for the other people:
try the tool, it's great!
eddy
Addict
Posts: 1479 Joined: Mon May 26, 2003 3:07 pm
Location: Nantes
Post
by eddy » Tue Apr 08, 2008 9:08 am
It would be simplier if all parameters are stored inside the source code.
( if possible )
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
Michael Vogel
Addict
Posts: 2797 Joined: Thu Feb 09, 2006 11:27 pm
Contact:
Post
by Michael Vogel » Tue Apr 08, 2008 10:34 am
eddy wrote: It would be simplier if all parameters are stored inside the source code.
( if possible )
Good point - but putting the ini into the local directory should be also ok!
using the function GetPathPart(ProgramFilename()) will do so or something like...
Ini.s=ProgramFilename()
Ini=left(ini,len(ini)-3)+"ini"
Michael
eddy
Addict
Posts: 1479 Joined: Mon May 26, 2003 3:07 pm
Location: Nantes
Post
by eddy » Tue Apr 08, 2008 12:03 pm
oops! I misunderstood!
I'm tired ... In my mind, you wanted a INI file in each source directory.
<edit>
Ok, I'll fix this INI problem.
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
Booger
Enthusiast
Posts: 134 Joined: Tue Sep 04, 2007 2:18 pm
Post
by Booger » Tue Apr 08, 2008 1:21 pm
Nice tool, thanks.
Saves me alot of time so others may read my code.
Now you need to make an advanced remark creator. Kinda like we select a block, type in our remark, and walla, a nice formatted block with a remark.
Thanks for the tool man.
eddy
Addict
Posts: 1479 Joined: Mon May 26, 2003 3:07 pm
Location: Nantes
Post
by eddy » Wed Apr 09, 2008 12:48 am
[released v2.6]
- ADDED : quick installer (double-click on EXE file)
- FIXED : save single INI file
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
#NULL
Addict
Posts: 1497 Joined: Thu Aug 30, 2007 11:54 pm
Location: right here
Post
by #NULL » Wed Apr 09, 2008 1:53 pm
perfect for me now, thanks
eddy
Addict
Posts: 1479 Joined: Mon May 26, 2003 3:07 pm
Location: Nantes
Post
by eddy » Mon Apr 14, 2008 2:51 am
[released v2.7]
- ADDED : autocomplete comment block
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
ts-soft
Always Here
Posts: 5756 Joined: Thu Jun 24, 2004 2:44 pm
Location: Berlin - Germany
Post
by ts-soft » Mon Apr 14, 2008 3:43 am
works fine here, thanks
PureBasic 5.73 |
SpiderBasic 2.30 |
Windows 10 Pro (x64) |
Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.
SofT MANiAC
Enthusiast
Posts: 142 Joined: Mon Sep 17, 2007 10:28 am
Location: P.O.P
Contact:
Post
by SofT MANiAC » Mon Apr 14, 2008 2:36 pm
Nice
POiNT.OF.PRESENCE group
eddy
Addict
Posts: 1479 Joined: Mon May 26, 2003 3:07 pm
Location: Nantes
Post
by eddy » Mon Apr 14, 2008 7:38 pm
Good
There's no more option to add.
win10 x64 5.72 | IDE | PB plugin | Tools | Sprite | JSON | visual tool
milan1612
Addict
Posts: 894 Joined: Thu Apr 05, 2007 12:15 am
Location: Nuremberg, Germany
Contact:
Post
by milan1612 » Mon Apr 14, 2008 7:46 pm
Works well here, very handy tool
Thanks...
Windows 7 & PureBasic 4.4
Booger
Enthusiast
Posts: 134 Joined: Tue Sep 04, 2007 2:18 pm
Post
by Booger » Sat Apr 19, 2008 1:48 pm
Rather annoying bug.
When you select a large block, then right click, then click on insert comments:
IDE crash, general Exception.
Purebasic 4.10
I comment large blocks when looking at differences between OpenGl and Directx rendering often.
Thanks.