Regiden / RadicalFishEngine_OLD

An Engine build on top of libGDX [Canceled]
9 stars 2 forks source link

Make a Map System #1

Closed Regiden closed 12 years ago

Regiden commented 12 years ago

A generic tiled based map system must be done. Interfaces for ervery aspect of the map whould be used. Those are:

This allows user to make there own implementations (e.g. AnimatedTile).

Maps should be saveable. For now we just go with Java Serialization and some proxy objects which will be used to save the data. When loading a listener must be supplied to load the implementations of the Maps, Layers, TileSets and Tiles. This means the proxy objects need some kind of extra data (class name of the implementation for now I guess)

Regiden commented 12 years ago

Done in newest push. Maps are saved and loaded via MapIO. When loading the MapIOListener is loads the SpriteSheets for TileSets.