Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div id="newstuff">
  <h3 id="msg"></h3>
  <h4 id="mix"></h4>
</div>
<div id="discovered-zone">
  <h5>Discovered: <span id="count"></span></h5>
  <div id="discovered">
  </div>
</div>
              
            
!

CSS

              
                .icon {
  max-height: 3em;
  max-width: 3em;
}

.item-box {
  display: inline-flex;
  min-width: 25%;
}
              
            
!

JS

              
                //Little Alchemy Engine
//Goals: Need a "simple" format for students to create their universe from:
let universe = {
  "fire": {
    displayName: "Fire",
    combinations: {
      "water":"steam",
      "fire":"sun"
    },
    isStartingItem: true,
    imageURL: "https://upload.wikimedia.org/wikipedia/commons/7/7c/Icon-Campfire.svg"
  },
  "sun": {
    displayName: "Sun",
    combinations: {
      "rain":"rainbow"
    },
    isStartingItem: false,
    imageURL: "https://roundicons.com/wp-content/uploads/2017/08/sun-Doodle-Icons.png"
  },
  "cloud": {
    displayName: "Cloud",
    combinations: {
      "water":"rain"
    },
    isStartingItem: false,
    imageURL: "https://tistatech.com/wp-content/uploads/2017/01/cloud-icon.png"
  },
  "rain": {
    displayName: "Rain",
    combinations: {
      "sun":"rainbow"
    },
    isStartingItem: false,
    imageURL: "https://cdn.iconscout.com/icon/premium/png-256-thumb/rain-2110017-1775370.png"
  },
  "rainbow": {
    displayName: "Rainbow",
    combinations: {
    },
    isStartingItem: false,
    imageURL: "https://cdn.iconscout.com/icon/premium/png-256-thumb/rainbow-175-672817.png"
  },   
  "water": {
    displayName: "Water",
    combinations: {
      "fire":"steam",
      "steam":"cloud",
      "cloud":"rain"
    },
    isStartingItem: true,
    imageURL: "https://zerodraftmd.com/wp-content/uploads/2016/06/water-icon.png"
  },
  "steam": {
    displayName: "Steam",
    combinations: {
      "water":"cloud"
    },
    isStartingItem: false,
    imageURL: "https://clipartstation.com/wp-content/uploads/2018/09/boiling-water-clipart-7.jpg"
  }
}

let createGameState = function(universe){
  let elements = Object.keys(universe);
  let hydrateEl = function(elID, universe){
    let result = JSON.parse(JSON.stringify(universe[elID]));
    result.isDiscovered = result.isStartingItem;
    result.id = elID;
    return result;
  };

  let undiscovered = {};
  let discovered = {};
  elements.map(elID=>{
    if (universe[elID].isStartingItem){
      discovered[elID] = hydrateEl(elID, universe);
    } else {
      undiscovered[elID] = hydrateEl(elID, universe); 
    }
  });
  let gameObj = {
    "discovered": discovered,
    "undiscovered": undiscovered,
    "universe": universe,
    "attempts": 0,
    "mixing":[]
  };
  //obj.universe is an object with raw data -- use for lookups, 
  //discovered is an object of objects with .id and .discovered keys
  //undiscovered is an object with .id and .discovered keys added
  //I will lookup in undiscovered and MOVE TO discovered
  return gameObj;
};

let saveGame = function(gameState){
  localStorage.setItem("alchemySave", JSON.stringify(gameState));
}

let loadGame = function(){
  let localread = localStorage.getItem("alchemySave");
  if (!localread){
    return createGameState(universe);
  }
  return JSON.parse(localread);
}

gameState = loadGame();

let getImg = function(elID){
  console.log("img for ",elID);
  return  `<img class="icon" src="${gameState.universe[elID].imageURL}">`;
}

let renderMix = function(){
  if (gameState.mixing.length == 0){
    $("#mix").html("");
    return;
  } else if (gameState.mixing.length == 1){
    $("#mix").html(`Mix ${getImg(gameState.mixing[0])} with ???`);
  }
};

let discoverNew = function(newEl){
  let undiscovered = gameState.undiscovered[newEl];
  undiscovered.isDiscovered = true;
  delete gameState.undiscovered[newEl];
  gameState.discovered[newEl] = undiscovered;
  return renderDiscovered()
}

let makeMix = function(){
  let twoEls = JSON.parse(JSON.stringify(gameState.mixing));
  gameState.mixing = [];
  if (gameState.universe[twoEls[0]].combinations.hasOwnProperty(twoEls[1])){
    let newElement = gameState.universe[twoEls[0]].combinations[twoEls[1]];
    if (!gameState.discovered.hasOwnProperty(newElement)){
      $("#msg").html(`Congrats!  You discovered that ${getImg(twoEls[0])} and ${getImg(twoEls[1])} makes ${getImg(newElement)}`);
      discoverNew(newElement); 
    } else {
      $("#msg").html(`You already discovered that ${getImg(twoEls[0])} and ${getImg(twoEls[1])} makes ${getImg(newElement)}`)
    }
  } else {
    $("#msg").html(`Well ${getImg(twoEls[0])} and ${getImg(twoEls[1])} don't mix`);
  }
}

let mixItem = function(evt){
  let elID = $(evt.currentTarget).attr("data-id");
  if (gameState.mixing.length === 0){
    gameState.mixing.push(elID);
  } else {
    //mixing has 1 element
    gameState.mixing.push(elID);
    makeMix();
  }
  return renderMix();
}

let renderDiscovered = function(){ 
  let showItem = function(theItem){
    return `<div class="item-box"><strong>${theItem.displayName}</strong><img class="icon" src="${theItem.imageURL}"><button class="mixme" data-id=${theItem.id}>Combine Me</button></div>`;
  };
  $("#count").html(`${Object.keys(gameState.discovered).length}/${Object.keys(gameState.universe).length} things`);
  $("#discovered").html("");
  $(".mixme").off("click");
  let discoveredKeys = Object.keys(gameState.discovered);
  discoveredKeys.map(elID=>{
    let theItem = gameState.discovered[elID];
    $("#discovered").append(showItem(theItem));
  });
  $(".mixme").on("click", mixItem);
}

renderDiscovered();
              
            
!
999px

Console