FreeBasic IDE-poseidonFB(Update 2024.03.03)

User projects written in or related to FreeBASIC.
Post Reply
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

FreeBasic IDE-poseidonFB(Update 2024.03.03)

Post by Kuan Hsu »

Hello everyone!

sorry for my poor english!

I've written a new freebasic IDE is called -- poseidonFB
code by D programming language and IUP framework and based on Scintilla component
(Windows: D 2.104 + IUP rev5947 )
(Windows: D 1.076 + Tango 0.99.9 +IUP rev5942 )
(Windows XP: D 1.076 + Tango 0.99.9 +IUP 3.27 )
(Linux: D 1.074 + Tango 0.99.9 +IUP rev5943 )
(Linux: D 2.104 + IUP rev5943 )
*IUP build using Visual C++ Build Tools 2015 - standalone C++ tools on Windows, so we need install Visual C++ 2015 Redistributable Packages(x86)(x64 )
*The modified IUP dynamic libraries had include in 7z / AppImage, no need to install IUP

*Since rev.505 using D 2.x, the compiler support Windows operating system, Windows 7 or later, 32 or 64 bit, the XP system won't work anymore


PoseidonFB support:
1. Syntax highlighting
2. Project manager
3. Autocompletion & Calltip
4. Function / Type / Variable... treeview
5. Find / Replace in document or project
6. Jump to defintion
7. Utf-8/16/32 decode & encode
8. Debug
9. Compile / Quick run / Build project
10. etc......

Please enjoy it!

Japanese translated intro: http://makoto-watanabe.main.jp/freebasi ... donFB.html

Source Code: https://bitbucket.org/KuanHsu/poseidonfb/
poseidonFB Manual:https://bitbucket.org/KuanHsu/poseidonfb/downloads/

Download: Bitbucket Download -> Download repository
or
Win32 / Win64:poseidonFB.7z V0.526(2024/03/03)
Linux 64bit:poseidonFB_x64 V0.525(Built and tested at Linuxmint 17)(2023/09/12)
Linux 32bit:(Built and tested at Linuxmint 13 mate)
Since 2021.08.14, just commit new release using AppImage package for linux, no need to install IUP libraries
Appimage issue( dlopen(): error loading libfuse.so.2 ), please see: https://discourse.joplinapp.org/t/appim ... 2-04/25173

Plugin: https://bitbucket.org/KuanHsu/poseidon- ... rc/master/

Window 10:
Image

Window 7:
Image

Linux 64:( Linux Mint 17.3 Xfce 64bit )
Image

