Created: 13/02/2014
By: Code This Lab S.r.l.
Email: info@codethislab.com
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!
Flappy Ball is a HTML5 action game. The game is freely inspired to the popular game "Flappy Bird". The goal of the player is to tap the screen to let the ball survive as long as possible avoiding the poles.
The ZIP package contains the game with 768x1400 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.
To install the game just upload on your server the game resolution you need. You can choose among 320x480,320x568 or 768x1024. WARNING: The game won't run locally with some browser like Chrome due to some security restrictions.
1 2 3 4 5 6 7 8 | $(window).ready( function () { /*if(isIphone()){ setTimeout(function(){sizeHandler();},200); }else{ sizeHandler(); }*/ }); |
1 2 3 4 | $(oMain).on( "save_score" , function (evt,iScore) { //ADD CODE HERE }); |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | TEXT_GAMEOVER = "GAME OVER" ; TEXT_CONGRATS = "CONGRATULATIONS" ; TEXT_SCORE = "SCORE" ; TEXT_BEST_SCORE = "BEST SCORE" ; TEXT_TIME = "TIME" ; TEXT_PLAY = "PLAY" ; TEXT_HELP = "TAP THE SCREEN\n TO DRIBBLE THE\n BALL AND \nAVOID THE POLES" ; TEXT_SHARE_IMAGE = "200x200.jpg" ; TEXT_SHARE_TITLE = "Congratulations!" ; TEXT_SHARE_MSG1 = "You collected <strong>" ; TEXT_SHARE_MSG2 = " points</strong>!<br><br>Share your score with your friends!" ; TEXT_SHARE_SHARE1 = "My score is " ; TEXT_SHARE_SHARE2 = " points! Can you do better?" ; |
1 2 3 4 5 6 7 8 9 10 11 | _oGame = new CGame({ hero_x : 150, //STARTING HERO X POSITION hero_y : CANVAS_HEIGHT/2, //STARTING HERO Y POSITION hero_down_speed : 3, //HERO FALLING SPEED bg_speed : 9, //SPEED OF SCROLLING BACKGROUND time_training: 3000, //NUMBER OF MILLISECONDS BEFORE USER STARTS PLAYING dist_among_obst: 350, //PIXEL DISTANCE AMONG TWO SERIES OF OBSTACLE obst_height_dist: 250 //PIXEL DISTANCE BETWEEN TWO OBSTACLE POSITIONED IN THE SAME X }); |
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 8 mapped events that can be useful eventually for stats
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | <script> $(document).ready( function (){ var oMain = new CMain(); $(oMain).on( "start_session" , function (evt) { //THIS EVENT IS TRIGGERED WHEN PLAY BUTTON IN MENU SCREEN IS CLICKED }); $(oMain).on( "end_session" , function (evt) { //THIS EVENT IS TRIGGERED WHEN GAME IS OVER OR THE EXIT BUTTON IS CLICKED. }); $(oMain).on( "start_level" , function (evt,iLevel) { //THIS EVENT IS TRIGGERED WHEN A NEW LEVEL STARTS }); $(oMain).on( "end_level" , function (evt,iLevel) { //THIS EVENT IS TRIGGERED WHEN CURRENT LEVEL IS OVER. }); $(oMain).on( "restart_level" , function (evt,iLevel) { //THIS EVENT IS TRIGGERED WHEN CURRENT LEVEL IS RESTARTED. }); $(oMain).on( "save_score" , function (evt,iScore) { //THIS EVENT IS TRIGGERED WHEN GAME IS OVER. IT CAN BE USEFUL TO CALL PHP SCRIPTS (NOT PROVIDED IN THE PACKAGE) THAT SAVE THE SCORE. }); $(oMain).on( "show_interlevel_ad" , function (evt) { //THIS EVENT IS TRIGGERED WHEN GAME IS OVER. MAY BE USEFUL TO CALL ADS SCRIPT. }); $(oMain).on( "share_event" , function (evt,iScore) { //THIS EVENT IS TRIGGERED WHEN USER CLICK EXIT BUTTON. CAN BE USEFUL TO CALL SHARING FEATURE SCRIPTS. }); }); </script> <canvas id= "canvas" class= "ani_hack" width= "768" height= "1400" > </canvas> |
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
This game contains:
Resuming, the complete game flow is the following:
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.
If you want to disable all the sounds for mobile devices, you have to change the following value in settings.js file:
1 | var DISABLE_SOUND_MOBILE = true ; |
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.
Once again, thank you so much for purchasing this game. Fell 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.