IGlass 1.5.2 with animated images

BlitzMax Forums/BlitzMax Programming/IGlass 1.5.2 with animated images

Filax(Posted 2005) [#1]
Hi

I'm working on the next Iglass release with animated images and buttons.

Please can you download this :
http://www.blitz3dfr.com/phpfrench/request.php?30

And in the zip file, execute : Example Animated Image.exe
and report me you frame rate ?

Cheers




Cartman(Posted 2005) [#2]
FPS: 509/7462620


smilertoo(Posted 2005) [#3]
Roughly 800 fps.


Filax(Posted 2005) [#4]
Thanks :) !


N(Posted 2005) [#5]
FPS : 1228 / 7462726

Tested on my desktop system, specs. in signature.


Grisu(Posted 2005) [#6]
A bir under 800.

Did I mention I only own an amd2100+! :P


LarsG(Posted 2005) [#7]
around 670 on my lappy; AMD Mobile Athlon 64 3200+, ATI Mobile 9700 64 MB, 512 MB SDRAM 333MHz, WinXP Home Edition


Filax(Posted 2005) [#8]
Thanks !


Perturbatio(Posted 2005) [#9]
~1100


maximo(Posted 2005) [#10]
can you add functionallity so that game menus can be made with it? it should be easy, just make it so that you can get rid of windows top or make it totaly transparent, and also make anything that's not needed transparent. Add support for this and you'll have more sells ;)


Filax(Posted 2005) [#11]
If you look the Iglass demo you will see that ALL widget can be transparent (full or none) !
You can make beautifull interface :) With alpha like window :)

For example look the exe file : Example Custom Toolbar.exe
you will see that the window and the listbox is 50% transparent
but not the button :) you can chosse individualy the alpha value for
each gadget :)

Example :
--------
MyWindow02=IGL_Window.Create("Alpha and shadow !",400,100,250,300,False,False,True)
MyWindow02.Alpha=0.5

Animated widget :
------------------
Of course for the moment it's only the image class :) but i plan to
make animated button :) for example animated game menu :)

I'm working on :)


maximo(Posted 2005) [#12]
>for example animated game menu :)

Cool I'm sure it will be "the gui" to use :) I'll probably buy it when I come back from vacation :9

Work on!


Filax(Posted 2005) [#13]
I do , i do :)


Scott Shaver(Posted 2005) [#14]
Random Suggestion:

Allow each widget to have a tint color set. This way one skin can have a infinite number of looks. You just set the current color to the tinit color instead of to white. So I could set a windows tinit color to 255,255,0 to get a yellowish window that still has all of the gradients in the skin graphics.


Filax(Posted 2005) [#15]
Good idea ! :) i'll try it :)


Filax(Posted 2005) [#16]
Good news :) you can now change all widget color :) by this :

MyWindow02=IGL_Window.Create("Test window",250,250,480,210,True,True,False)

MyWindow02.Color.Red=255
MyWindow02.Color.Green=155
MyWindow02.Color.Blue=15

Make a yellow window :) happy ? :)


Scott Shaver(Posted 2005) [#17]
nice. :)
Please add a method to set it:

MyWindow.SetTint(255,155,15)


Filax(Posted 2005) [#18]
I do :)