<?php
namespace account;
require_once "verify_user_credentials.php";
require_once "verify_temporary_credentials.php";
require_once "add_temporary_account.php";
$GLOBALS["USERS_DIRECTORY"] = "users/";
$GLOBALS["COOKIE_LENGTH"] = "2592000";
$GLOBALS["COOKIE_PATH"] = "/";
$GLOBALS["TEMP_USERS_DIRECTORY"] = "_tmp/";
function get_user_path()
{
   $root = find_users_root();
   if (permanent_credentials_exist())
   {
      $name = $_COOKIE["name"];
      if (verify_user_credentials($name, null, $_COOKIE["hash"])->count() == 0)
      {
         renew_cookie("name");
         renew_cookie("hash");
         return $root . $name . "/";
      }
   }
   $id = null;
   if (temporary_credentials_exist())
   {
      $id = $_COOKIE["id"];
      if (!verify_temporary_credentials($id, $_COOKIE["code"]))
      {
         $id = null;
      }
      else
      {
         renew_cookie("id");
         renew_cookie("code");
      }
   }
   if (is_null($id))
   {
      $id = add_temporary_account();
   }
   return $root . $GLOBALS["TEMP_USERS_DIRECTORY"] . $id . "/";
}
function find_users_root()
{
   $path = $GLOBALS["USERS_DIRECTORY"];
   while (!is_dir($path))
   {
      $path = "../" . $path;
   }
   return $path;
}
function permanent_credentials_exist()
{
   $name = array_key_exists("name", $_COOKIE);
   $hash = array_key_exists("hash", $_COOKIE);
   return $name && $hash;
}
function renew_cookie($name)
{
   $expiration = time() + intval($GLOBALS["COOKIE_LENGTH"]);
   $path = $GLOBALS["COOKIE_PATH"];
   setcookie($name, $_COOKIE[$name], $expiration, $path);
}
function temporary_credentials_exist()
{
   $id = array_key_exists("id", $_COOKIE);
   $code = array_key_exists("code", $_COOKIE);
   return $id && $code;
}
function is_permanent_account($path)
{
   return !preg_match("/_tmp\/.+\/$/", $path);
}
function find_temp_users_root()
{
   $path = find_users_root() . $GLOBALS["TEMP_USERS_DIRECTORY"];
   if (!is_dir($path))
   {
      mkdir($path, 0770);
   }
   return $path;
}   
function build_user_path($name)
{
   return find_users_root() . "$name/";
}
<?php
namespace account;
require_once "Errors.php";
require_once "validate_submission.php";
require_once "get_user_path.php";
require_once "add_user_account.php";
require_once "add_user_cookie.php";
submit_change_password_request();
function submit_change_password_request()
{
   $name = $_GET["name"];
   $old_password = $_GET["old_pass"];
   $new_password = array($_GET["new_pass"], $_GET["new_pass_confirmation"]);
   $errors = verify_user_credentials($name, $old_password);
   validate_password($new_password, $errors);
   if ($errors->count() == 0)
   {
      store_password(build_user_path($name), $new_password[0]);
      add_user_cookie($name);
   }
   echo $errors;
}
<?php
namespace account;
require_once "user_exists.php";
require_once "validate_submission.php";
require_once "add_user_account.php";
require_once "add_user_cookie.php";
register_user();
function register_user()
{
   $username = $_GET["user"];
   $password = array($_GET["pass"], $_GET["repeat"]);
   $email_address = $_GET["email"];
   $errors = validate_submission($username, $password, $email_address);
   if ($errors->count() > 0)
   {
      echo $errors;
      return;
   }
   add_user_account($username, $password[0], $email_address);
   add_user_cookie($username);
}
EVR.include("account/form/forms/Forms.js");
EVR.include("account/form/input/Input.js");
EVR.include("account/form/error/Error.js");
EVR.Account.Form = function(container, title)
{
   this.container = container;
   this.title = title;
   this.focused = false;
   this.inputs = [];
   this.element = document.createElement("form");
   this.element.method = "post";
}
EVR.Account.Form.prototype.initialize = function()
{
   this.errors = new EVR.Account.Form.Error.Errors(this);
   this.add_title();
   this.add_listeners();
}   
EVR.Account.Form.prototype.append = function()
{
   this.container.appendChild(this.element);
}
EVR.Account.Form.prototype.add_title = function()
{
   var element = document.createElement("div");
   element.innerHTML = this.title;
   this.element.appendChild(element);
}
EVR.Account.Form.prototype.add_listeners = function()
{
   var current = this;
   this.element.onkeydown =
      function(event) {
	 var code = event ? event.keyCode : window.event.keyCode;
	 if (code == 13)
	 {
	    current.respond();
	    return false;
	 }
      };
   this.element.onsubmit = function() { return false };
}
EVR.Account.Form.prototype.add_input = function(name, value, type)
{
   if (type == null)
   {
      type = "text";
   }
   var input = new EVR.Account.Form.Input(this, value, type);
   input.append();
   this.inputs[name] = input;
   return input;
}
EVR.Account.Form.prototype.neutralize = function()
{
   var inputs = this.inputs;
   for (name in inputs)
   {
      inputs[name].set_background(FORM_NEUTRAL_COLOR);
   }
}
EVR.Account.Form.prototype.build_query = function()
{
   var inputs = this.inputs;
   var value, query = "";
   for (name in inputs)
   {
      value = encodeURIComponent(inputs[name].get_value());
      query += name + "=" + value + "&";
   }
   return query;
}
EVR.Account.Form.prototype.clear_errors = function()
{
   this.errors.clear();
   this.neutralize();
}   
EVR.Account.Form.prototype.add_error = function(message, affected)
{
   if (typeof(affected) == "string")
   {
      affected = [affected];
   }
   this.errors.add_error(message, affected);
}
EVR.Account.Form.prototype.display_errors = function()
{
   this.errors.display();
}
EVR.Account.Form.prototype.reset = function()
{
   var input, inputs = this.inputs;
   for (name in inputs)
   {
      input = inputs[name];
      input.set_value("");
      input.swap();
   }
   this.clear_errors();
}
216.73.216.27
216.73.216.27
216.73.216.27
 
August 12, 2013

I've been researching tartan/plaid recently for decoration in my updated version of Ball & Cup, now called Send. I want to create the atmosphere of a sports event, so I plan on drawing tartan patterns at the vertical edges of the screen as backgrounds for areas where spectator ants generate based on player performance. I figured I would make my own patterns, but after browsing tartans available in the official register, I decided to use existing ones instead.

I made a list of the tartans that had what I thought were interesting titles and chose 30 to base the game's levels on. I sequenced them, using their titles to form a loose narrative related to the concept of sending. Here are three tartans in the sequence (levels 6, 7 and 8) generated by an algorithm I inferred by looking at examples that reads a tartan specification and draws its pattern using a simple dithering technique to blend the color stripes.


Acadia


Eve


Spice Apple

It would be wasting an opportunity if I didn't animate the tartans, so I'm thinking about animations for them. One effect I want to try is making them look like water washing over the area where the ants are spectating. I've also recorded some music for the game. Here are the loops for the game over and high scores screens.

Game Over

High Scores