Re: std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- From: "Jeff Lait" <torespondisfutile@xxxxxxxxxxx>
- Date: 3 Aug 2005 18:46:44 -0700
Thomas wrote:
> Basically my problem is that i want to be able to hold huge maps and
> even just having null pointers on a 5000,5000 grid or somthing huge for
Tile your map into smaller, 50x50 regions. This lets you trivially
compress the empty regions and only store real data.
--
Jeff Lait
(POWDER: http://www.zincland.com/powder)
.
- References:
- std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- From: Thomas
- Re: std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- From: Jim Strathmeyer
- Re: std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- From: Thomas
- std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- Prev by Date: Re: std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- Next by Date: Re: std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- Previous by thread: Re: std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- Next by thread: Re: std::vector<Tile*> tiles; || std::vector<std::vector<Tile*> > tiles; || what? Ideas?
- Index(es):
Relevant Pages
|