“Real Tennis” Documentation by “Code This Lab S.r.l.” v1.0


“Real Tennis”

Created: 02/11/2016
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!


Table of Contents

  1. Description
  2. Folder Contents
  3. Getting Started
  4. HTML Structure
  5. CSS Files and Structure
  6. Source Code
  7. Game functions
  8. Change Graphic
  9. Disable Sounds
  10. Wordpress Plugin

A) Description - top

Real Tennis is a HTML5 Sport Game. Are you ready to win the Wimbledon Tournament? Grab your racquet and prove your worth on the court!

The ZIP package contains the game with 1280x768 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:


C)Getting Started - top

To install the game just upload on your server the game folder live_demo.


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 8 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
                        scores_to_earn: 50, //Number of earning score per player point
                        scores_to_lose: -50, //Number of losing points per opponent point
                        player_speed: 15, //Player speed in 3D unit
                        opponent_speed: [6, 8, 10, 12, 14], //Opponent speed per level in 3D unit
                        player_acceleration: 1, //Player acceleration increase 
                        opponent_acceleration: [0.6, 0.7, 0.8, 0.9, 1], //Opponent acceleration increase 
                        opponent_force_x_range: [25, 25, 25, 25, 25], //Opponent force range X of precision point
                        opponent_force_y_range: [10, 10, 10, 10, 10], //Opponent force range Y of precision point
                        opponent_force_z_range: [{min: 85, max: 210}, {min: 85, max: 210}, {min: 85, max: 210}, {min: 85, max: 210}, {min: 85, max: 210}], //Opponent force Z depend on distance from him and net
                        opponent_distance_y_multiplier: [{min: 0.9, max: 1.1}, {min: 0.9, max: 1.1}, {min: 0.9, max: 1.1}, {min: 0.9, max: 1.1}, {min: 0.9, max: 1.1}], //Multiplier random range value for y precision shot point
                        set_for_win: 3, //If reach this set point end the level  (ALLOWED:1, 3, 5)
                        //////////////////////////////////////////////////////////////////////////////////////////
                        ad_show_counter: 2     //NUMBER OF INSERTED-NUMBERS 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:

    1. jQuery
    2. Our custom scripts
    3. CreateJs plugin
    4. cannon.js
    5. Howler Sound library
    1. jQuery is a Javascript library that greatly reduces the amount of code that you must write.
    2. 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
      • CCreditsPanel: this class show credits panel.
      • 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.
      • CBall: this class manage the ball.
      • CBallTrajectory: this class manage the ball trajectory.
      • CCharacter: this class manage a character.
      • CConfirmPanel: this class show a laucnh board.
      • CControllerMovement: this class manages characters movements.
      • CEndPanel: this class show a end panel.
      • CHandSwipeAnim: this class manage hand swipe animation.
      • CHelpText: this class show help text.
      • CHelpPanel: this class show help panel.
      • CLevelBut: this class manage level button.
      • CLevelMenu: this class show level menu.
      • CNet: this class manage the net.
      • CPause: this class show pause menu.
      • CPowerBar: this class manage power bar.
      • CSetAllowed: this class show wrong panel.
      • CScenario: this class manage 3d physics wolrd.
      • CVector2: this class manage a vector 2D.
      • CVelocityScreen: this class manage the velocity screen.
      • Detector: this class determinate if the device support WebGL
      • dat.gui: this class manages the analitycs of 3d.
      • FBXLoader: this class load fbx model and passes extracted data to cannonjs.
      • Stats: JavaScript Performance Monitor.
      • Three: javaScript 3d library which makes WebGL simpler
      • TrackballControls: this class allow to move camera in the 3d world
      • smoothie: javaScript charting library for streaming data
      • TransformControls: this class allow to move, rotate and scale objects in the world.
      • cannon: this class manages 3d physics.
      • cannon.demo: this class create a 3d world by threejs.
    3. CreateJs is a suite of modular libraries and tools which work together to enable rich interactive content on open web technologies via HTML5.
    4. Cannon.js is a javascript 3D Physics library.
    5. Howler is a javascript Audio library.

    Resuming, the complete game flow is the following:

    1. The index.html file calls the CMain.js file after ready event is called
    2. The main class calls CPreloader.js to init preloader text and start sprite loading
    3. 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
    4. If the user click the Play button in main menu, the CLevelMenu.js class is called and game start
    5. If the user click on the exit button in the up-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.


    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.

    Minimum Requirements:

    This plugin is designed to work only with games built by Code This Lab.

    You can find it here!

    ctl arcade

    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