Skip to content

Commit

Permalink
Merge pull request #169 from meatlayer/ats-ets2-update
Browse files Browse the repository at this point in the history
Ats ets2 update
  • Loading branch information
mike-koch committed Dec 31, 2018
2 parents 62b61c2 + f305d0b commit 566e6f1
Show file tree
Hide file tree
Showing 76,231 changed files with 480 additions and 113 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

"config": {
"name": "ets2-mobile-route-advisor",
"title": "Mobile Route Advisor (3.5.0)",
"title": "Mobile Route Advisor (3.5.1)",
"author": "mkoch227 and contributors",
"width": -1,
"height": -1,
Expand Down
5 changes: 4 additions & 1 deletion dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,9 @@ function goToMap() {
if (g_configPrefix === 'ets2') {
g_map.updateSize();
}
else if (g_configPrefix === 'ats') {
g_map.updateSize();
}
}

function updateSpeedIndicator(speedLimit, currentSpeed) {
Expand Down Expand Up @@ -616,7 +619,7 @@ var g_translations;
var g_skinConfig;

// The current version of ets2-mobile-route-advisor
var g_currentVersion = '3.5.0';
var g_currentVersion = '3.5.1';

// The currently running game
var g_runningGame;
Expand Down
112 changes: 112 additions & 0 deletions maps/ats/js/cities.js
Original file line number Diff line number Diff line change
Expand Up @@ -470,5 +470,117 @@ var g_cities_json = [
"x": "-88849.8",
"y": "64.9961",
"z": "26463.2"
},
{
"gameName": "astoria",
"realName": "Astoria",
"country": "oregon",
"x": "-107078",
"y": "59.7773",
"z": "-57243"
},
{
"gameName": "bend",
"realName": "Bend",
"country": "oregon",
"x": "-100856",
"y": "104.578",
"z": "-42806.8"
},
{
"gameName": "burns",
"realName": "Burns",
"country": "oregon",
"x": "-92989.7",
"y": "113.398",
"z": "-37951.5"
},
{
"gameName": "coos_bay",
"realName": "Coos Bay",
"country": "oregon",
"x": "-113632",
"y": "55.2227",
"z": "-42775.4"
},
{
"gameName": "eugene",
"realName": "Eugene",
"country": "oregon",
"x": "-107310",
"y": "57.707",
"z": "-45581.2"
},
{
"gameName": "klamath_f",
"realName": "Klamath Falls",
"country": "oregon",
"x": "-105784",
"y": "116.527",
"z": "-33779.6"
},
{
"gameName": "lakeview",
"realName": "Lakeview",
"country": "oregon",
"x": "-100530",
"y": "154.777",
"z": "-31392"
},
{
"gameName": "medford",
"realName": "Medford",
"country": "oregon",
"x": "-110683",
"y": "91.8906",
"z": "-35739.2"
},
{
"gameName": "newport",
"realName": "Newport",
"country": "oregon",
"x": "-111075",
"y": "50.9961",
"z": "-48807.3"
},
{
"gameName": "ontario",
"realName": "Ontario",
"country": "oregon",
"x": "-84423.1",
"y": "92.0703",
"z": "-38195.3"
},
{
"gameName": "pendleton",
"realName": "Pendleton",
"country": "oregon",
"x": "-90062.4",
"y": "55.1875",
"z": "-49278.4"
},
{
"gameName": "portland",
"realName": "Portland",
"country": "oregon",
"x": "-105022",
"y": "58",
"z": "-52232.6"
},
{
"gameName": "salem",
"realName": "Salem",
"country": "oregon",
"x": "-106253",
"y": "73.7188",
"z": "-49404.3"
},
{
"gameName": "the_dalles",
"realName": "The Dalles",
"country": "oregon",
"x": "-98710",
"y": "50",
"z": "-51127.6"
}
]
94 changes: 62 additions & 32 deletions maps/ats/js/map.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// All of this should be executed after the DOM is ready and the entire skin has been loaded.

// Image size used in the map.
var MAX_X = 11776 * 2;
var MAX_Y = 9984 * 2;
var MAX_X = 135168;
var MAX_Y = 128512;
// How the image was extracted from the game:
// http://forum.scssoft.com/viewtopic.php?p=405122#p405122

Expand All @@ -15,7 +15,7 @@ function calculatePixelCoordinate(x, y, pointsPerPixel, x0, y0) {
}
function calculatePixelCoordinateEu(x, y) {
//return calculatePixelCoordinate(x, y, 9.69522, 10226, 9826); //x+16, y+4
return calculatePixelCoordinate(x, y, 3.89195, 30903, 9433); //x+16, y+4
return calculatePixelCoordinate(x, y, 0.78125, 166400, 76800); //x+16, y+4
}

function game_coord_to_pixels(x, y) {
Expand Down Expand Up @@ -68,11 +68,11 @@ function buildMap(target_element_id){
extent: [0, 0, MAX_X, MAX_Y],
minZoom: 0,
origin: [0, MAX_Y],
tileSize: [256, 256],
tileSize: [512, 512],
resolutions: (function(){
var r = [];
for (var z = 0; z <= 7; ++z) {
r[z] = Math.pow(2, 7 - z);
for (var z = 0; z <= 8; ++z) {
r[z] = Math.pow(2, 8 - z);
}
return r;
})()
Expand All @@ -93,7 +93,10 @@ function buildMap(target_element_id){
g_map = new ol.Map({
target: target_element_id,
controls: [
//new ol.control.MousePosition(), // DEBUG
// new ol.control.ZoomSlider(),
// new ol.control.OverviewMap(),
// new ol.control.Rotate(),
// new ol.control.MousePosition(), // DEBUG
new ol.control.Zoom(),
rotate_control,
speed_limit_control,
Expand All @@ -109,15 +112,31 @@ function buildMap(target_element_id){
layers: [
getMapTilesLayer(projection, custom_tilegrid),
getTextLayer(),
// Debug layer below.
// new ol.layer.Tile({
// extent: [0, 0, MAX_X, MAX_Y],
// source: new ol.source.TileDebug({
// projection: projection,
// tileGrid: custom_tilegrid,
// // tileGrid: ol.tilegrid.createXYZ({
// // extent: [0, 0, MAX_X, MAX_Y],
// // minZoom: 0,
// // maxZoom: 7,
// // tileSize: [256, 256]
// // }),
// wrapX: false
// })
// }),
vectorLayer
],
view: new ol.View({
projection: projection,
extent: [0, 0, MAX_X, MAX_Y],
//center: ol.proj.transform([37.41, 8.82], 'EPSG:4326', 'EPSG:3857'),
center: [MAX_X/2, MAX_Y/2],
minZoom: 0,
maxZoom: 6,
zoom: 4
minZoom: 2,
maxZoom: 8,
zoom: 5
})
});

Expand Down Expand Up @@ -150,30 +169,41 @@ function buildMap(target_element_id){
}

function getMapTilesLayer(projection, tileGrid) {
return new ol.layer.Tile({
extent: [0, 0, MAX_X, MAX_Y],
source: new ol.source.XYZ({
projection: projection,
url: g_pathPrefix + '/maps/ats/tiles/{z}/{x}/{y}.png',
tileSize: [256, 256],
// Using createXYZ() makes the vector layer (with the features) unaligned.
// It also tries loading non-existent tiles.
//
// Using custom_tilegrid causes rescaling of all image tiles before drawing
// (i.e. no image will be rendered at 1:1 pixels), But fixes all other issues.
tileGrid: tileGrid,
wrapX: false,
minZoom: 2,
maxZoom: 6
})
});
if (g_runningGame === 'ATS') {
return new ol.layer.Tile({
extent: [0, 0, MAX_X, MAX_Y],
source: new ol.source.XYZ({
projection: projection,
url: g_pathPrefix + '/maps/ats/tiles/{z}/{x}_{y}.png',
tileSize: [512, 512],
// Using createXYZ() makes the vector layer (with the features) unaligned.
// It also tries loading non-existent tiles.
//
// Using custom_tilegrid causes rescaling of all image tiles before drawing
// (i.e. no image will be rendered at 1:1 pixels), But fixes all other issues.
tileGrid: tileGrid,
// tileGrid: ol.tilegrid.createXYZ({
// extent: [0, 0, MAX_X, MAX_Y],
// minZoom: 0,
// maxZoom: 7,
// tileSize: [256, 256]
// }),
wrapX: false,
minZoom: 2,
maxZoom: 7
})
});
}

return new ol.layer.Tile();
}

var STATE_NAME_TO_CODE = {
"california": "ca",
"nevada": "nv",
"arizona": "az",
"new_mexico": "nm"
"new_mexico": "nm",
"oregon": "or"
};

function getTextFeatures() {
Expand All @@ -183,7 +213,7 @@ function getTextFeatures() {
stroke.setColor('#000');
stroke.setWidth(2);
var createTextStyle = function(resolution) {
var scale = Math.min(1, Math.max(0, 1.0 / Math.log2(resolution + 1) - 0.055));
var scale = Math.min(1, Math.max(0, 1.0 / Math.log2(resolution + 1) - 0.015));
return [new ol.style.Style({
//Creating a new image layer
image: new ol.style.Icon(({
Expand All @@ -194,16 +224,16 @@ function getTextFeatures() {
snapToPixel: false,
// Flag images from: http://usa.flagpedia.net/
src: g_pathPrefix + '/flags-usa/' + this.get('cc') + '.png',
scale: 4 / 40 * scale
scale: 4 / 24 * scale
})),
text: new ol.style.Text({
text: this.get('realName'),
font: '48px "Helvetica Neue", "Helvetica", "Arial", sans-serif',
font: '1.1em "Helvetica Neue", "Helvetica", "Arial", sans-serif',
textAlign: 'center',
fill: fill,
stroke: stroke,
scale: scale,
offsetY: 15 * scale
offsetY: 34 * scale
})
})];
};
Expand Down
Binary file removed maps/ats/tiles/0/0/0.png
Binary file not shown.
Binary file added maps/ats/tiles/0/0_0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/0/0_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/0/1_0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/0/1_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed maps/ats/tiles/1/0/0.png
Binary file not shown.
Binary file removed maps/ats/tiles/1/0/1.png
Binary file not shown.
Binary file added maps/ats/tiles/1/0_0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/1/0_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/1/0_2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed maps/ats/tiles/1/1/0.png
Binary file not shown.
Binary file removed maps/ats/tiles/1/1/1.png
Binary file not shown.
Binary file added maps/ats/tiles/1/1_0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/1/1_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/1/1_2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/1/2_0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/1/2_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/1/2_2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed maps/ats/tiles/2/0/0.png
Binary file not shown.
Binary file removed maps/ats/tiles/2/0/1.png
Binary file not shown.
Binary file removed maps/ats/tiles/2/0/2.png
Binary file not shown.
Binary file added maps/ats/tiles/2/0_0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/2/0_1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/2/0_2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/2/0_3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added maps/ats/tiles/2/0_4.png
Binary file removed maps/ats/tiles/2/1/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/2/1/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/2/1/2.png
Diff not rendered.
Binary file added maps/ats/tiles/2/1_0.png
Binary file added maps/ats/tiles/2/1_1.png
Binary file added maps/ats/tiles/2/1_2.png
Binary file added maps/ats/tiles/2/1_3.png
Binary file added maps/ats/tiles/2/1_4.png
Binary file removed maps/ats/tiles/2/2/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/2/2/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/2/2/2.png
Diff not rendered.
Binary file added maps/ats/tiles/2/2_0.png
Binary file added maps/ats/tiles/2/2_1.png
Binary file added maps/ats/tiles/2/2_2.png
Binary file added maps/ats/tiles/2/2_3.png
Binary file added maps/ats/tiles/2/2_4.png
Binary file added maps/ats/tiles/2/3_0.png
Binary file added maps/ats/tiles/2/3_1.png
Binary file added maps/ats/tiles/2/3_2.png
Binary file added maps/ats/tiles/2/3_3.png
Binary file added maps/ats/tiles/2/3_4.png
Binary file added maps/ats/tiles/2/4_0.png
Binary file added maps/ats/tiles/2/4_1.png
Binary file added maps/ats/tiles/2/4_2.png
Binary file added maps/ats/tiles/2/4_3.png
Binary file added maps/ats/tiles/2/4_4.png
Binary file removed maps/ats/tiles/3/0/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/0/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/0/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/0/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/0/4.png
Diff not rendered.
Binary file added maps/ats/tiles/3/0_0.png
Binary file added maps/ats/tiles/3/0_1.png
Binary file added maps/ats/tiles/3/0_2.png
Binary file added maps/ats/tiles/3/0_3.png
Binary file added maps/ats/tiles/3/0_4.png
Binary file added maps/ats/tiles/3/0_5.png
Binary file added maps/ats/tiles/3/0_6.png
Binary file added maps/ats/tiles/3/0_7.png
Binary file added maps/ats/tiles/3/0_8.png
Binary file removed maps/ats/tiles/3/1/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/1/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/1/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/1/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/1/4.png
Diff not rendered.
Binary file added maps/ats/tiles/3/1_0.png
Binary file added maps/ats/tiles/3/1_1.png
Binary file added maps/ats/tiles/3/1_2.png
Binary file added maps/ats/tiles/3/1_3.png
Binary file added maps/ats/tiles/3/1_4.png
Binary file added maps/ats/tiles/3/1_5.png
Binary file added maps/ats/tiles/3/1_6.png
Binary file added maps/ats/tiles/3/1_7.png
Binary file added maps/ats/tiles/3/1_8.png
Binary file removed maps/ats/tiles/3/2/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/2/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/2/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/2/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/2/4.png
Diff not rendered.
Binary file added maps/ats/tiles/3/2_0.png
Binary file added maps/ats/tiles/3/2_1.png
Binary file added maps/ats/tiles/3/2_2.png
Binary file added maps/ats/tiles/3/2_3.png
Binary file added maps/ats/tiles/3/2_4.png
Binary file added maps/ats/tiles/3/2_5.png
Binary file added maps/ats/tiles/3/2_6.png
Binary file added maps/ats/tiles/3/2_7.png
Binary file added maps/ats/tiles/3/2_8.png
Binary file removed maps/ats/tiles/3/3/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/3/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/3/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/3/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/3/4.png
Diff not rendered.
Binary file added maps/ats/tiles/3/3_0.png
Binary file added maps/ats/tiles/3/3_1.png
Binary file added maps/ats/tiles/3/3_2.png
Binary file added maps/ats/tiles/3/3_3.png
Binary file added maps/ats/tiles/3/3_4.png
Binary file added maps/ats/tiles/3/3_5.png
Binary file added maps/ats/tiles/3/3_6.png
Binary file added maps/ats/tiles/3/3_7.png
Binary file added maps/ats/tiles/3/3_8.png
Binary file removed maps/ats/tiles/3/4/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/4/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/4/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/4/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/4/4.png
Diff not rendered.
Binary file added maps/ats/tiles/3/4_0.png
Binary file added maps/ats/tiles/3/4_1.png
Binary file added maps/ats/tiles/3/4_2.png
Binary file added maps/ats/tiles/3/4_3.png
Binary file added maps/ats/tiles/3/4_4.png
Binary file added maps/ats/tiles/3/4_5.png
Binary file added maps/ats/tiles/3/4_6.png
Binary file added maps/ats/tiles/3/4_7.png
Binary file added maps/ats/tiles/3/4_8.png
Binary file removed maps/ats/tiles/3/5/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/5/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/5/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/5/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/3/5/4.png
Diff not rendered.
Binary file added maps/ats/tiles/3/5_0.png
Binary file added maps/ats/tiles/3/5_1.png
Binary file added maps/ats/tiles/3/5_2.png
Binary file added maps/ats/tiles/3/5_3.png
Binary file added maps/ats/tiles/3/5_4.png
Binary file added maps/ats/tiles/3/5_5.png
Binary file added maps/ats/tiles/3/5_6.png
Binary file added maps/ats/tiles/3/5_7.png
Binary file added maps/ats/tiles/3/5_8.png
Binary file added maps/ats/tiles/3/6_0.png
Binary file added maps/ats/tiles/3/6_1.png
Binary file added maps/ats/tiles/3/6_2.png
Binary file added maps/ats/tiles/3/6_3.png
Binary file added maps/ats/tiles/3/6_4.png
Binary file added maps/ats/tiles/3/6_5.png
Binary file added maps/ats/tiles/3/6_6.png
Binary file added maps/ats/tiles/3/6_7.png
Binary file added maps/ats/tiles/3/6_8.png
Binary file added maps/ats/tiles/3/7_0.png
Binary file added maps/ats/tiles/3/7_1.png
Binary file added maps/ats/tiles/3/7_2.png
Binary file added maps/ats/tiles/3/7_3.png
Binary file added maps/ats/tiles/3/7_4.png
Binary file added maps/ats/tiles/3/7_5.png
Binary file added maps/ats/tiles/3/7_6.png
Binary file added maps/ats/tiles/3/7_7.png
Binary file added maps/ats/tiles/3/7_8.png
Binary file added maps/ats/tiles/3/8_0.png
Binary file added maps/ats/tiles/3/8_1.png
Binary file added maps/ats/tiles/3/8_2.png
Binary file added maps/ats/tiles/3/8_3.png
Binary file added maps/ats/tiles/3/8_4.png
Binary file added maps/ats/tiles/3/8_5.png
Binary file added maps/ats/tiles/3/8_6.png
Binary file added maps/ats/tiles/3/8_7.png
Binary file added maps/ats/tiles/3/8_8.png
Binary file removed maps/ats/tiles/4/0/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/4.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/5.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/6.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/7.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/8.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/0/9.png
Diff not rendered.
Binary file added maps/ats/tiles/4/0_0.png
Binary file added maps/ats/tiles/4/0_1.png
Binary file added maps/ats/tiles/4/0_10.png
Binary file added maps/ats/tiles/4/0_11.png
Binary file added maps/ats/tiles/4/0_12.png
Binary file added maps/ats/tiles/4/0_13.png
Binary file added maps/ats/tiles/4/0_14.png
Binary file added maps/ats/tiles/4/0_15.png
Binary file added maps/ats/tiles/4/0_16.png
Binary file added maps/ats/tiles/4/0_2.png
Binary file added maps/ats/tiles/4/0_3.png
Binary file added maps/ats/tiles/4/0_4.png
Binary file added maps/ats/tiles/4/0_5.png
Binary file added maps/ats/tiles/4/0_6.png
Binary file added maps/ats/tiles/4/0_7.png
Binary file added maps/ats/tiles/4/0_8.png
Binary file added maps/ats/tiles/4/0_9.png
Binary file removed maps/ats/tiles/4/1/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/4.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/5.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/6.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/7.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/8.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/1/9.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/4.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/5.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/6.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/7.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/8.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/10/9.png
Diff not rendered.
Binary file added maps/ats/tiles/4/10_0.png
Binary file added maps/ats/tiles/4/10_1.png
Binary file added maps/ats/tiles/4/10_10.png
Binary file added maps/ats/tiles/4/10_11.png
Binary file added maps/ats/tiles/4/10_12.png
Binary file added maps/ats/tiles/4/10_13.png
Binary file added maps/ats/tiles/4/10_14.png
Binary file added maps/ats/tiles/4/10_15.png
Binary file added maps/ats/tiles/4/10_16.png
Binary file added maps/ats/tiles/4/10_2.png
Binary file added maps/ats/tiles/4/10_3.png
Binary file added maps/ats/tiles/4/10_4.png
Binary file added maps/ats/tiles/4/10_5.png
Binary file added maps/ats/tiles/4/10_6.png
Binary file added maps/ats/tiles/4/10_7.png
Binary file added maps/ats/tiles/4/10_8.png
Binary file added maps/ats/tiles/4/10_9.png
Binary file removed maps/ats/tiles/4/11/0.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/1.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/2.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/3.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/4.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/5.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/6.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/7.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/8.png
Diff not rendered.
Binary file removed maps/ats/tiles/4/11/9.png
Diff not rendered.
Binary file added maps/ats/tiles/4/11_0.png
Binary file added maps/ats/tiles/4/11_1.png
Binary file added maps/ats/tiles/4/11_10.png
Binary file added maps/ats/tiles/4/11_11.png
Binary file added maps/ats/tiles/4/11_12.png
Binary file added maps/ats/tiles/4/11_13.png
Binary file added maps/ats/tiles/4/11_14.png
Binary file added maps/ats/tiles/4/11_15.png
Binary file added maps/ats/tiles/4/11_16.png
Binary file added maps/ats/tiles/4/11_2.png
Binary file added maps/ats/tiles/4/11_3.png
Binary file added maps/ats/tiles/4/11_4.png
Binary file added maps/ats/tiles/4/11_5.png
Binary file added maps/ats/tiles/4/11_6.png
Binary file added maps/ats/tiles/4/11_7.png
Binary file added maps/ats/tiles/4/11_8.png
Binary file added maps/ats/tiles/4/11_9.png
Binary file added maps/ats/tiles/4/12_0.png
Binary file added maps/ats/tiles/4/12_1.png
Binary file added maps/ats/tiles/4/12_10.png
Binary file added maps/ats/tiles/4/12_11.png
Binary file added maps/ats/tiles/4/12_12.png
Binary file added maps/ats/tiles/4/12_13.png
Binary file added maps/ats/tiles/4/12_14.png
Binary file added maps/ats/tiles/4/12_15.png
Binary file added maps/ats/tiles/4/12_16.png
Binary file added maps/ats/tiles/4/12_2.png
Binary file added maps/ats/tiles/4/12_3.png
Binary file added maps/ats/tiles/4/12_4.png
Binary file added maps/ats/tiles/4/12_5.png
Binary file added maps/ats/tiles/4/12_6.png
Binary file added maps/ats/tiles/4/12_7.png
Binary file added maps/ats/tiles/4/12_8.png
Binary file added maps/ats/tiles/4/12_9.png
Binary file added maps/ats/tiles/4/13_0.png
Binary file added maps/ats/tiles/4/13_1.png
Binary file added maps/ats/tiles/4/13_10.png
Binary file added maps/ats/tiles/4/13_11.png
Binary file added maps/ats/tiles/4/13_12.png
Binary file added maps/ats/tiles/4/13_13.png
Binary file added maps/ats/tiles/4/13_14.png
Binary file added maps/ats/tiles/4/13_15.png
Binary file added maps/ats/tiles/4/13_16.png
Binary file added maps/ats/tiles/4/13_2.png
Binary file added maps/ats/tiles/4/13_3.png
Binary file added maps/ats/tiles/4/13_4.png
Binary file added maps/ats/tiles/4/13_5.png
Binary file added maps/ats/tiles/4/13_6.png
Binary file added maps/ats/tiles/4/13_7.png
Binary file added maps/ats/tiles/4/13_8.png
Binary file added maps/ats/tiles/4/13_9.png
Binary file added maps/ats/tiles/4/14_0.png
Binary file added maps/ats/tiles/4/14_1.png
Binary file added maps/ats/tiles/4/14_10.png
Binary file added maps/ats/tiles/4/14_11.png
Binary file added maps/ats/tiles/4/14_12.png
Binary file added maps/ats/tiles/4/14_13.png
Binary file added maps/ats/tiles/4/14_14.png
Binary file added maps/ats/tiles/4/14_15.png

0 comments on commit 566e6f1

Please sign in to comment.