mirror of
https://github.com/genxium/DelayNoMore
synced 2024-12-26 03:39:00 +00:00
Updated OfflineMap position loading.
This commit is contained in:
parent
bef1df48aa
commit
7985a242fd
@ -440,7 +440,7 @@
|
|||||||
"array": [
|
"array": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
216.50635094610968,
|
209.73151519075364,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
@ -172,8 +172,8 @@
|
|||||||
},
|
},
|
||||||
"_contentSize": {
|
"_contentSize": {
|
||||||
"__type__": "cc.Size",
|
"__type__": "cc.Size",
|
||||||
"width": 3200,
|
"width": 2048,
|
||||||
"height": 3200
|
"height": 2048
|
||||||
},
|
},
|
||||||
"_anchorPoint": {
|
"_anchorPoint": {
|
||||||
"__type__": "cc.Vec2",
|
"__type__": "cc.Vec2",
|
||||||
@ -191,8 +191,8 @@
|
|||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
1,
|
1,
|
||||||
2,
|
1.5,
|
||||||
2,
|
1.5,
|
||||||
1
|
1
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -454,7 +454,7 @@
|
|||||||
"array": [
|
"array": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
217.71545143883017,
|
209.73151519075364,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
@ -76,8 +76,8 @@ cc.Class({
|
|||||||
*/
|
*/
|
||||||
self.snapIntoPlatformOverlap = 0.1;
|
self.snapIntoPlatformOverlap = 0.1;
|
||||||
self.snapIntoPlatformThreshold = 0.5; // a platform must be "horizontal enough" for a character to "stand on"
|
self.snapIntoPlatformThreshold = 0.5; // a platform must be "horizontal enough" for a character to "stand on"
|
||||||
self.jumpingInitVelY = 5 * self.worldToVirtualGridRatio; // unit: (virtual grid length/renderFrame)
|
self.jumpingInitVelY = 6 * self.worldToVirtualGridRatio; // unit: (virtual grid length/renderFrame)
|
||||||
[self.gravityX, self.gravityY] = [0, -Math.ceil(4*self.jumpingInitVelY/self.serverFps)]; // unit: (virtual grid length/renderFrame^2)
|
[self.gravityX, self.gravityY] = [0, -Math.ceil(4 * self.jumpingInitVelY / self.serverFps)]; // unit: (virtual grid length/renderFrame^2)
|
||||||
|
|
||||||
const tiledMapIns = self.node.getComponent(cc.TiledMap);
|
const tiledMapIns = self.node.getComponent(cc.TiledMap);
|
||||||
|
|
||||||
@ -162,8 +162,8 @@ cc.Class({
|
|||||||
10: window.pb.protos.PlayerDownsync.create({
|
10: window.pb.protos.PlayerDownsync.create({
|
||||||
id: 10,
|
id: 10,
|
||||||
joinIndex: 1,
|
joinIndex: 1,
|
||||||
virtualGridX: -50 * self.worldToVirtualGridRatio,
|
virtualGridX: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[0].x, boundaryObjs.playerStartingPositions[0].y)[0],
|
||||||
virtualGridY: -400 * self.worldToVirtualGridRatio,
|
virtualGridY: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[0].x, boundaryObjs.playerStartingPositions[0].y)[1],
|
||||||
speed: 1 * self.worldToVirtualGridRatio,
|
speed: 1 * self.worldToVirtualGridRatio,
|
||||||
colliderRadius: 12,
|
colliderRadius: 12,
|
||||||
characterState: window.ATK_CHARACTER_STATE.InAirIdle1[0],
|
characterState: window.ATK_CHARACTER_STATE.InAirIdle1[0],
|
||||||
@ -177,8 +177,8 @@ cc.Class({
|
|||||||
11: window.pb.protos.PlayerDownsync.create({
|
11: window.pb.protos.PlayerDownsync.create({
|
||||||
id: 11,
|
id: 11,
|
||||||
joinIndex: 2,
|
joinIndex: 2,
|
||||||
virtualGridX: 100 * self.worldToVirtualGridRatio,
|
virtualGridX: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[1].x, boundaryObjs.playerStartingPositions[1].y)[0],
|
||||||
virtualGridY: -350 * self.worldToVirtualGridRatio,
|
virtualGridY: self.worldToVirtualGridPos(boundaryObjs.playerStartingPositions[1].x, boundaryObjs.playerStartingPositions[1].y)[1],
|
||||||
speed: 1 * self.worldToVirtualGridRatio,
|
speed: 1 * self.worldToVirtualGridRatio,
|
||||||
colliderRadius: 12,
|
colliderRadius: 12,
|
||||||
characterState: window.ATK_CHARACTER_STATE.InAirIdle1[0],
|
characterState: window.ATK_CHARACTER_STATE.InAirIdle1[0],
|
||||||
@ -432,7 +432,9 @@ cc.Class({
|
|||||||
// console.log(`A rising-edge of meleeBullet is created at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`);
|
// console.log(`A rising-edge of meleeBullet is created at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`);
|
||||||
|
|
||||||
thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Atk1[0];
|
thatPlayerInNextFrame.characterState = window.ATK_CHARACTER_STATE.Atk1[0];
|
||||||
thatPlayerInNextFrame.velX = 0; // prohibits simultaneous movement with Atk1 (including inAir)
|
if (false == currPlayerDownsync.inAir) {
|
||||||
|
thatPlayerInNextFrame.velX = 0; // prohibits simultaneous movement with Atk1 on the ground
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else if (0 == decodedInput.btnALevel && 1 == prevBtnALevel) {
|
} else if (0 == decodedInput.btnALevel && 1 == prevBtnALevel) {
|
||||||
// console.log(`playerId=${playerId} triggered a falling-edge of btnA at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`);
|
// console.log(`playerId=${playerId} triggered a falling-edge of btnA at renderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.inputFrameId}`);
|
||||||
|
@ -108,6 +108,7 @@ TileCollisionManager.prototype.continuousMapNodePosToContinuousObjLayerOffset =
|
|||||||
window.battleEntityTypeNameToGlobalGid = {};
|
window.battleEntityTypeNameToGlobalGid = {};
|
||||||
TileCollisionManager.prototype.extractBoundaryObjects = function(withTiledMapNode) {
|
TileCollisionManager.prototype.extractBoundaryObjects = function(withTiledMapNode) {
|
||||||
let toRet = {
|
let toRet = {
|
||||||
|
playerStartingPositions: [],
|
||||||
barriers: [],
|
barriers: [],
|
||||||
};
|
};
|
||||||
const tiledMapIns = withTiledMapNode.getComponent(cc.TiledMap); // This is a magic name.
|
const tiledMapIns = withTiledMapNode.getComponent(cc.TiledMap); // This is a magic name.
|
||||||
@ -115,6 +116,18 @@ TileCollisionManager.prototype.extractBoundaryObjects = function(withTiledMapNod
|
|||||||
const allObjectGroups = tiledMapIns.getObjectGroups();
|
const allObjectGroups = tiledMapIns.getObjectGroups();
|
||||||
for (let i = 0; i < allObjectGroups.length; ++i) {
|
for (let i = 0; i < allObjectGroups.length; ++i) {
|
||||||
var objectGroup = allObjectGroups[i];
|
var objectGroup = allObjectGroups[i];
|
||||||
|
if ("PlayerStartingPos" == objectGroup.getGroupName()) {
|
||||||
|
var allObjects = objectGroup.getObjects();
|
||||||
|
for (let j = 0; j < allObjects.length; ++j) {
|
||||||
|
const cccMaskedX = allObjects[j].x,
|
||||||
|
cccMaskedY = allObjects[j].y;
|
||||||
|
const origX = cccMaskedX,
|
||||||
|
origY = withTiledMapNode.getContentSize().height - cccMaskedY; // FIXME: I don't know why CocosCreator did this, it's stupid and MIGHT NOT WORK IN ISOMETRIC orientation!
|
||||||
|
let wpos = this.continuousObjLayerOffsetToContinuousMapNodePos(withTiledMapNode, cc.v2(origX, origY));
|
||||||
|
toRet.playerStartingPositions.push(wpos);
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if ("barrier_and_shelter" != objectGroup.getProperty("type")) continue;
|
if ("barrier_and_shelter" != objectGroup.getProperty("type")) continue;
|
||||||
var allObjects = objectGroup.getObjects();
|
var allObjects = objectGroup.getObjects();
|
||||||
for (let j = 0; j < allObjects.length; ++j) {
|
for (let j = 0; j < allObjects.length; ++j) {
|
||||||
|
Loading…
Reference in New Issue
Block a user