Add: space invaders game
This commit is contained in:
@@ -22,6 +22,12 @@ const GAME_SCREEN_SIZE = { x: 1024, y: 768 }
|
|||||||
|
|
||||||
let sessionStorageManager = new SessionStorageManager();
|
let sessionStorageManager = new SessionStorageManager();
|
||||||
{
|
{
|
||||||
|
if(isDebugMode()) {
|
||||||
|
sessionStorageManager.playerName = "박지상";
|
||||||
|
sessionStorageManager.playerUserID = 1;
|
||||||
|
sessionStorageManager.playingAppName = "space_invaders";
|
||||||
|
}
|
||||||
|
|
||||||
console.log("playerName : " + sessionStorageManager.playerName);
|
console.log("playerName : " + sessionStorageManager.playerName);
|
||||||
console.log("playerUserID : " + sessionStorageManager.playerUserID);
|
console.log("playerUserID : " + sessionStorageManager.playerUserID);
|
||||||
console.log("playingAppName : " + sessionStorageManager.playingAppName);
|
console.log("playingAppName : " + sessionStorageManager.playingAppName);
|
||||||
|
|||||||
@@ -40,10 +40,16 @@ class AppInfoManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
getAppNameKorean(name) {
|
getAppNameKorean(name) {
|
||||||
|
if(name === null)
|
||||||
|
return "";
|
||||||
|
|
||||||
return this.appInfoMap[name].nameKorean;
|
return this.appInfoMap[name].nameKorean;
|
||||||
}
|
}
|
||||||
|
|
||||||
getHowToPlayText(name) {
|
getHowToPlayText(name) {
|
||||||
|
if(name === null)
|
||||||
|
return "";
|
||||||
|
|
||||||
return this.appInfoMap[name].howToPlay;
|
return this.appInfoMap[name].howToPlay;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,34 @@
|
|||||||
|
/////////////////////////////
|
||||||
|
// Space invaders game
|
||||||
|
|
||||||
|
class Game {
|
||||||
|
|
||||||
|
create() {
|
||||||
|
// this.historyRecordManager = new HistoryRecordManager();
|
||||||
|
|
||||||
|
this.game.stage.backgroundColor = '#4d4d4d';
|
||||||
|
// this.chartGraphics = game.add.graphics(100, game.world.height - 120);
|
||||||
|
|
||||||
|
|
||||||
|
// top
|
||||||
|
let backButton = new BackButton( () => {
|
||||||
|
location.href = '../../web/client/menu_app.html';
|
||||||
|
});
|
||||||
|
|
||||||
|
let fullscreenButton = new FullscreenButton(this.game);
|
||||||
|
|
||||||
|
|
||||||
|
// contents
|
||||||
|
|
||||||
|
|
||||||
|
// bottom
|
||||||
|
let screenBottom = new ScreenBottom(game);
|
||||||
|
screenBottom.makeBottomLine();
|
||||||
|
screenBottom.printBottomLeftText("게임 진행 정보");
|
||||||
|
let playingAppName = appInfoManager.getAppNameKorean(sessionStorageManager.playingAppName);
|
||||||
|
screenBottom.printBottomCenterText(playingAppName);
|
||||||
|
screenBottom.printBottomRightText(sessionStorageManager.playerName);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
/////////////////////////////
|
||||||
|
// Loading
|
||||||
|
|
||||||
|
// var x = 32;
|
||||||
|
// var y = 80;
|
||||||
|
|
||||||
|
class Loading {
|
||||||
|
|
||||||
|
preload() {
|
||||||
|
// this.game.load.image('loadingbar', './image/phaser.png');
|
||||||
|
}
|
||||||
|
|
||||||
|
create() {
|
||||||
|
// let userID = sessionStorage.getItem("UserID");
|
||||||
|
// console.log("userID : " + userID);
|
||||||
|
|
||||||
|
// this.game.stage.backgroundColor = '#4d4d4d';
|
||||||
|
|
||||||
|
// // Progress report
|
||||||
|
// this.textProgress = game.add.text(game.world.centerX, 100, '로딩중 . . .', textStyleBasic);
|
||||||
|
// this.textProgress.anchor.setTo(0.5, 0.4);
|
||||||
|
// this.textProgress.setShadow(3, 3, 'rgba(0, 0, 0, 0.5)', 2);
|
||||||
|
|
||||||
|
// // Preload bar
|
||||||
|
// this.preloadBar = this.add.sprite(game.world.centerX, game.world.centerY, 'loadingbar');
|
||||||
|
// this.preloadBar.anchor.setTo(0.5);
|
||||||
|
// this.preloadBar.alpha = 0;
|
||||||
|
|
||||||
|
this.game.load.onFileComplete.add(this.fileComplete, this);
|
||||||
|
this.game.load.onLoadComplete.add(this.loadComplete, this);
|
||||||
|
|
||||||
|
this.startLoading();
|
||||||
|
}
|
||||||
|
|
||||||
|
startLoading() {
|
||||||
|
this.game.load.image('icon_fullscreen', '../../../resources/image/icon/fullscreen_white.png');
|
||||||
|
// this.game.load.image('a', '../../../resources/image/icon/fullscreen_white.png');
|
||||||
|
// this.game.load.image('b', '../../../resources/image/icon/fullscreen_white.png');
|
||||||
|
// this.game.load.image('c', '../../../resources/image/icon/fullscreen_white.png');
|
||||||
|
// this.game.load.image('d', '../../../resources/image/icon/fullscreen_white.png');
|
||||||
|
// this.game.load.image('a', './image/phaser.png');
|
||||||
|
// this.game.load.image('b', './image/phaser.png');
|
||||||
|
// this.game.load.image('c', './image/phaser.png');
|
||||||
|
// this.game.load.image('d', './image/phaser.png');
|
||||||
|
// this.game.load.image('e', './image/phaser.png');
|
||||||
|
// this.game.load.image('g', './image/phaser.png');
|
||||||
|
// this.game.load.image('e', './image/phaser.png');
|
||||||
|
// this.game.load.image('f', './image/phaser.png');
|
||||||
|
// this.game.load.image('g', './image/phaser.png');
|
||||||
|
// this.game.load.image('h', './image/phaser.png');
|
||||||
|
|
||||||
|
// this.game.load.image('phaser', './image/phaser.png');
|
||||||
|
// this.game.load.spritesheet('button', './image/button_basic.png', 200, 100);
|
||||||
|
// this.game.load.image('star', './image/star_particle.png');
|
||||||
|
// this.game.load.image('medal_gold', './image/medal_gold.png');
|
||||||
|
// this.game.load.image('medal_silver', './image/medal_silver.png');
|
||||||
|
// this.game.load.image('medal_bronze', './image/medal_bronze.png');
|
||||||
|
|
||||||
|
this.game.load.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
fileComplete(progress, cacheKey, success, totalLoaded, totalFiles) {
|
||||||
|
// this.preloadBar.alpha = progress / 100;
|
||||||
|
|
||||||
|
// console.log('progress : ' + progress);
|
||||||
|
|
||||||
|
// text.setText("File Complete: " + progress + "% - " + totalLoaded + " out of " + totalFiles);
|
||||||
|
|
||||||
|
// var newImage = game.add.image(x, y, cacheKey);
|
||||||
|
// newImage.scale.set(0.3);
|
||||||
|
|
||||||
|
// x += newImage.width + 20;
|
||||||
|
// if (x > 700)
|
||||||
|
// {
|
||||||
|
// x = 32;
|
||||||
|
// y += 332;
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
loadComplete(progress, cacheKey, success, totalLoaded, totalFiles) {
|
||||||
|
// this.preloadBar.alpha = 1;
|
||||||
|
|
||||||
|
if(isDebugMode()) {
|
||||||
|
sessionStorage
|
||||||
|
this.state.start('Game');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.state.start('Game');
|
||||||
|
// this.startMenu();
|
||||||
|
// this.startTypingTestStage();
|
||||||
|
// this.startTypingTestResult();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -3,10 +3,13 @@
|
|||||||
|
|
||||||
const CONTENT_ID = "Space Invaders";
|
const CONTENT_ID = "Space Invaders";
|
||||||
|
|
||||||
var game = new Phaser.Game(960, 540, Phaser.CANVAS, CONTENT_ID);
|
let game = new Phaser.Game(
|
||||||
|
GAME_SCREEN_SIZE.x, GAME_SCREEN_SIZE.y,
|
||||||
|
Phaser.CANVAS, CONTENT_ID
|
||||||
|
);
|
||||||
|
|
||||||
game.state.add('Loading', Loading);
|
game.state.add('Loading', Loading);
|
||||||
game.state.start('Loading');
|
game.state.start('Loading');
|
||||||
|
|
||||||
// game.state.add('Login', Login);
|
game.state.add('Game', Game);
|
||||||
// game.state.add('Menu', Menu);
|
// game.state.add('Menu', Menu);
|
||||||
|
|||||||
@@ -122,8 +122,7 @@ let Start = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
startStage: function() {
|
startStage: function() {
|
||||||
console.log("startStage");
|
location.href = "../../web/client/" + sessionStorageManager.playingAppName + ".html";
|
||||||
// this.startState('TypingTestStage');
|
|
||||||
},
|
},
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -14,8 +14,19 @@
|
|||||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||||
<script src="../../game/global/global_variables.js"></script>
|
<script src="../../game/global/global_variables.js"></script>
|
||||||
|
|
||||||
|
<!-- library source files -->
|
||||||
|
<script src="../../game/lib/number_util.js"></script>
|
||||||
|
<script src="../../game/lib/history_record_manager.js"></script>
|
||||||
|
<script src="../../game/lib/input_type_text.js"></script>
|
||||||
|
<script src="../../game/lib/round_rect_button.js"></script>
|
||||||
|
<script src="../../game/lib/back_button.js"></script>
|
||||||
|
<script src="../../game/lib/fullscreen_button.js"></script>
|
||||||
|
<script src="../../game/lib/screen_bottom.js"></script>
|
||||||
|
|
||||||
<!-- Space Invaders : source files -->
|
<!-- Space Invaders : source files -->
|
||||||
<script src="../../game/mouse/space_invaders/define_variables.js"></script>
|
<script src="../../game/mouse/space_invaders/define_variables.js"></script>
|
||||||
|
<script src="../../game/mouse/space_invaders/loading.js"></script>
|
||||||
|
<script src="../../game/mouse/space_invaders/game.js"></script>
|
||||||
<script src="../../game/mouse/space_invaders/main.js"></script>
|
<script src="../../game/mouse/space_invaders/main.js"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user