you could give gdk a try before you buy dbpro
gdk and vs are free, and share near exactly the same commands as dbpro
eg
sync on
sync rate 60
make object sphere 1,10
position object 1,10,10,10
do
text 0,0,"hi"
text 0,15,str$(demoif)
inc demoif, 1
if demoif = 10
demoif = 1
endif
sync
loop
in c++ is
dbSyncOn( );
dbSyncRate ( 60 );
dbMakeObjectSphere ( 1,10 );
dbPositionObject ( 1,10,10,10 );
int demoif = 1;
while ( LoopGDK())
{
dbText ( 0,0,"hi" );
dbText ( 0,15,dbStr(demoif) );
demoif++;
if ( demoif == 10 )
{
demoif = 1;
}
dbSync();
}
thats excluding the include commands