managing game resources & memory managers

Started by
2 comments, last by vicviper 20 years, 6 months ago
Hi, I''m bored of load the resources of my projects by hand (hardcoding a huge list of loadthis & loadthat) and I was thinking in doing some sort of resource manager that could load a whole set of resources with a single call. as game resources, I mean all general resources that are needed for a project, from 3d models, maps, scripts, text strings, bitmaps, score tables, GUIs, paths... everything. Also, I''m worried about the management of memory... I''ve seen lots of projects arround that call Malloc and New for every single little structure of the game, I don''t like that because it fragments memory too much, and may result in memory leaks. Another method I''ve seen is to request a very big memory block and use it as a memory stack, I think this is a lot more clean, but in real projects, you never know how much memory you''re going to use, and you end up requesting much more memory than needed, and this si bad for systems with not too much memory (pocket pc, consoles...) so, what do you do to to manage game resources? is there a good general approach used by everybody?
Advertisement
I would say, that calling new frequenctly is not that bad, as logn as this is done in an initialization stage. Fragmentation of memory happens from reallocating a lot, and a lot of allocation on the fly. If you need to constantly change resources in actual game play (like a dynamic routine to only keep the immediate vicinity loaded etc) then managing the memory yourself can be preferable. If most of your data is preloaded, new/delete is not a prob. I would recommend that you wrap all your resources allocation in templated classes. This applies to opening files, getting device contexts, and anything that has to be obtained, then released. A good scheme is detailed here. I hope this helps
I wouldnt worry about getting a big block of memory, that is waht system req are for. You say this game needs 64 megs of free ram and if they dont have it then its there fault for buying that game.
Interested in being apart of a team of people that are developing a toolkit that can help anyone product an online game? Then click here http://tangle.thomson.id.au/
About memory managers I recommend using boost:: pool, and if you can you should always try to use smart pointers like boost::smart_ptr

Don't know if I understood the first part right, buth you're qurious about object management? Outside the game engine? Like "these are all my objects, load em up cause I'll be asking for them!"? Ehm, the easiest way might be to make a tool? Where you specify what textures to load and it'll make a load.txt file that your engine can read?

I've had my thought on stuff like that too, especially around scenes. What I think is that in the beginning your resource managers load up all objects that will be used in this scene, and then the scene only reference to them by name.

example file, XML style:
// Load up object manager
< item type="weapon" name="MyBigGun>

< image>biggun.bmp< /image>
< /item>
// etc.

// now for the scene
< house x="200" y="200" width="100" height="100">
< item ref="MyBigGun" posx="20" posy="10" />
< /house >



eh kinda lame example but you get the picture right? There's only one definition for MyBigGun, but several referenses to it. Your object manager is responsible for "loaning" out it, or duplicate it, depending on your need.

}-- Programmer/Gamer/Dreamer --{

[edited by - Seriema on October 10, 2003 10:28:27 PM]
[ ThumbView: Adds thumbnail support for DDS, PCX, TGA and 16 other imagetypes for Windows XP Explorer. ] [ Chocolate peanuts: Brazilian recipe for home made chocolate covered peanuts. Pure coding pleasure. ]

This topic is closed to new replies.

Advertisement