GLBasic forum

Main forum => GLBasic - en => Topic started by: Neurox on 2007-Oct-04

Title: Two words about new version
Post by: Neurox on 2007-Oct-04
Hello,
I'm registered user from a many months ago.
I've developed various games for GP2X with GLBasic.
My big work is GP2XPaint , draw program for GP2X, developed with GLBasic 4.
I've translated GP2XPaint to version 5, in 4 hours :-( because fillrect->drawrect parameters is different :-( and other little things.
But I don't have seen any improvement in new version for GP2X, because there are not the "cardle" functions for use usb mouse,keyboard and other devices.
Please add the support for the new GP2X F200 with touchscreen.

Regards,
Neurox
Title: Two words about new version
Post by: Kitty Hello on 2007-Oct-05
Oh dear. In that case, you're better had inserted a function:
Code (glbasic) Select
FUNCTION FILLRECT x,y,x2,y1,col
   DRAWRECT x,y,x+x2-1, y+y1-1, col
ENDFUNCTION
The F200 touchscreen will be supported very soon. It's on top of my TODO list. At the _very_ top ;)

Also, cradle (BOB) keyboard should be in soon, too.
Title: Two words about new version
Post by: Neurox on 2007-Oct-05
Hello,

QuoteOh dear. In that case, you're better had inserted a function:
Code (glbasic) Select
FUNCTION FILLRECT x,y,x2,y1,col
   DRAWRECT x,y,x+x2-1, y+y1-1, col
ENDFUNCTION
Yes, I've resolved in this way.

QuoteThe F200 touchscreen will be supported very soon.
It's on top of my TODO list. At the _very_ top wink
Also, cradle (BOB) keyboard should be in soon, too.
Oh, this is a great notice!!
Thanks!!!!
Now I'm a happy programmer ;-)

Neurox