OSDN Git Service

Initial commit of new maps api.
authorJustin Shapcott <support@mobidevelop.com>
Sat, 19 Jan 2013 14:52:34 +0000 (07:52 -0700)
committerJustin Shapcott <support@mobidevelop.com>
Sat, 19 Jan 2013 14:52:34 +0000 (07:52 -0700)
commitf2062b65803f6d7bda47270fbefac243c0d5e97c
tree1aed7867be62e4da4d88337da1df79943ff4e0e9
parentbf719763da9753e5c7feac3a96bae387afcf9873
Initial commit of new maps api.
50 files changed:
gdx/src/com/badlogic/gdx/maps/Map.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/MapLayer.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/MapLayers.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/MapObject.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/MapObjects.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/MapProperties.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/MapRenderer.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/loaders/TmxMapLoader.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/objects/CircleMapObject.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/objects/PolygonMapObject.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/objects/PolylineMapObject.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/objects/RectangleMapObject.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/objects/TextureMapObject.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/tiled/TiledMap.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/tiled/TiledMapRenderer.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/tiled/TiledMapTile.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/tiled/TiledMapTileLayer.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/tiled/TiledMapTileSet.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/tiled/TiledMapTileSets.java [new file with mode: 0644]
gdx/src/com/badlogic/gdx/maps/tiled/tiles/StaticTiledMapTile.java [new file with mode: 0644]
tests/gdx-tests-android/assets/data/maps/tiles.png [new file with mode: 0644]
tests/gdx-tests-android/assets/data/maps/tiles.tmx [new file with mode: 0644]
tests/gdx-tests-android/assets/data/maps/tiles.tsx [new file with mode: 0644]
tests/gdx-tests-android/assets/data/tiledmap/alignment test.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/flip_rotate/flip_rotate.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/flip_rotate/tmw-desert-spacing packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/flip_rotate/tmw-desert-spacing1.png [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/margin spacing doctype test.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/perspective walls packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/perspective walls test packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/perspective walls test1.png [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/perspective walls.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/perspective walls1.png [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tilemap csv.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tilemap gzip.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tilemap uncompressed.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tilemap xml.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tilemap zlib.tmx [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset1.png [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset2 packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset21.png [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset3 packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset31.png [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset4 packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tileset41.png [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tmw-desert-spacing packfile [deleted file]
tests/gdx-tests-android/assets/data/tiledmap/tmw-desert-spacing1.png [deleted file]
tests/gdx-tests/src/com/badlogic/gdx/tests/TiledMapTest.java [new file with mode: 0644]
tests/gdx-tests/src/com/badlogic/gdx/tests/utils/GdxTests.java