“Battleship War” Documentation by “Code This Lab S.r.l.” v1.0
“Battleship War”
Thank you for purchasing our game. If you have any questions that are beyond the scope of this help file, please feel free to email via user page contact form here. Thanks so much!
Table of Contents
- Description
- Folder Contents
- Getting Started
- HTML Structure
- CSS Files and Structure
- Source Code
- Game functions
- Change Graphic
- Disable Sounds
- Wordpress Plugin
A) Description - top
Battleship War is a HTML5 Skill Game. Hit all the ships of your enemy and lead your fleet to the victory! Two games mode:
Classic: Guess the position of your enemy's ships and destroy them!
Advanced: Collect points and buy 2 special power-up
The ZIP package contains the game with 1920x1080 resolution that scales to fit the whole screen device
Just warning that for very wide screens, the game may not be perfectly full screen.
The game is fully compatible with all most common mobile devices.
Sounds are enabled for mobile but we can't grant full audio compatibility on all mobile devices due to some well-know issue between some mobile-browser and HTML5.
So if you want to avoid sound loading, please read Disable Sound section).
WARNING: Sounds can't be enabled for Windows Phone as this kind of device have unsolved issues with 'audio' and 'video' tag.
B) Folder Contents - top
The item package contains the following folders:
- ctl_arcade_wp_plugin:
This folder contains the game version (zip file inside) that can be used with wordpress plugin CTL Arcade
- game:
This folder contains the full source code that you can edit as you need.
- live_demo:
This folder contains the obfuscated version of the game. WARNING: you should use this version if you don't have to edit the original game.
- readme:
This folder contains the readme of the game.
C)Getting Started - top
To install the game just upload on your server the game folder live_demo.
- Game Embedding: The proper way to embed the game is in a full-screen web page or in an iframe.
In the first case the game will fit the screen size, in the second, that of the iframe.
If the iframe size matches that of the screen, the game will fit accordingly.
The alignment will be proportioned to the aspect ratio of the game.
To install the game in a WordPress website, we suggest to use our plugin CTL Arcade .
- Localization: You can easily change game text for different languages, changing string in CLang.js
TEXT_WIN = "YOU WIN";
TEXT_LOSE = "YOU LOSE";
TEXT_SCORE = "SCORE";
TEXT_ARE_SURE = "ARE YOU SURE?";
TEXT_YOUR_FLEET = "YOUR FLEET";
TEXT_ENEMY_FLEET = "ENEMY FLEET";
TEXT_STRATEGY_PANEL = "STRATEGY PANEL";
TEXT_GAME_MODE = "GAME MODE";
TEXT_CLASSIC = "CLASSIC";
TEXT_ADVANCED = "ADVANCED";
TEXT_COST = "COST";
TEXT_SUNK = "SUNK";
TEXT_HELP = "HELP";
TEXT_HELP_CLASSIC = "CLICK ON A CELL AND GUESS THE POSITION OF YOUR ENEMY'S SHIP TO DESTROY THEM";
TEXT_HELP_ADVANCED = "COLLECT POINTS TO BUY THE POWER-UPS";
TEXT_HELP_AIRSTRIKE = "HITS RANDOM CELLS OT ONCE";
TEXT_HELP_RADAR = "REVEALS THE POSITION OF AN OPPONENT'S SHIP";
TEXT_PRELOADER_CONTINUE = "START";
TEXT_SHARE_IMAGE = "200x200.jpg";
TEXT_SHARE_TITLE = "Congratulations!";
TEXT_SHARE_MSG1 = "You collected ";
TEXT_SHARE_MSG2 = " points!
Share your score with your friends!";
TEXT_SHARE_SHARE1 = "My score is ";
TEXT_SHARE_SHARE2 = " points! Can you do better";
D)HTML Structure - top
This game have the canvas tag in the body. The ready event into the body calls the main function of the game: CMain().
The head section declares all the javascript functions of the game. The whole project uses a typical object-oriented approach.
In the init function there are 7 mapped events that can be useful eventually for stats
Game option: You can easily customize game setting when creating a new instance of the game in index.html file
var oMain = new CMain({
fullscreen:true, //SET THIS TO FALSE IF YOU DON'T WANT TO SHOW FULLSCREEN BUTTON
check_orientation:true, //SET TO FALSE IF YOU DON'T WANT TO SHOW ORIENTATION ALERT ON MOBILE DEVICES
points_earned: 15, //NUMBER OF POINTS EARNED WHEN HIT ENEMY SHIPS. (THIS POINTS ARE MULTIPLIED WHEN YOU CHAIN HIT)
points_to_lose: 5, //NUMBER OF LOSING POINT, WHENEVER ENEMY HIT YOUR SHIPS
//////////////////////////////////////////////////////////////////////////////////////////
ad_show_counter: 20 //NUMBER OF MISSILE SHOTS BEFORE AD SHOWN
//
//// THIS FUNCTIONALITY IS ACTIVATED ONLY WITH CTL ARCADE PLUGIN.///////////////////////////
/////////////////// YOU CAN GET IT AT: /////////////////////////////////////////////////////////
// http://codecanyon.net/item/ctl-arcade-wordpress-plugin/13856421?s_phrase=&s_rank=27 ///////////
E) CSS Files and Structure - top
The game use two CSS files. The first one is a generic reset file. Many browser interpret the default behavior of html elements differently. By using a general reset CSS file, we can work round this.
Keep in mind, that these values might be overridden somewhere else in the file.
The second file contains all of the specific stylings for the canvas and some hack to be fully compatible with all most popular mobile devices
F) Source Code - top
This game contains:
- jQuery
- Our custom scripts
- CreateJs plugin
- Howler Sound library
- jQuery is a Javascript library that greatly reduces the amount of code that you must write.
- The game have the following js files:
- CMain: the main class called by the index file.
This file controls the sprite_lib.js file that manages the sprite loading, the loop game and initialize the canvas with the CreateJs library
- ctl_utils: this file manages the canvas resize and its centering
- sprite_lib: this class loads all images declared in the main class
- settings: general game settings
- CLang: global string variables for language localization
- CPreloader: simple text preloader to show resources loading progress
- CMenu: simple menu with the play button
- CGfxButton: this class create a standard button
- CToggle: this class create a standard toggle button
- CTextButton: this class create a standard text button
- CGame: this class manages the game logic
- CInterface: this class controls game GUI that contains text and buttons
- CAreYouSurePanel: this class show are you sure panel.
- CEndPanel: this class shows end panel.
- CHelpPanel: this class shows help panel.
- CCreditsPanel: this class shows credits panel.
- CAI: this class controls Artificial Intelligence of opponents.
- CBackground: this class manages background.
- CModeMenu: this class manages the selection mode menu.
- CTremble: this class manages tremble animation.
- CAirStrike: this class manages airstrike animation powerup.
- CAnimatedButton: this class creates an animated button.
- CAnimationSettings: this class manages all the animation settings.
- CBattleCell: this class creates in-game cell where ships are placed.
- CBoardUtility: this class helps with board utility.
- CBattleCell: this class creates control cell where player can interact.
- CBattleCell: this class manages all control cells and powerup.
- CMissile: this class manages missile animation.
- CPlayerBoard: this class manages in game ship boards.
- CRuler: this class manages ruler animation.
- CSandBoxBoard: this class manages board ship displacement.
CSandBoxMenu
- CSandBoxMenu: this class manages menu ship displacement.
- CSandBoxCell: this class manages cell in CSandBoxBoard.
- CSeaAnimation: this class manages sea animation.
- CSummaryPanel: this class manages GUI info.
- CTurnWaiter: this class manages AI thinking animation.
- CVector2: this class manages vector.
- shipSettings: this class manages ships settings.
- CreateJs is a suite of modular libraries and tools which work together to enable rich interactive content on open web technologies via HTML5.
- Howler is a javascript Audio library.
Resuming, the complete game flow is the following:
- The index.html file calls the CMain.js file after ready event is called
- The main class calls CPreloader.js to init preloader text and start sprite loading
- When all sprites contained in "/sprites" and "/sounds" folder are loaded, the main class removes the preloader and calls the CMenu.js file that shows the main menu
- If the user click the Play button in main menu, the CModeMenu.js class is called and user can choose a mode
- If the user click on a mode button in mode menu, the CGame.js class is called and game starts
- If the user click on the exit button in the down-right corner, the game returns to the menu screen
G) Game functions - top
In this section will be explained all the most important functions used in
CGame.js file.
- _init()
This function attach on the canvas some game sprites like background (oBg)and the GUI.
- unload
This function is called when user want to exit from the game.
- gameOver()
This function is called when game is over.
- update()
This function manages the main game loop.
- _initEnemyBoard()
This function manages the opponents ship displacement
- onMissileArrived()
This function manages the status board after a missile arrive;
- changeTurn()
This function manages the turn;
- _wakeUpAI()
This function manages the AI turn;
- checkEndGame()
This function che if the game end;
H) Change Graphic - top
You can easily change all the game graphic, replacing all the file you need in the "/sprites" folder. Just respect file format (.png or .jpg) and size if you don't want to change any code line.
I) Disable Sounds - top
If you want to disable all the sounds for mobile devices, you have to change the following value in settings.js file:
var DISABLE_SOUND_MOBILE = true;
J) Wordpress Plugin - top
CTL Arcade will allow you to add a real arcade on your worpress website, in this way your users will be more involved and will stay connected longer.
It's possible to add Ads banner at the beginning of each game and at the end of each level. This will give you a new tool to increase your revenues.
Your own users will promote your website sharing their scores on the main Social Networks, with no extra costs for you.
You'll get by default the score-sharing on Twitter. To add Facebook just follow the guideline below.
3 widgets can be added in your pages through a shortcode.
- Game iframe
- Rate the Game
- Leaderboard
Minimum Requirements:
- PHP 4.3
- WordPress 4.3.1
- HTML5
- Canvas
- Javascript / jQuery
This plugin is designed to work only with games built by Code This Lab.
You can find it
here!
Once again, thank you so much for purchasing this game. Feel free to contact us if you have any questions or issue relating to this game. No guarantees, but we'll do our best to assist.
CODE THIS LAB S.R.L.
Go To Table of Contents