2022-11-17 15:39:32 +00:00
const i18n = require ( 'LanguageData' ) ;
i18n . init ( window . language ) ; // languageID should be equal to the one we input in New Language ID input field
const OnlineMap = require ( './Map' ) ;
cc . Class ( {
extends : OnlineMap ,
onDestroy ( ) {
console . warn ( "+++++++ Map onDestroy()" ) ;
} ,
onLoad ( ) {
const self = this ;
window . mapIns = self ;
2022-12-26 07:11:35 +00:00
self . showCriticalCoordinateLabels = false ;
2022-11-17 15:39:32 +00:00
2022-11-19 12:58:07 +00:00
const mapNode = self . node ;
const canvasNode = mapNode . parent ;
self . mainCameraNode = self . canvasNode . getChildByName ( "Main Camera" ) ;
2022-11-17 15:39:32 +00:00
self . mainCamera = self . mainCameraNode . getComponent ( cc . Camera ) ;
for ( let child of self . mainCameraNode . children ) {
child . setScale ( 1 / self . mainCamera . zoomRatio ) ;
}
self . widgetsAboveAllNode = self . mainCameraNode . getChildByName ( "WidgetsAboveAll" ) ;
self . mainCameraNode . setPosition ( cc . v2 ( ) ) ;
/** Init required prefab ended. */
2022-11-19 12:58:07 +00:00
self . inputDelayFrames = 8 ;
self . inputScaleFrames = 2 ;
self . inputFrameUpsyncDelayTolerance = 2 ;
2022-12-26 07:11:35 +00:00
self . collisionMinStep = 8 ;
2022-11-17 15:39:32 +00:00
2022-12-01 03:35:56 +00:00
self . renderCacheSize = 1024 ;
2022-12-09 09:22:04 +00:00
self . serverFps = 60 ;
2022-11-19 12:58:07 +00:00
self . rollbackEstimatedDt = 0.016667 ;
self . rollbackEstimatedDtMillis = 16.667 ;
self . rollbackEstimatedDtNanos = 16666666 ;
2022-12-12 11:11:59 +00:00
self . tooFastDtIntervalMillis = 0.5 * self . rollbackEstimatedDtMillis ;
2022-11-17 15:39:32 +00:00
2022-11-19 12:58:07 +00:00
self . worldToVirtualGridRatio = 1000 ;
self . virtualGridToWorldRatio = 1.0 / self . worldToVirtualGridRatio ;
2022-11-24 11:45:48 +00:00
self . meleeSkillConfig = {
1 : {
// for offender
2022-11-27 11:38:26 +00:00
startupFrames : 10 ,
2022-12-17 09:33:14 +00:00
activeFrames : 20 ,
2022-11-27 11:38:26 +00:00
recoveryFrames : 34 , // usually but not always "startupFrames+activeFrames", I hereby set it to be 1 frame more than the actual animation to avoid critical transition, i.e. when the animation is 1 frame from ending but "rdfPlayer.framesToRecover" is already counted 0 and the player triggers an other same attack, making an effective bullet trigger but no animation is played due to same animName is still playing
recoveryFramesOnBlock : 34 ,
recoveryFramesOnHit : 34 ,
2022-11-24 11:45:48 +00:00
hitboxOffset : 12.0 , // should be about the radius of the PlayerCollider
// for defender
hitStunFrames : 18 ,
blockStunFrames : 9 ,
2022-11-27 11:38:26 +00:00
pushback : 8.0 ,
2022-11-24 11:45:48 +00:00
releaseTriggerType : 1 , // 1: rising-edge, 2: falling-edge
2022-12-26 07:11:35 +00:00
damage : 5 ,
hitboxSizeX : 24.0 ,
hitboxSizeY : 32.0 ,
selfMoveforwardX : 0 ,
selfMoveforwardY : 0 ,
2022-11-24 11:45:48 +00:00
}
} ;
2022-11-17 15:39:32 +00:00
2022-12-11 09:26:55 +00:00
/ *
[ WARNING ] As when a character is standing on a barrier , if not carefully curated there MIGHT BE a bouncing sequence of "[(inAir -> dropIntoBarrier ->), (notInAir -> pushedOutOfBarrier ->)], [(inAir -> ..."
2022-12-12 15:17:54 +00:00
Moreover , "snapIntoPlatformOverlap" should be small enough such that the walking "velX" or jumping initial "velY" can escape from it by 1 renderFrame ( when jumping is triggered , the character is waived from snappig for 1 renderFrame ) .
2022-12-11 09:26:55 +00:00
* /
2022-12-15 02:03:48 +00:00
self . snapIntoPlatformOverlap = 0.1 ;
2022-12-11 09:26:55 +00:00
self . snapIntoPlatformThreshold = 0.5 ; // a platform must be "horizontal enough" for a character to "stand on"
2022-12-15 02:03:48 +00:00
self . jumpingInitVelY = 7 * self . worldToVirtualGridRatio ; // unit: (virtual grid length/renderFrame)
2022-12-26 07:11:35 +00:00
[ self . gravityX , self . gravityY ] = [ 0 , - 0.5 * self . worldToVirtualGridRatio ] ; // unit: (virtual grid length/renderFrame^2)
2022-12-11 09:26:55 +00:00
2022-11-17 15:39:32 +00:00
const tiledMapIns = self . node . getComponent ( cc . TiledMap ) ;
2022-11-19 12:58:07 +00:00
const fullPathOfTmxFile = cc . js . formatStr ( "map/%s/map" , "dungeon" ) ;
2022-11-17 15:39:32 +00:00
cc . loader . loadRes ( fullPathOfTmxFile , cc . TiledMapAsset , ( err , tmxAsset ) => {
if ( null != err ) {
console . error ( err ) ;
return ;
}
tiledMapIns . tmxAsset = null ;
mapNode . removeAllChildren ( ) ;
2022-12-11 04:20:42 +00:00
if ( self . showCriticalCoordinateLabels ) {
const drawer = new cc . Node ( ) ;
drawer . setPosition ( cc . v2 ( 0 , 0 ) )
safelyAddChild ( self . node , drawer ) ;
setLocalZOrder ( drawer , 999 ) ;
const g = drawer . addComponent ( cc . Graphics ) ;
g . lineWidth = 2 ;
self . g = g ;
}
2022-11-17 15:39:32 +00:00
tiledMapIns . tmxAsset = tmxAsset ;
const newMapSize = tiledMapIns . getMapSize ( ) ;
const newTileSize = tiledMapIns . getTileSize ( ) ;
self . node . setContentSize ( newMapSize . width * newTileSize . width , newMapSize . height * newTileSize . height ) ;
self . node . setPosition ( cc . v2 ( 0 , 0 ) ) ;
2022-12-26 07:11:35 +00:00
self . stageDiscreteW = newMapSize . width ;
self . stageDiscreteH = newMapSize . height ;
self . stageTileW = newTileSize . width ;
self . stageTileH = newTileSize . height ;
self . _resetCurrentMatch ( ) ;
2022-11-17 15:39:32 +00:00
let barrierIdCounter = 0 ;
const boundaryObjs = tileCollisionManager . extractBoundaryObjects ( self . node ) ;
for ( let boundaryObj of boundaryObjs . barriers ) {
2022-12-26 07:11:35 +00:00
const gopkgsBoundaryAnchor = gopkgs . NewVec2DJs ( boundaryObj . anchor . x , boundaryObj . anchor . y ) ;
const gopkgsBoundaryPts = Array . from ( boundaryObj , p => {
return gopkgs . NewVec2DJs ( p . x , p . y ) ;
} ) ;
const gopkgsBoundary = gopkgs . NewPolygon2DJs ( gopkgsBoundaryAnchor , gopkgsBoundaryPts ) ;
const gopkgsBarrier = gopkgs . NewBarrierJs ( gopkgsBoundary ) ;
2022-11-17 15:39:32 +00:00
2022-12-26 07:11:35 +00:00
const newBarrierCollider = gopkgs . GenerateConvexPolygonColliderJs ( gopkgsBoundary , self . spaceOffsetX , self . spaceOffsetY , gopkgsBarrier , "Barrier" ) ;
self . gopkgsCollisionSys . Add ( newBarrierCollider ) ;
2022-11-17 15:39:32 +00:00
2022-12-11 09:26:55 +00:00
if ( false && self . showCriticalCoordinateLabels ) {
2022-11-17 15:39:32 +00:00
for ( let i = 0 ; i < boundaryObj . length ; ++ i ) {
const barrierVertLabelNode = new cc . Node ( ) ;
switch ( i % 4 ) {
case 0 :
barrierVertLabelNode . color = cc . Color . RED ;
break ;
case 1 :
barrierVertLabelNode . color = cc . Color . GRAY ;
break ;
case 2 :
barrierVertLabelNode . color = cc . Color . BLACK ;
break ;
default :
barrierVertLabelNode . color = cc . Color . MAGENTA ;
break ;
}
const wx = boundaryObj . anchor . x + boundaryObj [ i ] . x ,
wy = boundaryObj . anchor . y + boundaryObj [ i ] . y ;
barrierVertLabelNode . setPosition ( cc . v2 ( wx , wy ) ) ;
const barrierVertLabel = barrierVertLabelNode . addComponent ( cc . Label ) ;
barrierVertLabel . fontSize = 12 ;
barrierVertLabel . lineHeight = barrierVertLabel . fontSize + 1 ;
barrierVertLabel . string = ` ( ${ wx . toFixed ( 1 ) } , ${ wy . toFixed ( 1 ) } ) ` ;
safelyAddChild ( self . node , barrierVertLabelNode ) ;
setLocalZOrder ( barrierVertLabelNode , 5 ) ;
barrierVertLabelNode . active = true ;
}
}
2022-12-26 07:11:35 +00:00
// console.log("Created barrier: ", newBarrierCollider);
2022-11-17 15:39:32 +00:00
++ barrierIdCounter ;
const collisionBarrierIndex = ( self . collisionBarrierIndexPrefix + barrierIdCounter ) ;
2022-12-26 07:11:35 +00:00
self . gopkgsCollisionSysMap [ collisionBarrierIndex ] = newBarrierCollider ;
2022-11-17 15:39:32 +00:00
}
2022-11-19 12:58:07 +00:00
2022-11-25 05:24:03 +00:00
const startRdf = window . pb . protos . RoomDownsyncFrame . create ( {
2022-11-19 12:58:07 +00:00
id : window . MAGIC _ROOM _DOWNSYNC _FRAME _ID . BATTLE _START ,
2022-12-26 07:11:35 +00:00
playersArr : [
window . pb . protos . PlayerDownsync . create ( {
2022-11-19 12:58:07 +00:00
id : 10 ,
2022-11-20 13:07:45 +00:00
joinIndex : 1 ,
2022-12-26 07:11:35 +00:00
virtualGridX : boundaryObjs . playerStartingPositions [ 0 ] . x * self . worldToVirtualGridRatio ,
virtualGridY : boundaryObjs . playerStartingPositions [ 0 ] . y * self . worldToVirtualGridRatio ,
2022-11-25 00:21:03 +00:00
speed : 1 * self . worldToVirtualGridRatio ,
2022-11-22 08:19:04 +00:00
colliderRadius : 12 ,
2022-12-09 09:22:04 +00:00
characterState : window . ATK _CHARACTER _STATE . InAirIdle1 [ 0 ] ,
2022-11-23 07:04:32 +00:00
framesToRecover : 0 ,
2022-11-23 14:11:28 +00:00
dirX : 0 ,
dirY : 0 ,
2022-12-09 09:22:04 +00:00
velX : 0 ,
velY : 0 ,
inAir : true ,
} ) ,
2022-12-26 07:11:35 +00:00
window . pb . protos . PlayerDownsync . create ( {
2022-11-22 08:19:04 +00:00
id : 11 ,
joinIndex : 2 ,
2022-12-26 07:11:35 +00:00
virtualGridX : boundaryObjs . playerStartingPositions [ 1 ] . x * self . worldToVirtualGridRatio ,
virtualGridY : boundaryObjs . playerStartingPositions [ 1 ] . y * self . worldToVirtualGridRatio ,
2022-11-25 00:21:03 +00:00
speed : 1 * self . worldToVirtualGridRatio ,
2022-11-19 12:58:07 +00:00
colliderRadius : 12 ,
2022-12-09 09:22:04 +00:00
characterState : window . ATK _CHARACTER _STATE . InAirIdle1 [ 0 ] ,
2022-11-23 07:04:32 +00:00
framesToRecover : 0 ,
2022-11-23 14:11:28 +00:00
dirX : 0 ,
dirY : 0 ,
2022-12-09 09:22:04 +00:00
velX : 0 ,
velY : 0 ,
inAir : true ,
} ) ,
2022-12-26 07:11:35 +00:00
]
2022-11-25 05:24:03 +00:00
} ) ;
2022-12-26 07:11:35 +00:00
2022-11-19 12:58:07 +00:00
self . selfPlayerInfo = {
2022-12-26 07:11:35 +00:00
Id : 11 ,
JoinIndex : 2 ,
// For compatibility
id : 11 ,
joinIndex : 2 ,
2022-11-19 12:58:07 +00:00
} ;
self . onRoomDownsyncFrame ( startRdf ) ;
self . battleState = ALL _BATTLE _STATES . IN _BATTLE ;
2022-11-17 15:39:32 +00:00
} ) ;
} ,
update ( dt ) {
const self = this ;
if ( ALL _BATTLE _STATES . IN _BATTLE == self . battleState ) {
const elapsedMillisSinceLastFrameIdTriggered = performance . now ( ) - self . lastRenderFrameIdTriggeredAt ;
2022-12-12 11:11:59 +00:00
if ( elapsedMillisSinceLastFrameIdTriggered < self . tooFastDtIntervalMillis ) {
// [WARNING] We should avoid a frontend ticking too fast to prevent cheating, as well as ticking too slow to cause a "resync avalanche" that impacts user experience!
2022-11-17 15:39:32 +00:00
// console.debug("Avoiding too fast frame@renderFrameId=", self.renderFrameId, ": elapsedMillisSinceLastFrameIdTriggered=", elapsedMillisSinceLastFrameIdTriggered);
return ;
}
try {
let st = performance . now ( ) ;
let prevSelfInput = null ,
currSelfInput = null ;
const noDelayInputFrameId = self . _convertToInputFrameId ( self . renderFrameId , 0 ) ; // It's important that "inputDelayFrames == 0" here
if ( self . shouldGenerateInputFrameUpsync ( self . renderFrameId ) ) {
2022-12-24 11:06:31 +00:00
const prevAndCurrInputs = self . getOrPrefabInputFrameUpsync ( noDelayInputFrameId ) ;
2022-11-17 15:39:32 +00:00
prevSelfInput = prevAndCurrInputs [ 0 ] ;
currSelfInput = prevAndCurrInputs [ 1 ] ;
}
2022-12-26 07:11:35 +00:00
const [ prevRdf , rdf ] = self . rollbackAndChase ( self . renderFrameId , self . renderFrameId + 1 , self . gopkgsCollisionSys , self . gopkgsCollisionSysMap , false ) ;
2022-11-25 03:20:05 +00:00
self . applyRoomDownsyncFrameDynamics ( rdf , prevRdf ) ;
2022-12-12 15:17:54 +00:00
self . showDebugBoundaries ( rdf ) ;
2022-12-12 11:11:59 +00:00
++ self . renderFrameId ;
self . lastRenderFrameIdTriggeredAt = performance . now ( ) ;
2022-11-17 15:39:32 +00:00
let t3 = performance . now ( ) ;
} catch ( err ) {
console . error ( "Error during Map.update" , err ) ;
2022-12-11 04:20:42 +00:00
}
}
} ,
2022-12-26 07:11:35 +00:00
2022-11-17 15:39:32 +00:00
} ) ;