( V0.526: Fixed launch from .bas/.bi incorrect dir issue )
( V0.525: Modified autocomplete about ENUMMEMBER -- FBC can use member of named Enum directly; added show type / autocomplete list information about ENUMMEMBER )
( V0.524: Fixed wrong folder color of 'New Pjoject' bug; modified iup_scintilla.dll to fixed autocomplete list item height on Windows; modified call manual and Goto Definition on includes now can work when 'Enable Parser' is off; modified Descent and Ascent range to -10~10; modified linux default chm viewer, use VANYA's CHMVIEW gtk2 and gtk3 version; modified consoleLauncher output window size on linux )
( V0.523: Fixed 'Focus' action in 'Project Properties' on linux )
( V0.522: Fixed 'Compile' at NONAME#?.bas saveas crash bug; modified linux terminal command )
( V0.521: Modified compile output to more accurate; 'Clear All' added remove *.asm; *.c; *.ll; <source>.pp.bas; <name>.def; lib<name>.dll.a; fixed custom dialog color bug; modified manual dialog )
( V0.520: Fixed https://bitbucket.org/KuanHsu/poseidonf ... le-and-run bug; fixed type(Alias) not worked bug; fixed debugger backtrace display error bug )
( V0.519: Fixed READONLY couldn't changed settings in Preference on linux; fixed crash when no project but use 'Build' or 'Build All' bug; fixed include complete not work on source dir bug; fixed Ctrl-Q (Autocomplete) not work for calltip and include complete; improved linux multi-thread stability )
( V0.518: Fixed annotation text message was gone and double-click on output panel not worked error )
( V0.517: Deprecated 'Output Use Scintilla', now output panel is force use scintilla component; added 'Enable Compile at Back Thread' option on linux( modified code to thread safe about using IUP ); modified project files send to compiler using relative path under project dir( avoid arg string too long error ); fixed 'Set As Main Module' was gone error )
( V0.516: Speed up the codecompletion; modified all actions of 'Build' to back thread (while enable on Windows) )
( V0.515: Modified code about debug; little speed up for codecompletion; modified #elseif parser )
( V0.514: Fixed convert string to int error bug on linux; fixed project inc path lost bug )
( V0.513: Fixed convert hex string to unsigned int error bug; added #define symbolname TYPE<typename> parser; fixed exception of execution error when project and single file are coexisting )
( V0.512: Fixed linker error message not display while compile OK but got warning message; added 'Var symbolname = TYPE<typename>' parser; added 'Project TIP' on statusbar )
( V0.511: Fixed statusbar "Mojibake"; fixed key-in 'Using' occur infinite loop alarm; added 'Output Use Scintilla' option; updated English.lng and Traditional Chinese.lng )
( V0.510: Fixed *.lng load crash poseidon error; modified outline real fullpath issue about OS; added scintilla extra ascent/descent settings; updated iup/iup_scintilla version using dll14; updated English.lng and Traditional Chinese.lng )
( V0.509: Remove DarkMode dll dependencies (Windows); fixed hang error while 'Enable Compile At Back Thread' is OFF )
( V0.508: Ready for LDC( llvm based D compiler ) )
( V0.507: Fixed include complete bug; fixed "Mojibake" of tips )
( V0.506: Ready for Win64 and linux64 version; modified message while got warning )
( V0.505: Big change, now poseidon build under D2; added support DarkMode, modified iup_scintilla to support colorize autocomplete popup window on Windows )
( V0.504: Fixed "Mojibake" in 'Preference dialog'; modified iup_scintilla to colorize autocomplete list on Windows )
( V0.503: For winXP, IUP3.27 version; updated Simplified Chinese.lng, thanks to lzw-723 )
( V0.502: Fixed "HTML APP Path" not work at menu item bug (Linux only) )
( V0.501: Modified parser for nested TYPE; added "HTML APP Path" on linux version )
( V0.500: Fixed folding doesn't work properly bug; modified 'ShowType' not worked after 'this.'; modified 'Evaluate' window while debug; fixed 'New / Save As' without ext name bug )
Last edited by Kuan Hsu on Mar 03, 2024 14:18, edited 673 times in total.
marcov
Posts: 3455
Joined: Jun 16, 2005 9:45
Location: Netherlands
Contact:

Re: FreeBasic IDE-poseidonFB

Post by marcov »

Why do you use a monospaced font for the left (treeview) pane? IMHO that wastes space and doesn't add much.
integer
Posts: 408
Joined: Feb 01, 2007 16:54
Location: usa

Re: FreeBasic IDE-poseidonFB

Post by integer »

@marcov
Were there some good points to the IDE?
It's from a First Post of a new member and I have not attempted it (yet). I'm not lazy (more like cautious).
An editor is a highly complex program and this is the first post of a new member.
What is the editor you use for FreeBasic and how does this one compare?
fxm
Moderator
Posts: 12082
Joined: Apr 22, 2009 12:46
Location: Paris suburbs, FRANCE

Re: FreeBasic IDE-poseidonFB

Post by fxm »

Yes first post, but not new member:
Kuan Hsu

Posts: 1
Joined: Sep 16, 2007 17:12
Has thanked: 0 time
Been thanked: 0 time
8 years of work!
I am also waiting for comment from intrepid testers!
marcov
Posts: 3455
Joined: Jun 16, 2005 9:45
Location: Netherlands
Contact:

Re: FreeBasic IDE-poseidonFB

Post by marcov »

integer wrote:@marcov
Were there some good points to the IDE?
It was just a first impression from the screenshot. It was what directly me struck me as strange.
What is the editor you use for FreeBasic and how does this one compare?
I don't really use FB, I follow it this forum for compiler and RTS related issues.
When I use it I make small stub programs in joe and simply compile them on the cmdline.
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

fxm wrote:Yes first post, but not new member:
Kuan Hsu

Posts: 1
Joined: Sep 16, 2007 17:12
Has thanked: 0 time
Been thanked: 0 time
8 years of work!
I am also waiting for comment from intrepid testers!
HA HA...Not work for 8 years,
I worked this project at June, 2015
dodicat
Posts: 7976
Joined: Jan 10, 2006 20:30
Location: Scotland

Re: FreeBasic IDE-poseidonFB

Post by dodicat »

WinRar extracts this but not properly.
Is there a free .7z extractor?

By the way I've had a look at D in the past.
It looks powerful but difficult.

If I get your file extracted I shall certainly test it out.
fxm
Moderator
Posts: 12082
Joined: Apr 22, 2009 12:46
Location: Paris suburbs, FRANCE

Re: FreeBasic IDE-poseidonFB

Post by fxm »

7-Zip Portable | PortableApps.com - Portable software for USB, portable and cloud drives:
http://portableapps.com/apps/utilities/7-zip_portable
Imortis
Moderator
Posts: 1923
Joined: Jun 02, 2005 15:10
Location: USA
Contact:

Re: FreeBasic IDE-poseidonFB

Post by Imortis »

I tested it, and as you say it is still in beta. I had a few things that did not work as expected, but it shows promise!

Keep up the good work. I can't want to see it grow.
St_W
Posts: 1619
Joined: Feb 11, 2009 14:24
Location: Austria
Contact:

Re: FreeBasic IDE-poseidonFB

Post by St_W »

I tried it and it didn't use a monospaced font for the editor, probably because I don't have a font named "Inconsolata", which is set in the "Preference" dialog. When I try to change the font (press the "..." button) the executable crashes.

I would also prefer to have monospaced fonts only in the editor and console output, but not in dialogs, code outline, file tab headers, ...
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

Monospaced is my personal aesthetic, but it seems to not so popular...... ><

I will add all font setting, I still can keep my aesthetic but everybody can set the font by themselves.

About crash, I still have no idea what's happens, but I will rewrite the code and test it.
dodicat
Posts: 7976
Joined: Jan 10, 2006 20:30
Location: Scotland

Re: FreeBasic IDE-poseidonFB

Post by dodicat »

I cannot get the ide to work with Win XP.
I get the ide running OK, but cannot compile.
Also, I don't want to use the de-bugger, so how do I do that?
I had to download an extra .dll file, maybe this is the reason.

The ide leaves:

at the beginning of a source code.

I have to get rid of it to run the file on fbide once more.


Maybe it is just not XP compatible.
XP is outdated now anyway.
St_W
Posts: 1619
Joined: Feb 11, 2009 14:24
Location: Austria
Contact:

Re: FreeBasic IDE-poseidonFB

Post by St_W »

Kuan Hsu wrote:About crash, I still have no idea what's happens, but I will rewrite the code and test it.
Unfortunately I haven't any experience with D and no D compilers installed.
So here's the Minidump+Heap: http://www.filedropper.com/poseidonfb (16MB compressed; 66MB uncompressed)
Lothar Schirm
Posts: 436
Joined: Sep 28, 2013 15:08
Location: Germany

Re: FreeBasic IDE-poseidonFB

Post by Lothar Schirm »

Looks very promising! I have found a mistake: If you change the debugger path, it will be written into the compiler path.
Kuan Hsu
Posts: 586
Joined: Sep 16, 2007 15:12
Location: Taiwan

Re: FreeBasic IDE-poseidonFB

Post by Kuan Hsu »

St_W wrote: Unfortunately I haven't any experience with D and no D compilers installed.
So here's the Minidump+Heap: http://www.filedropper.com/poseidonfb (16MB compressed; 66MB uncompressed)
I've reupload the new version of poseidonFB which can set the font of Outline, Project...
The code had be re-written, please check it crash or not?
Post Reply