Anything like BLIde for PureBasic?
-
karmacomposer
- Enthusiast

- Posts: 113
- Joined: Sun Jul 29, 2012 2:51 pm
Anything like BLIde for PureBasic?
BLIde is for BlitzMax, but can be used with a large # of languages. Is there anything like it for PureBasic?
http://www.blide.org/
Mike
http://www.blide.org/
Mike
Re: Anything like BLIde for PureBasic?
For me is the PB-IDE the optimal tool to write purebasic code! All third-party IDE have limitation to the original.
But you can test jaPBe: http://www.purebasic.fr/english/viewtop ... 81#p124881
But you can test jaPBe: http://www.purebasic.fr/english/viewtop ... 81#p124881
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

-
karmacomposer
- Enthusiast

- Posts: 113
- Joined: Sun Jul 29, 2012 2:51 pm
Re: Anything like BLIde for PureBasic?
OK. Thanks.
Mike
Mike
Re: Anything like BLIde for PureBasic?
I forgot UEStudio: http://www.ultraedit.com/products/uestudio.html
This supports PureBasic, but not very good
This supports PureBasic, but not very good
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

-
karmacomposer
- Enthusiast

- Posts: 113
- Joined: Sun Jul 29, 2012 2:51 pm
Re: Anything like BLIde for PureBasic?
Why is it not very good? It looks AMAZING and has so many features! Care to share why you feel it's not so good?ts-soft wrote:I forgot UEStudio: http://www.ultraedit.com/products/uestudio.html
This supports PureBasic, but not very good
Mike
Re: Anything like BLIde for PureBasic?
Highlightning is not correct and limited, you have to change the syntaxfile.
Compiler and Debugger - Support is limited, you have to configure anything, not easy.
something is not available.
The support in the PB-IDE is much better
Compiler and Debugger - Support is limited, you have to configure anything, not easy.
something is not available.
The support in the PB-IDE is much better
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Re: Anything like BLIde for PureBasic?
Aye, cannot beat PB's IDE.
I may look like a mule, but I'm not a complete ass.
-
karmacomposer
- Enthusiast

- Posts: 113
- Joined: Sun Jul 29, 2012 2:51 pm
Re: Anything like BLIde for PureBasic?
OK, so you are saying PureBasic's built in IDE is more than adequate and is better than any 3rd party products?
Does it have code completion? Folding? Does it have a template editor? Does it have any functionality to make
it easier to code? Versioning? Does it allow you to keep a journal so you know what you worked on?
If you look at BLIde, it has all of that and MUCH MORE. It is about the best IDE I have ever seen. I WISH it
were available for PureBasic.
Mike
Does it have code completion? Folding? Does it have a template editor? Does it have any functionality to make
it easier to code? Versioning? Does it allow you to keep a journal so you know what you worked on?
If you look at BLIde, it has all of that and MUCH MORE. It is about the best IDE I have ever seen. I WISH it
were available for PureBasic.
Mike
Re: Anything like BLIde for PureBasic?
Have you not tried the PB demo version? That will answer most of your questions regarding the IDE.
I may look like a mule, but I'm not a complete ass.
Re: Anything like BLIde for PureBasic?
May be it's time for you to test it ? Yes it has all this. And dont forget to have a look at 'Project'Does it have code completion? Folding? Does it have a template editor? Does it have any functionality to make it easier to code? Versioning?
Please correct my english
http://purebasic.developpez.com/
http://purebasic.developpez.com/
Re: Anything like BLIde for PureBasic?
Why not download the demo and check this features?
http://www.purebasic.com/documentation/ ... start.html
Folding, Autocomplete with support of nested structures, templates, tools, Addons with Trigger-Support, Projects
and much more is available
http://www.purebasic.com/documentation/ ... start.html
Folding, Autocomplete with support of nested structures, templates, tools, Addons with Trigger-Support, Projects
and much more is available
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

-
karmacomposer
- Enthusiast

- Posts: 113
- Joined: Sun Jul 29, 2012 2:51 pm
Re: Anything like BLIde for PureBasic?
I did download the demo days ago. Have not found any of those features. Hmmmm. Maybe i'm missing something?
I copied and pasted sample code from the forum here and it just shows the line #s and the code. Nothing else.
I have not been able to find a 'Project' file. Where in the 'examples' folder is it?
Mike
I copied and pasted sample code from the forum here and it just shows the line #s and the code. Nothing else.
I have not been able to find a 'Project' file. Where in the 'examples' folder is it?
Mike
-
karmacomposer
- Enthusiast

- Posts: 113
- Joined: Sun Jul 29, 2012 2:51 pm
Re: Anything like BLIde for PureBasic?
OK. I loaded in the 3D FPS demo and it does show most of those features. Cool!
So, let's say I want to change the movement keys from the arrow keys to "WASD" in the following code chunk:
With Robot
\Fov = 50
\EntityBody = 0
\BodyOffsetY = 43
\Key\Down = #PB_Key_Down ;Down
\Key\Left = #PB_Key_Left ;Left
\Key\Right = #PB_Key_Right;Right
\Key\Up = #PB_Key_Up ;Up
\Key\Jump = #PB_Key_Space
How do I change them? Do I use ASCII equivalents, like char$(43) or is there some other syntax?
[EDIT] - I found it - nice code complete - brings up all the possible keys - NICE!
Mike
So, let's say I want to change the movement keys from the arrow keys to "WASD" in the following code chunk:
With Robot
\Fov = 50
\EntityBody = 0
\BodyOffsetY = 43
\Key\Down = #PB_Key_Down ;Down
\Key\Left = #PB_Key_Left ;Left
\Key\Right = #PB_Key_Right;Right
\Key\Up = #PB_Key_Up ;Up
\Key\Jump = #PB_Key_Space
How do I change them? Do I use ASCII equivalents, like char$(43) or is there some other syntax?
[EDIT] - I found it - nice code complete - brings up all the possible keys - NICE!
Mike
-
karmacomposer
- Enthusiast

- Posts: 113
- Joined: Sun Jul 29, 2012 2:51 pm
Re: Anything like BLIde for PureBasic?
Another question (yes, another one):
Is there any way to select a default project directory. It keeps defaulting to the public documents area, which I NEVER use. Very annoying to have to always go find your project!
Can it load previous project?
Mike
Is there any way to select a default project directory. It keeps defaulting to the public documents area, which I NEVER use. Very annoying to have to always go find your project!
Can it load previous project?
Mike
Re: Anything like BLIde for PureBasic?
Please check the settings
File/Settings/Editor/SourceDir? I use the german version, so i have not the english name.
Project is the third menu.
File/Settings/Editor/SourceDir? I use the german version, so i have not the english name.
Project is the third menu.
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.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.



