Bradley "Luke" Hylton
  • Game Prototypes
    • Toy Soldiers
    • Sparkly Night
    • Snakes in a 3-Torus
    • Archimedes' Labyrinth
    • Dungeon Swim
  • Technical Art Demos
    • Manual Input Mesh Generation
    • Low Resolution Hand-painted Normal Map
    • Post-Process Shader
    • Miscellaneous Gallery
  • Publications
    • Project Realism
    • uGrounds
  • Art
    • 3D Art >
      • Steampunk Ragdoll
      • Poisoning Series
    • Sprites
    • Photography
    • Miscellaneous
  • Contact

Project Realism

uGrounds

Project Realism is primarily a set of systems for emergent gameplay. They form part of the core of larger games and may interface with combat, dialogue and all other systems important to gameplay. The purpose of these systems is to simulate the player character having realistic needs of food, water and rest in order to add depth, difficulty and realism to the game. Though they have ludonarrative value, they do not directly impact the main storyline of the game.
A heavily researched mechanic design document around the usage of starvation in modern titles. Published in the GMU undergraduate journal.
function RC4Initialize() {
    sbox = new int[256];
    key = new int[256];
    n = password.Length;
    for (a = 0; a < 256; a++)    {
        key[a] = (password[a % n]);
        sbox[a] = a;
}    var b : int = 0;
        for (a = 0; a < 256; a++)    {
            b = (b + sbox[a] + key[a]) % 256;
            var tempSwap : int = sbox[a];
            sbox[a] = sbox[b];
            sbox[b] = tempSwap;
}}
Unity Javascript (aka Unityscript) encryption code to enable communication with the Newgrounds server. Was first available access to their server in Unity. Required writing scratch implementations of encryption algorithms, due to their lack of availability in the Javascript dialect.
Powered by Create your own unique website with customizable templates.
  • Game Prototypes
    • Toy Soldiers
    • Sparkly Night
    • Snakes in a 3-Torus
    • Archimedes' Labyrinth
    • Dungeon Swim
  • Technical Art Demos
    • Manual Input Mesh Generation
    • Low Resolution Hand-painted Normal Map
    • Post-Process Shader
    • Miscellaneous Gallery
  • Publications
    • Project Realism
    • uGrounds
  • Art
    • 3D Art >
      • Steampunk Ragdoll
      • Poisoning Series
    • Sprites
    • Photography
    • Miscellaneous
  • Contact