scrabble

Loads a .json and transforms the data so we can use it.

sketch.js

var scrabble;
function preload(){
scrabble = loadJSON("scrabble.json");
// NEVER LOG IN PRELOAD TO THE CONSOLE !!!!!!!!!!!
}
// getting started with p5js
function setup(){

  var canvas = createCanvas(300,100);
  canvas.parent('sketch');
  // text("empty example", 10,10);
  // console.log(scrabble);
  // executed once
  var letters = scrabble.letters;
  // var numberOfObjects = 0;
  var values = [];  // will hold the point values
  var letarr = []; // will hold the letter names
  var tiles = []; // will hold the number of tiles

// this is an special loop for objects
// https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Statements/for...in
  for(var key in letters){
    tiles.push(letters[key].tiles); // add the tile values to the array tiles
    values.push(letters[key].points);// add the point values to the array points
    letarr.push(key); // add the keys a,b,c,d,... to the array letarr
  }

var x = 0;
rectMode(CENTER);
// display it
var step = width/values.length;
for(var i = 0; i < values.length; i++){
  text(letarr[i],x,(height/2) - 10);
  rect(x,height/2 ,tiles[i],tiles[i]);
  ellipse(x,height/2 ,values[i],values[i]);

  x+=step;
  }
}
function draw(){
  // executed all the time
}

scrabble.json

{
    "description": "Tile distribution and points for the English-language edition of Scrabble",
    "letters":
    {
        "a": { "points":  1, "tiles":  9 },
        "b": { "points":  3, "tiles":  2 },
        "c": { "points":  3, "tiles":  2 },
        "d": { "points":  2, "tiles":  4 },
        "e": { "points":  1, "tiles": 12 },
        "f": { "points":  4, "tiles":  2 },
        "g": { "points":  2, "tiles":  3 },
        "h": { "points":  4, "tiles":  2 },
        "i": { "points":  1, "tiles":  9 },
        "j": { "points":  8, "tiles":  1 },
        "k": { "points":  5, "tiles":  1 },
        "l": { "points":  1, "tiles":  4 },
        "m": { "points":  3, "tiles":  2 },
        "n": { "points":  1, "tiles":  6 },
        "o": { "points":  1, "tiles":  8 },
        "p": { "points":  3, "tiles":  2 },
        "q": { "points": 10, "tiles":  1 },
        "r": { "points":  1, "tiles":  6 },
        "s": { "points":  1, "tiles":  4 },
        "t": { "points":  1, "tiles":  6 },
        "u": { "points":  1, "tiles":  4 },
        "v": { "points":  4, "tiles":  2 },
        "w": { "points":  4, "tiles":  2 },
        "x": { "points":  8, "tiles":  1 },
        "y": { "points":  4, "tiles":  2 },
        "z": { "points": 10, "tiles":  1 },
        "blank": { "tiles": 2}
    }
}

index.html

<!doctype html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>{page.title}</title>
    <meta name="description" content="something">
    <meta name="author" content="me">
  </head>
  <body>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.min.js"></script>
    <script type="text/javascript" src="sketch.js"></script>
    <div id="sketch"></div>
  </body>
</html>