├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── assets │ ├── favicon.ico │ ├── logo_large.png │ ├── logo_medium.png │ ├── logo_small.png │ └── wiki │ │ ├── tilepix_basicswindow.png │ │ ├── tilepix_basictiled.png │ │ ├── tilepix_embeddedtileset.png │ │ ├── tilepix_emptyscreen.png │ │ └── tilepix_mapcreation.png └── pull_request_template.md ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CODING_STANDARDS.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── data.go ├── data_test.go ├── examples ├── 16.png ├── README.md ├── basics │ ├── basics.go │ └── map.tmx ├── t1.tmx └── wiki │ ├── basics.go │ └── map.tmx ├── go.mod ├── go.sum ├── image.go ├── image_test.go ├── imagelayer.go ├── imagelayer_test.go ├── map.go ├── map_test.go ├── object.go ├── object_i_test.go ├── object_test.go ├── objectgroup.go ├── objectgroup_test.go ├── point.go ├── point_test.go ├── polygon.go ├── polygon_test.go ├── polyline.go ├── polyline_test.go ├── property.go ├── property_test.go ├── testdata ├── base64-gzip.tmx ├── base64-zlib.tmx ├── base64.tmx ├── basic.tmx ├── csv.tmx ├── ellipse.tmx ├── external_tileset.tmx ├── infinite.tmx ├── logo_small.png ├── point.tmx ├── poly.tmx ├── rectangle.tmx ├── singleWhite.png ├── tileobject.tmx ├── tileobjectgroups.tmx ├── tileset.png ├── tileset.tsx ├── tileset_no_columns.tsx └── xml.tmx ├── tile.go ├── tile_test.go ├── tilelayer.go ├── tilelayer_test.go ├── tilepix.go ├── tilepix_test.go ├── tileset.go ├── tileset_test.go └── utilities.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @bcvery1 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/favicon.ico -------------------------------------------------------------------------------- /.github/assets/logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/logo_large.png -------------------------------------------------------------------------------- /.github/assets/logo_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/logo_medium.png -------------------------------------------------------------------------------- /.github/assets/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/logo_small.png -------------------------------------------------------------------------------- /.github/assets/wiki/tilepix_basicswindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/wiki/tilepix_basicswindow.png -------------------------------------------------------------------------------- /.github/assets/wiki/tilepix_basictiled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/wiki/tilepix_basictiled.png -------------------------------------------------------------------------------- /.github/assets/wiki/tilepix_embeddedtileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/wiki/tilepix_embeddedtileset.png -------------------------------------------------------------------------------- /.github/assets/wiki/tilepix_emptyscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/wiki/tilepix_emptyscreen.png -------------------------------------------------------------------------------- /.github/assets/wiki/tilepix_mapcreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/assets/wiki/tilepix_mapcreation.png -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CODING_STANDARDS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/CODING_STANDARDS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/README.md -------------------------------------------------------------------------------- /data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/data.go -------------------------------------------------------------------------------- /data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/data_test.go -------------------------------------------------------------------------------- /examples/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/examples/16.png -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/basics/basics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/examples/basics/basics.go -------------------------------------------------------------------------------- /examples/basics/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/examples/basics/map.tmx -------------------------------------------------------------------------------- /examples/t1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/examples/t1.tmx -------------------------------------------------------------------------------- /examples/wiki/basics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/examples/wiki/basics.go -------------------------------------------------------------------------------- /examples/wiki/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/examples/wiki/map.tmx -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/go.sum -------------------------------------------------------------------------------- /image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/image.go -------------------------------------------------------------------------------- /image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/image_test.go -------------------------------------------------------------------------------- /imagelayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/imagelayer.go -------------------------------------------------------------------------------- /imagelayer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/imagelayer_test.go -------------------------------------------------------------------------------- /map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/map.go -------------------------------------------------------------------------------- /map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/map_test.go -------------------------------------------------------------------------------- /object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/object.go -------------------------------------------------------------------------------- /object_i_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/object_i_test.go -------------------------------------------------------------------------------- /object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/object_test.go -------------------------------------------------------------------------------- /objectgroup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/objectgroup.go -------------------------------------------------------------------------------- /objectgroup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/objectgroup_test.go -------------------------------------------------------------------------------- /point.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/point.go -------------------------------------------------------------------------------- /point_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/point_test.go -------------------------------------------------------------------------------- /polygon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/polygon.go -------------------------------------------------------------------------------- /polygon_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/polygon_test.go -------------------------------------------------------------------------------- /polyline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/polyline.go -------------------------------------------------------------------------------- /polyline_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/polyline_test.go -------------------------------------------------------------------------------- /property.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/property.go -------------------------------------------------------------------------------- /property_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/property_test.go -------------------------------------------------------------------------------- /testdata/base64-gzip.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/base64-gzip.tmx -------------------------------------------------------------------------------- /testdata/base64-zlib.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/base64-zlib.tmx -------------------------------------------------------------------------------- /testdata/base64.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/base64.tmx -------------------------------------------------------------------------------- /testdata/basic.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/basic.tmx -------------------------------------------------------------------------------- /testdata/csv.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/csv.tmx -------------------------------------------------------------------------------- /testdata/ellipse.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/ellipse.tmx -------------------------------------------------------------------------------- /testdata/external_tileset.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/external_tileset.tmx -------------------------------------------------------------------------------- /testdata/infinite.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/infinite.tmx -------------------------------------------------------------------------------- /testdata/logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/logo_small.png -------------------------------------------------------------------------------- /testdata/point.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/point.tmx -------------------------------------------------------------------------------- /testdata/poly.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/poly.tmx -------------------------------------------------------------------------------- /testdata/rectangle.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/rectangle.tmx -------------------------------------------------------------------------------- /testdata/singleWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/singleWhite.png -------------------------------------------------------------------------------- /testdata/tileobject.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/tileobject.tmx -------------------------------------------------------------------------------- /testdata/tileobjectgroups.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/tileobjectgroups.tmx -------------------------------------------------------------------------------- /testdata/tileset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/tileset.png -------------------------------------------------------------------------------- /testdata/tileset.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/tileset.tsx -------------------------------------------------------------------------------- /testdata/tileset_no_columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/tileset_no_columns.tsx -------------------------------------------------------------------------------- /testdata/xml.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/testdata/xml.tmx -------------------------------------------------------------------------------- /tile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tile.go -------------------------------------------------------------------------------- /tile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tile_test.go -------------------------------------------------------------------------------- /tilelayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tilelayer.go -------------------------------------------------------------------------------- /tilelayer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tilelayer_test.go -------------------------------------------------------------------------------- /tilepix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tilepix.go -------------------------------------------------------------------------------- /tilepix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tilepix_test.go -------------------------------------------------------------------------------- /tileset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tileset.go -------------------------------------------------------------------------------- /tileset_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/tileset_test.go -------------------------------------------------------------------------------- /utilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcvery1/tilepix/HEAD/utilities.go --------------------------------------------------------------------------------