PHP Classes

File: libs/Position.js

Recommend this page to a friend!
  Classes of Amin   Tic-Tac-Toe   libs/Position.js   Download  
File: libs/Position.js
Role: Auxiliary data
Content type: text/plain
Description: js library
Class: Tic-Tac-Toe
Tic-Tac-Toe game using alpha beta search algorithm
Author: By
Last change:
Date: 13 years ago
Size: 478 bytes
 

Contents

Class file image Download
var Position = function() { var board = [0, 0, 0, 0, 0, 0, 0, 0, 0]; return { get : function(index){ if(index == undefined) return board; return board[index]; }, set : function(index, value){ board[index] = value; }, update : function(boardObj){ for(var i in boardObj){ this.set(i, boardObj[i]); } } }; }(); var Const = { HUMAN : 1, BLANK : 0, COM : -1, TURN : this.HUMAN //indicates who should play now };