basic3d (bas2c++/experimental language)

Announce new projects or updates of Irrlicht Engine related tools, games, and applications.
Also check the Wiki
Post Reply

bas2C++/Irrlicht - What do you think?

Poll ended at Tue Jul 19, 2005 9:25 pm

No - nobody wants basic anymore!
4
40%
No - the idea is complete bad
0
No votes
Yes - I think its a good idea
6
60%
 
Total votes: 10

support@pssoftware.net
Posts: 3
Joined: Mon Jul 04, 2005 4:14 pm

basic3d (bas2c++/experimental language)

Post by support@pssoftware.net »

Hi :D ,
currently I am developing a tool, where you enter basic like code and get C++ code, using Irrlicht. It can be seen like DarkBasic, etc. - but of course it doesn't support so many functions. Currently I have only integrated a few ones.
If you like the idea and could make use of this, please post a reply or answer the pol!
Emil_halim
Posts: 518
Joined: Tue Mar 29, 2005 9:02 pm
Location: Alex,Egypt
Contact:

Post by Emil_halim »

Hi

did you checked this tutorial

http://www.irrforge.org/index.php/Irrli ... X_language

i thinks BCX is your way
support@pssoftware.net
Posts: 3
Joined: Mon Jul 04, 2005 4:14 pm

Post by support@pssoftware.net »

Hi,
yes I know about BCX (a great program!)
But I want to simplify the use of Irrlicht at a maximum. For example you write

Code: Select all

createDevice(software,1,false)
string(text,"Hello World!")
print(text)
drop
end
and the output file contains the matching C++ language to this.
Emil_halim
Posts: 518
Joined: Tue Mar 29, 2005 9:02 pm
Location: Alex,Egypt
Contact:

Post by Emil_halim »

i thinks you still could do it with BCX.

how.....?

with a macro , so you could impelment some macros to simplfy every things

Code: Select all

 
#define createDevice(Dtype,W,H,FSren)  irrDevice = createDevice(Dtype,dimension2d<s32>(W,H),32,FSren,false,false,0);

#define print(text)  printf(text);

and so on.....

this is mush easly instead of implement evry thing from the beginning

just my own thought
buhatkj
Posts: 444
Joined: Fri Dec 12, 2003 4:53 am
Contact:

or...

Post by buhatkj »

vb.net?? i mean how simple can we really go here before we start cuttin out important features....
My irrlicht-based projects have gone underground for now, but if you want, check out my webcomic instead! http://brokenboomerang.net
Post Reply