PHP Classes

File: application/views/tictactoe/index.php

Recommend this page to a friend!
  Classes of Neeraj Thakur   PHP Tic Tac Toe Game Code   application/views/tictactoe/index.php   Download  
File: application/views/tictactoe/index.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Tic Tac Toe Game Code
Tic Tac Toe game based on CodeIgniter
Author: By
Last change:
Date: 7 years ago
Size: 8,839 bytes
 

Contents

Class file image Download
<div class="container-fluid">
    <div class="row mainpanel">
        <div class="col-md-9 leftpanel">

                <div class="gameboard">
                    <div class="row turn hidden-xs">
                        <div class="col-md-12"></div>
                    </div>
                    <div class="row">
                        <div class="col-md-4 col-xs-4 box tleft" id="0"></div>
                        <div class="col-md-4 col-xs-4 box top" id="1"></div>
                        <div class="col-md-4 col-xs-4 box tright" id="2"></div>
                    </div>
                    <div class="row">
                        <div class="col-md-4 col-xs-4 box mleft" id="3"></div>
                        <div class="col-md-4 col-xs-4 box middle" id="4"></div>
                        <div class="col-md-4 col-xs-4 box mright" id="5"></div>
                    </div>
                    <div class="row">
                        <div class="col-md-4 col-xs-4 box bleft" id="6"></div>
                        <div class="col-md-4 col-xs-4 box bottom" id="7"></div>
                        <div class="col-md-4 col-xs-4 box bright" id="8"></div>
                    </div>
                    <div class="row turn">
                        <div class="col-md-12 col-xs-12 footer">
                            <div id="turn" class="text-info">(X) Turn</div>
                            <div class="friend_computer">
                                <div class="computer">
                                    <i class="fa fa-desktop fa-lg" aria-hidden="true"></i>
                                </div>
                                <div class="friend">
                                    <i class="fa fa-user fa-lg" aria-hidden="true"></i>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>

        </div>
        <div class="col-md-3 hidden-xs rightpanel color-swatch gray-lighter">
           
            <div class="panel panel-default">
                <div class="panel-heading text-center"><strong>Last 5 matches scores</strong></div>
              <div class="panel-body">
                    <div class="row scoresheading">
                        <div class="col-md-3">Against</div>
                        <div class="col-md-3">Winner</div>
                        <div class="col-md-6">Date</div>
                    </div>
                    <div id="scores" class="scores text-nowrap">
                    <?php
                       
foreach ( $scores as $score ) { ?>
<div class="row">
                                <div class="col-md-3"><?php echo $score['against']; ?></div>
                                <div class="col-md-3"><?php echo $score['winner']; ?></div>
                                <div class="col-md-6"><?php echo $score['created_at']; ?></div>
                            </div>
                        <?php } ?>
</div>
                </div>
            </div>
           
        </div>
    </div>
</div>
<!--

Basic introduction:

-bootstrap 3.3.7 grid system is used for gameboard and other sections.
-used font awesome for X, 0 and other icons.
-sleep in game against computer
-game result is saved and latest 5 records are fetched using jQuery ajax.
-data interchange between server and client is done using JSON.

Technical documentation:
CodeIgniter
    Views:
            errors: for displaying error if any.
            templates: it contains header and footer template. header.php contains basic css and js files along with js base_url setting.
            welcome_message.php: contains a welcome screen with 0, 1, 2 levels.
            tictactoe: this is the game view.
            scores: this view is rendering socres from controller in json format.
    Controllers:
            Welcome.php: loads helper and default welcome_message view
            Scores.php: loads scores model, helper, scores via default index method and insert scores via create method.
            Tictactoe.php: loads scores model, helper, scores and sets game level for its view.
    Models:
            Scores_model.php: gets latest 5 games scores from db and sets scores table records. its also logging info in the logs.
           
MySQL
        please execute following in database.
            CREATE TABLE `scores2` (
              `id` int(11) NOT NULL primary key AUTO_INCREMENT,
              `against` varchar(10) NOT NULL,
              `winner` varchar(32) NOT NULL,
              `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
            )
jQuery
       
gstruct:
        this is a global holding nine blocks X, 0s and their corresponding combinations. e.g. for array inded 2 value could be [2][0]=X and [2][1] = "2-1-0|2-4-6|2-5-8"

counter:
        a global variable holds counter value on every move.

vagainst:
        this globlale variable stores if game is Player Vs Player or Player Vs Computer.
   
box.click():
        its called on game block click and executeStep as per vagainst variable value.
computer.click() and friend:click():
        these method toggle vagainst value and switches user to computer mode.

A gamearea namespace is created which has following methods.
executeStep()
        this method executes the step, set X or 0 value in box. it calls gamelogic and stop game if all counts are over.
       
offensiveMove()
        game is divided into different methods for computer vs player mode. offensive is called first and will choose available 0s combinations if available.

intelligentMove()
        this is called for defensive mode and will be called only if there is no 0s combinations available.

getIntersection()
        this is a support method for intelligentMove which checks the intersections points.

complexMove()
        this method is support method for defensive process and checks X && 0 or 0 && X if available.

stopGame()
        this method wipe info from gstruct, counter and other variables.

saveGame()
        this method calls the CodeIgniter URL via AJAX POST method to save scores info. This method is also responsible for rendering received JSON data from server.

renderScores()
        this is a support method for saveGame method.

fInOutEffect()
        this method was earlier used to perform fadein out effect when a box is clicked.

chgColor()
        this method changes the color of winning combinations using bootstrap text-info class.

chgTurn()
        this method declares the result in bottom label.

clearBoard()
        this method is called onclick when game is over or when a fresh game is opened.

gameLogic()
        this is the main method checks the winning combinations and call related methods.


Bootstrap
    layout is generated using bootstrap. its game board and scores board is using grid system. various bootstrap classes are used as per need.
   
Logs: Along with default, the game scores info is tracked in the logs.
        - $config['log_threshold'] = 4; //log all messages,

Player Vs Computer game detail.
- i have coded three different levels of game while playing with computer.
    0 - basic level where computer will play a random. [ tictactoe.js ]
    1 - intermediate where computer will be in defensive mode. [ tictactoe_1.js ]
    2 - advance where computer will be first offensive and then defensive. [ tictactoe_2.js ]
I can code a very advance level also in which computer will always or there will be tie in the game.

Software requirements:
    --php 5.5
    --mysql


Installation:
    To deploy this game, please change following settings.

    file path: aplication / config / config.php
        base_url: change this path as per your web server and project folder location.

        $config['base_url'] = 'http:// your localhost path';
        $db['default'] = array(
            'dsn' => '',
            'hostname' => 'localhost',
            'username' => '',
            'password' => '',
            'database' => '',
            'dbdriver' => 'mysqli',
            'dbprefix' => '',
            'pconnect' => FALSE,
            'db_debug' => (ENVIRONMENT !== 'production'),
            'cache_on' => FALSE,
            'cachedir' => '',
            'char_set' => 'utf8',
            'dbcollat' => 'utf8_general_ci',
            'swap_pre' => '',
            'encrypt' => FALSE,
            'compress' => FALSE,
            'stricton' => FALSE,
            'failover' => array(),
            'save_queries' => TRUE
        );

   
Git
    -code is available via git and can be cloned via following URL.
       

extension:
    - can make the same game played in the different network by two players.
   
remove log, upload on git and zip
-->