Add: english test
This commit is contained in:
@@ -184,22 +184,68 @@ class TypingTest {
|
||||
}
|
||||
|
||||
loadTestContent() {
|
||||
let appName = "";
|
||||
if(isTypingTestStage())
|
||||
appName = sessionStorageManager.playingAppName.substring(5);
|
||||
else if(isTypingPracticeStage())
|
||||
appName = sessionStorageManager.playingAppName.substring(5);
|
||||
else
|
||||
appName = sessionStorageManager.playingAppName.substring(5);
|
||||
var testContent = [];
|
||||
switch(sessionStorageManager.playingAppName) {
|
||||
case "test_korean_word":
|
||||
case "practice_korean_word":
|
||||
switch(appName) {
|
||||
case "korean_basic":
|
||||
testContent = koreanBasicWordList;
|
||||
break;
|
||||
case "korean_left_upper":
|
||||
testContent = koreanLeftUpperWordList;
|
||||
break;
|
||||
case "korean_second_finger":
|
||||
testContent = koreanSecondFingerWordList;
|
||||
break;
|
||||
case "korean_right_upper":
|
||||
testContent = koreanRightUpperWordList;
|
||||
break;
|
||||
case "korean_left_lower":
|
||||
testContent = koreanLeftLowerWordList;
|
||||
break;
|
||||
case "korean_right_lower":
|
||||
testContent = koreanRightLowerWordList;
|
||||
break;
|
||||
case "korean_left_upper_double":
|
||||
testContent = koreanLeftUpperDoubleWordList;
|
||||
break;
|
||||
case "korean_right_upper_double":
|
||||
testContent = koreanRightUpperDoubleWordList;
|
||||
break;
|
||||
case "korean_word":
|
||||
testContent = koreanWordList;
|
||||
break;
|
||||
case "test_korean_sentence":
|
||||
case "practice_korean_sentence":
|
||||
case "korean_sentence":
|
||||
testContent = koreanSentenceList;
|
||||
break;
|
||||
case "test_english_word":
|
||||
case "practice_english_word":
|
||||
|
||||
case "english_basic":
|
||||
testContent = englishBasicWordList;
|
||||
break;
|
||||
case "english_left_upper":
|
||||
testContent = englishLeftUpperWordList;
|
||||
break;
|
||||
case "english_second_finger":
|
||||
testContent = englishSecondFingerWordList;
|
||||
break;
|
||||
case "english_right_upper":
|
||||
testContent = englishRightUpperWordList;
|
||||
break;
|
||||
case "english_left_lower":
|
||||
testContent = englishLeftLowerWordList;
|
||||
break;
|
||||
case "english_right_lower":
|
||||
testContent = englishRightLowerWordList;
|
||||
break;
|
||||
case "english_word":
|
||||
testContent = englishWordList;
|
||||
break;
|
||||
case "test_english_sentence":
|
||||
case "practice_english_sentence":
|
||||
case "english_sentence":
|
||||
testContent = englishSentenceList;
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -33,7 +33,6 @@ var englishSecondFingerWordList = [
|
||||
"hard",
|
||||
"head",
|
||||
"great",
|
||||
"send",
|
||||
"baby",
|
||||
"leg",
|
||||
"whether"
|
||||
|
||||
@@ -0,0 +1,80 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,80 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Typing Test</title>
|
||||
|
||||
|
||||
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
||||
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
||||
<script src="../../../resources/js/phaser.min.js"></script>
|
||||
|
||||
<!-- global source files -->
|
||||
<script src="../../game/lib/session_storage_manager.js"></script>
|
||||
<script src="../../game/lib/score_manager.js"></script>
|
||||
<script src="../../game/lib/heart_manager.js"></script>
|
||||
<script src="../../game/global/global_variables.js"></script>
|
||||
|
||||
<!-- library source files -->
|
||||
<script src="../../game/lib/string_util.js"></script>
|
||||
<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/db_connect_manager.js"></script>
|
||||
<script src="../../game/lib/screen_bottom.js"></script>
|
||||
<script src="../../game/lib/game_over_text.js"></script>
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper.js"></script>
|
||||
-->
|
||||
<script src="../../game/typing/word_list/korean_second_finger.js"></script>
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/korean_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_left_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_right_upper_double.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_word.js"></script>
|
||||
<script src="../../game/typing/word_list/korean_sentence.js"></script>
|
||||
-->
|
||||
|
||||
<!--
|
||||
<script src="../../game/typing/word_list/english_basic.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_left_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_lower.js"></script>
|
||||
<script src="../../game/typing/word_list/english_right_upper.js"></script>
|
||||
<script src="../../game/typing/word_list/english_second_finger.js"></script>
|
||||
<script src="../../game/typing/word_list/english_sentence.js"></script>
|
||||
<script src="../../game/typing/word_list/english_word.js"></script>
|
||||
-->
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
<style>
|
||||
body{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
canvas{
|
||||
margin: 0 auto;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="Typing Test" style="text-align:center;" />
|
||||
</body>
|
||||
</html>
|
||||
@@ -55,9 +55,9 @@
|
||||
|
||||
<!-- Space Invaders : source files -->
|
||||
<script src="../../game/typing/test/content_progress.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/define_variables.js"></script>
|
||||
<script src="../../game/typing/test/loading.js"></script>
|
||||
<script src="../../game/typing/test/average_typing_speed.js"></script>
|
||||
<script src="../../game/typing/test/game.js"></script>
|
||||
<script src="../../game/typing/test/main.js"></script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user