“Roulette 3D” Documentation by “Code This Lab S.r.l.” v1.0


“Roulette 3D”

Created: 17/07/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!


Table of Contents

  1. Description
  2. Folder Content
  3. Getting Started
  4. Set Win Occurrence
  5. HTML Structure
  6. CSS Files and Structure
  7. JavaScript
  8. Game functions
  9. Disable Sounds
  10. Wordpress Plugin

A) Description - top

Roulette 3D is a HTML5 casino game. Enjoy this roulette game with high quality 3D graphic!
The game contains all the main roulette game features like Voisins zero, tier, orphelins, neighbor,final bets. The ZIP package contains the game with 750x600 resolution that automatically scales PROPORTIONALLY to fit current screen device and all the assets to grant complete game customization.
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 Content - top

  1. ctl_arcade_wp_plugin:
  2. This folder contains the zip package that can be used with our Wordpress plugin "CTL Arcade" (http://codecanyon.net/item/ctl-arcade-wordpress-plugin/13856421).
  3. game
  4. This folder contains the full game source code ready to be edited.
  5. live_demo
  6. This folder contains the obfuscated code. You should upload this folder on your server if you don't need to make any changes.
  7. readme
  8. This folder contains the package instructions.
  9. thumbs
  10. This folder contains all game icons.

C) Getting Started - top

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


D) Set Win Occurrence - top

You can set the win occurrence percentage, editing the parameter 'win_occurrence' in index.html. Set a value between 0 and 100.
If you want to keep win occurrence completely random, set this value to -1. In this case the win occurence is related to the player bet ( e.g.: red/black bet have 50% win occurrence; betting on a single number has around 2.5% win occurrence and so on...)

The win occurrence is strictly related to the 'casino_cash' parameter, that is the amount of money that the casino table currently have. So if the casino money are less than the current player bet, the player can't win.


E) 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 6 mapped events that can be useful eventually for stats

			
				  
				  
				 
			
		

F) 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


G) JavaScript - top

This game contains:

  1. jQuery
  2. Our custom scripts
  3. CreateJs plugin
  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
    • CLang: global string variables for language localization
    • CPreloader: simple text preloader to show resources loading progress
    • CMenu: simple menu with play button
    • CGfxButton: this class create a standard button
    • CTextButton: this class create a standard text button
    • CGame: this class manages the game logic
    • CBetTableButton:
    • CInterface: this class controls game GUI that contains text and buttons
    • CGameOver: this class controls the game over panel that appears when player lose all the lives
    • CBetTextButton: this class contains all infos relative to symbols, combos and their animations
    • CEnlight: this class manages the sprites that enlight bets on table
    • CFiche: this class manages the fiche sprite
    • CFicheBut: the buttons on table to select the fiche
    • CFichesController: this class manages the fiches on table
    • CFinalBetPanel: this class manages the Final Bet Panel
    • CHistoryRow: this class store all the number extracted
    • CMsgBox: this class manages the message box that appear for warning
    • CNeighborsPanel: this class manages the Neighbor panel
    • CRouletteSettings: this class contains all the info about roulette spinning fames, fiche values, etc..
    • CSeat: this class manages some user info like money, current bet, etc...
    • CTableController: this class manages all table bet button
    • CTweenController: this class manages the fiches tweening
    • CWheelAnim: this class manages the roulette wheel animation on the left
    • CWheelTopAnim: this class manages the roulette wheel top-view animation
  3. CreateJs is a suite of modular libraries and tools which work together to enable rich interactive content on open web technologies via HTML5.

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" folder are loaded, the main class removes the preloader and calls the CMenu.js file that shows the main menu
  4. If user click on the play button in main menu, the CGame.js class is called and the game starts
  5. The User can start roulette spinning, clicking one of the chips on table
  6. If user click on the exit button in the up-left corner, the game returns to the menu screen

H) Game functions - top

In this section will be explained all the most important functions used in CGame.js file.


J) 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. 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.

Go To Table of Contents