How to create a bitmap array for a main game window
by Moeed Arif Ali · in Game Design and Creative Issues · 06/10/2009 (4:21 am) · 4 replies
pls can any budie help me how to create a bitmap array for my main game window like most games have.
#2
As for how to make a "real complex" GUI? Well, depends on what you want in it. What you should do is both look at the .gui files in the engine now, and check out the tutorials for the simpler ones, and then use that knowledge to work on more complex stuff- because really, a complex GUI is just a collection of simpler GUI components. Check out the documentation area on this site, or the docs that come with the engine, and do searches on the site for additional information (there's a lot of threads with great information here).
Hope that helps.
06/10/2009 (7:30 am)
Moeed: If you look in game\common\gui\images (this is in TGEA 1.7 I'm using), then you will see a number of PNGs that define the graphics for the GUI controls in TGEA. I suggest you create copies and modify those, and then go into your profiles.cs, or customProfiles.cs files and change the "bitmap = " lines to reflect the changes you've made. It's what I do.As for how to make a "real complex" GUI? Well, depends on what you want in it. What you should do is both look at the .gui files in the engine now, and check out the tutorials for the simpler ones, and then use that knowledge to work on more complex stuff- because really, a complex GUI is just a collection of simpler GUI components. Check out the documentation area on this site, or the docs that come with the engine, and do searches on the site for additional information (there's a lot of threads with great information here).
Hope that helps.
#3
Here is the link i am talking about.
http://www.garagegames.com/community/blogs/view/7279
06/10/2009 (10:00 am)
Thanks for the help but i want bitmap array for my main game window like most game have now a days.Look at the link i am sending.I want the names of the parts and order in which they r create in a bitmap array. In this thread they have show many type of bitmap array for different controls but not for main game window if some budie want some skinning in the main game play window there is no help on it as far as i know.If there is i am unable to find it. Pls guide me if any budie knows about it.Here is the link i am talking about.
http://www.garagegames.com/community/blogs/view/7279
#4
Edit: Or do you mean the Windows window that the entire game is in? For that, you will need to do some OS-specific coding.
06/10/2009 (8:07 pm)
Actually, that does indeed show how to modify the main game window GUI, the element names in the skin, and the order in which they are placed in the PNG (to which I gave you the location in my original post).Edit: Or do you mean the Windows window that the entire game is in? For that, you will need to do some OS-specific coding.
Moeed Arif Ali