editor_game
This commit is contained in:
parent
16930841ce
commit
11fe36a44e
@ -43,24 +43,11 @@ editor.info
|
|||||||
editor.prototype.init = function (callback) {
|
editor.prototype.init = function (callback) {
|
||||||
|
|
||||||
editor_util_wrapper(editor);
|
editor_util_wrapper(editor);
|
||||||
|
editor_game_wrapper(editor, main, core);
|
||||||
editor_table_wrapper(editor);
|
editor_table_wrapper(editor);
|
||||||
|
|
||||||
var afterMainInit = function () {
|
var afterMainInit = function () {
|
||||||
core.floors = JSON.parse(JSON.stringify(core.floors, function (k, v) {
|
editor.game.fixFunctionInGameData();
|
||||||
if (v instanceof Function) {
|
|
||||||
return v.toString()
|
|
||||||
} else return v
|
|
||||||
}));
|
|
||||||
core.data = JSON.parse(JSON.stringify(core.data, function (k, v) {
|
|
||||||
if (v instanceof Function) {
|
|
||||||
return v.toString()
|
|
||||||
} else return v
|
|
||||||
}));
|
|
||||||
data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d = JSON.parse(JSON.stringify(data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d, function (k, v) {
|
|
||||||
if (v instanceof Function) {
|
|
||||||
return v.toString()
|
|
||||||
} else return v
|
|
||||||
}));
|
|
||||||
editor.main = main;
|
editor.main = main;
|
||||||
editor.core = core;
|
editor.core = core;
|
||||||
editor.fs = fs;
|
editor.fs = fs;
|
||||||
@ -78,10 +65,10 @@ editor.prototype.init = function (callback) {
|
|||||||
|
|
||||||
var afterCoreReset = function () {
|
var afterCoreReset = function () {
|
||||||
|
|
||||||
editor.idsInit(core.maps, core.icons.icons); // 初始化图片素材信息
|
editor.game.idsInit(core.maps, core.icons.icons); // 初始化图片素材信息
|
||||||
editor.drawInitData(core.icons.icons); // 初始化绘图
|
editor.drawInitData(core.icons.icons); // 初始化绘图
|
||||||
|
|
||||||
editor.fetchMapFromCore();
|
editor.game.fetchMapFromCore();
|
||||||
editor.updateMap();
|
editor.updateMap();
|
||||||
editor.buildMark();
|
editor.buildMark();
|
||||||
editor.drawEventBlock();
|
editor.drawEventBlock();
|
||||||
@ -105,69 +92,6 @@ editor.prototype.init = function (callback) {
|
|||||||
afterMainInit();
|
afterMainInit();
|
||||||
}
|
}
|
||||||
|
|
||||||
editor.prototype.idsInit = function (maps, icons) {
|
|
||||||
editor.ids = [0];
|
|
||||||
editor.indexs = [];
|
|
||||||
var MAX_NUM = 0;
|
|
||||||
var keys=Object.keys(maps_90f36752_8815_4be8_b32b_d7fad1d0542e);
|
|
||||||
for(var ii=0;ii<keys.length;ii++){
|
|
||||||
var v=~~keys[ii];
|
|
||||||
if(v>MAX_NUM && v<core.icons.tilesetStartOffset)MAX_NUM=v;
|
|
||||||
}
|
|
||||||
editor.MAX_NUM=MAX_NUM;
|
|
||||||
var getInfoById = function (id) {
|
|
||||||
var block = maps.initBlock(0, 0, id);
|
|
||||||
if (hasOwnProp(block, 'event')) {
|
|
||||||
return block;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
var point = 0;
|
|
||||||
for (var i = 0; i <= MAX_NUM; i++) {
|
|
||||||
var indexBlock = getInfoById(i);
|
|
||||||
editor.indexs[i] = [];
|
|
||||||
if (indexBlock) {
|
|
||||||
var id = indexBlock.event.id;
|
|
||||||
var indexId = indexBlock.id;
|
|
||||||
var allCls = Object.keys(icons);
|
|
||||||
if(i==17){
|
|
||||||
editor.ids.push({'idnum': 17, 'id': id, 'images': 'terrains'});
|
|
||||||
point++;
|
|
||||||
editor.indexs[i].push(point);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
for (var j = 0; j < allCls.length; j++) {
|
|
||||||
if (id in icons[allCls[j]]) {
|
|
||||||
editor.ids.push({'idnum': indexId, 'id': id, 'images': allCls[j], 'y': icons[allCls[j]][id]});
|
|
||||||
point++;
|
|
||||||
editor.indexs[i].push(point);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
editor.indexs[0] = [0];
|
|
||||||
|
|
||||||
var startOffset = core.icons.tilesetStartOffset;
|
|
||||||
for (var i in core.tilesets) {
|
|
||||||
var imgName = core.tilesets[i];
|
|
||||||
var img = core.material.images.tilesets[imgName];
|
|
||||||
var width = Math.floor(img.width/32), height = Math.floor(img.height/32);
|
|
||||||
if(img.width%32 || img.height%32){
|
|
||||||
alert(imgName+'的长或宽不是32的整数倍, 请修改后刷新页面');
|
|
||||||
}
|
|
||||||
if(img.width*img.height > 32*32*3000){
|
|
||||||
alert(imgName+'上的图块数量超过了3000,请修改后刷新页面');
|
|
||||||
}
|
|
||||||
for (var id=startOffset; id<startOffset+width*height;id++) {
|
|
||||||
var x = (id-startOffset)%width, y = parseInt((id-startOffset)/width);
|
|
||||||
var indexBlock = getInfoById(id);
|
|
||||||
editor.ids.push({'idnum': id, 'id': indexBlock.event.id, 'images': imgName, "x": x, "y": y, isTile: true});
|
|
||||||
point++;
|
|
||||||
editor.indexs[id]=[point];
|
|
||||||
}
|
|
||||||
startOffset += core.icons.tilesetStartOffset;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.prototype.mapInit = function () {
|
editor.prototype.mapInit = function () {
|
||||||
var ec = document.getElementById('event').getContext('2d');
|
var ec = document.getElementById('event').getContext('2d');
|
||||||
ec.clearRect(0, 0, core.bigmap.width*32, core.bigmap.height*32);
|
ec.clearRect(0, 0, core.bigmap.width*32, core.bigmap.height*32);
|
||||||
@ -195,39 +119,6 @@ editor.prototype.mapInit = function () {
|
|||||||
editor.currentFloorData.cannotMove = {};
|
editor.currentFloorData.cannotMove = {};
|
||||||
}
|
}
|
||||||
|
|
||||||
editor.prototype.fetchMapFromCore = function(){
|
|
||||||
var mapArray = core.maps.saveMap(core.status.floorId);
|
|
||||||
editor.map = mapArray.map(function (v) {
|
|
||||||
return v.map(function (v) {
|
|
||||||
var x = parseInt(v), y = editor.indexs[x];
|
|
||||||
if (y == null) {
|
|
||||||
printe("素材数字"+x+"未定义。是不是忘了注册,或者接档时没有覆盖icons.js和maps.js?");
|
|
||||||
y = [0];
|
|
||||||
}
|
|
||||||
return editor.ids[y[0]]
|
|
||||||
})
|
|
||||||
});
|
|
||||||
editor.currentFloorId = core.status.floorId;
|
|
||||||
editor.currentFloorData = core.floors[core.status.floorId];
|
|
||||||
for(var ii=0,name;name=['bgmap','fgmap'][ii];ii++){
|
|
||||||
var mapArray = editor.currentFloorData[name];
|
|
||||||
if(!mapArray || JSON.stringify(mapArray)==JSON.stringify([])){//未设置或空数组
|
|
||||||
//与editor.map同形的全0
|
|
||||||
mapArray=eval('['+Array(editor.map.length+1).join('['+Array(editor.map[0].length+1).join('0,')+'],')+']');
|
|
||||||
}
|
|
||||||
editor[name]=mapArray.map(function (v) {
|
|
||||||
return v.map(function (v) {
|
|
||||||
var x = parseInt(v), y = editor.indexs[x];
|
|
||||||
if (y == null) {
|
|
||||||
printe("素材数字"+x+"未定义。是不是忘了注册,或者接档时没有覆盖icons.js和maps.js?");
|
|
||||||
y = [0];
|
|
||||||
}
|
|
||||||
return editor.ids[y[0]]
|
|
||||||
})
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
editor.prototype.changeFloor = function (floorId, callback) {
|
editor.prototype.changeFloor = function (floorId, callback) {
|
||||||
for(var ii=0,name;name=['map','bgmap','fgmap'][ii];ii++){
|
for(var ii=0,name;name=['map','bgmap','fgmap'][ii];ii++){
|
||||||
var mapArray=editor[name].map(function (v) {
|
var mapArray=editor[name].map(function (v) {
|
||||||
@ -243,7 +134,7 @@ editor.prototype.changeFloor = function (floorId, callback) {
|
|||||||
core.bigmap.offsetY=0;
|
core.bigmap.offsetY=0;
|
||||||
editor.moveViewport(0,0);
|
editor.moveViewport(0,0);
|
||||||
|
|
||||||
editor.fetchMapFromCore();
|
editor.game.fetchMapFromCore();
|
||||||
editor.updateMap();
|
editor.updateMap();
|
||||||
editor_mode.floor();
|
editor_mode.floor();
|
||||||
editor.drawEventBlock();
|
editor.drawEventBlock();
|
||||||
|
|||||||
124
_server/editor_game.js
Normal file
124
_server/editor_game.js
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
editor_game_wrapper = function (editor, main, core) {
|
||||||
|
|
||||||
|
editor_game = function () {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
editor_game.prototype.fixFunctionInGameData = function () {
|
||||||
|
core.floors = JSON.parse(JSON.stringify(core.floors, function (_k, v) {
|
||||||
|
if (v instanceof Function) {
|
||||||
|
return v.toString()
|
||||||
|
} else return v
|
||||||
|
}));
|
||||||
|
core.data = JSON.parse(JSON.stringify(core.data, function (_k, v) {
|
||||||
|
if (v instanceof Function) {
|
||||||
|
return v.toString()
|
||||||
|
} else return v
|
||||||
|
}));
|
||||||
|
data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d = JSON.parse(JSON.stringify(data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d, function (_k, v) {
|
||||||
|
if (v instanceof Function) {
|
||||||
|
return v.toString()
|
||||||
|
} else return v
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
editor_game.prototype.idsInit = function (maps, icons) {
|
||||||
|
editor.ids = [0];
|
||||||
|
editor.indexs = [];
|
||||||
|
var MAX_NUM = 0;
|
||||||
|
var keys=Object.keys(maps_90f36752_8815_4be8_b32b_d7fad1d0542e);
|
||||||
|
for(var ii=0;ii<keys.length;ii++){
|
||||||
|
var v=~~keys[ii];
|
||||||
|
if(v>MAX_NUM && v<core.icons.tilesetStartOffset)MAX_NUM=v;
|
||||||
|
}
|
||||||
|
editor.MAX_NUM=MAX_NUM;
|
||||||
|
var getInfoById = function (id) {
|
||||||
|
var block = maps.initBlock(0, 0, id);
|
||||||
|
if (hasOwnProp(block, 'event')) {
|
||||||
|
return block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var point = 0;
|
||||||
|
for (var i = 0; i <= MAX_NUM; i++) {
|
||||||
|
var indexBlock = getInfoById(i);
|
||||||
|
editor.indexs[i] = [];
|
||||||
|
if (indexBlock) {
|
||||||
|
var id = indexBlock.event.id;
|
||||||
|
var indexId = indexBlock.id;
|
||||||
|
var allCls = Object.keys(icons);
|
||||||
|
if(i==17){
|
||||||
|
editor.ids.push({'idnum': 17, 'id': id, 'images': 'terrains'});
|
||||||
|
point++;
|
||||||
|
editor.indexs[i].push(point);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
for (var j = 0; j < allCls.length; j++) {
|
||||||
|
if (id in icons[allCls[j]]) {
|
||||||
|
editor.ids.push({'idnum': indexId, 'id': id, 'images': allCls[j], 'y': icons[allCls[j]][id]});
|
||||||
|
point++;
|
||||||
|
editor.indexs[i].push(point);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
editor.indexs[0] = [0];
|
||||||
|
|
||||||
|
var startOffset = core.icons.tilesetStartOffset;
|
||||||
|
for (var i in core.tilesets) {
|
||||||
|
var imgName = core.tilesets[i];
|
||||||
|
var img = core.material.images.tilesets[imgName];
|
||||||
|
var width = Math.floor(img.width/32), height = Math.floor(img.height/32);
|
||||||
|
if(img.width%32 || img.height%32){
|
||||||
|
alert(imgName+'的长或宽不是32的整数倍, 请修改后刷新页面');
|
||||||
|
}
|
||||||
|
if(img.width*img.height > 32*32*3000){
|
||||||
|
alert(imgName+'上的图块数量超过了3000,请修改后刷新页面');
|
||||||
|
}
|
||||||
|
for (var id=startOffset; id<startOffset+width*height;id++) {
|
||||||
|
var x = (id-startOffset)%width, y = parseInt((id-startOffset)/width);
|
||||||
|
var indexBlock = getInfoById(id);
|
||||||
|
editor.ids.push({'idnum': id, 'id': indexBlock.event.id, 'images': imgName, "x": x, "y": y, isTile: true});
|
||||||
|
point++;
|
||||||
|
editor.indexs[id]=[point];
|
||||||
|
}
|
||||||
|
startOffset += core.icons.tilesetStartOffset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
editor_game.prototype.fetchMapFromCore = function(){
|
||||||
|
var mapArray = core.maps.saveMap(core.status.floorId);
|
||||||
|
editor.map = mapArray.map(function (v) {
|
||||||
|
return v.map(function (v) {
|
||||||
|
var x = parseInt(v), y = editor.indexs[x];
|
||||||
|
if (y == null) {
|
||||||
|
printe("素材数字"+x+"未定义。是不是忘了注册,或者接档时没有覆盖icons.js和maps.js?");
|
||||||
|
y = [0];
|
||||||
|
}
|
||||||
|
return editor.ids[y[0]]
|
||||||
|
})
|
||||||
|
});
|
||||||
|
editor.currentFloorId = core.status.floorId;
|
||||||
|
editor.currentFloorData = core.floors[core.status.floorId];
|
||||||
|
for(var ii=0,name;name=['bgmap','fgmap'][ii];ii++){
|
||||||
|
var mapArray = editor.currentFloorData[name];
|
||||||
|
if(!mapArray || JSON.stringify(mapArray)==JSON.stringify([])){//未设置或空数组
|
||||||
|
//与editor.map同形的全0
|
||||||
|
mapArray=eval('['+Array(editor.map.length+1).join('['+Array(editor.map[0].length+1).join('0,')+'],')+']');
|
||||||
|
}
|
||||||
|
editor[name]=mapArray.map(function (v) {
|
||||||
|
return v.map(function (v) {
|
||||||
|
var x = parseInt(v), y = editor.indexs[x];
|
||||||
|
if (y == null) {
|
||||||
|
printe("素材数字"+x+"未定义。是不是忘了注册,或者接档时没有覆盖icons.js和maps.js?");
|
||||||
|
y = [0];
|
||||||
|
}
|
||||||
|
return editor.ids[y[0]]
|
||||||
|
})
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
editor.constructor.prototype.game = new editor_game();
|
||||||
|
}
|
||||||
|
//editor_game_wrapper(editor);
|
||||||
@ -527,6 +527,7 @@ if (location.protocol.indexOf("http")!=0) {
|
|||||||
<script src='_server/fs.js'></script>
|
<script src='_server/fs.js'></script>
|
||||||
<script src='_server/editor_util.js'></script>
|
<script src='_server/editor_util.js'></script>
|
||||||
<script src='_server/editor_file.js'></script>
|
<script src='_server/editor_file.js'></script>
|
||||||
|
<script src='_server/editor_game.js'></script>
|
||||||
<script src='_server/editor_table.js'></script>
|
<script src='_server/editor_table.js'></script>
|
||||||
<script src='_server/editor_mode.js'></script>
|
<script src='_server/editor_mode.js'></script>
|
||||||
<script src='_server/vm.js'></script>
|
<script src='_server/vm.js'></script>
|
||||||
|
|||||||
@ -510,6 +510,7 @@ if (location.protocol.indexOf("http")!=0) {
|
|||||||
<script src='_server/fs.js'></script>
|
<script src='_server/fs.js'></script>
|
||||||
<script src='_server/editor_util.js'></script>
|
<script src='_server/editor_util.js'></script>
|
||||||
<script src='_server/editor_file.js'></script>
|
<script src='_server/editor_file.js'></script>
|
||||||
|
<script src='_server/editor_game.js'></script>
|
||||||
<script src='_server/editor_table.js'></script>
|
<script src='_server/editor_table.js'></script>
|
||||||
<script src='_server/editor_mode.js'></script>
|
<script src='_server/editor_mode.js'></script>
|
||||||
<script src='_server/vm.js'></script>
|
<script src='_server/vm.js'></script>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user