EDITED 8-10-15: Click here for an updated version of the Endless scrolling photo slideshow in Javascript


var total = 11;/* Total number of slides */
var currentSlide = 1;
function goto(slideID) {
if (slideID==total+2){/*If we are at the end of the slideshow tape, instantly rewind to the beginning of the tape*/
document.getElementById("slideshowTape_1").className = "slideshowTape speedZero/*set up the transition speed via a css class*/";
document.getElementById("slideshowTape_1").style.left = "0px";
currentSlide = 2;
setTimeout("goto(2)", 5);
}
else{
document.getElementById("slideshowTape_1").className = "slideshowTape speedSix/*set up the transition speed via a css class*/";
document.getElementById("slideshowTape_1").style.left = ((slideID - 1) * -400/*width of one slide*/) + "px";
var count;
for(count=1; count<=total; count++) {
document.getElementById("slideTab"+count).className = "slideTab hidden";
}
document.getElementById("slideTab"+slideID).className = "slideTab";
currentSlide = slideID;
}
}
function ran() {
randomNumber=currentSlide+1;
goto(randomNumber);
setTimeout("ran()", 6000/*change slides every 6 seconds*/);
}
setTimeout("ran()", 5);
// ]]></script>


Rookie Recording is a Twine game that I created this summer. It's a video game about street cred, microphones, late night Taco Bell cravings, analog signal flow, unreadable brutal lettering, and an Electronic Talking Sir George Martin Super-Producer® action figure (still in it's original packaging).

If this year was 1986, you could say that "this video game has amazing, state-of-the-art graphics and animation."

kickdrumthud02

FREQUENTLY ASKED QUESTIONS

  • How much does this game cost? $59? $173? You are in luck, because Rookie Recording is 100% free!
  • How long does it take to play? 59 hours? 173 hours? Rookie Recording will probably take you 10 to 15 minutes to play.
  • Is it available for my Atari 5200 or my dad's CalecoVision? No. Rookie Recording is available in HTML format and can be played on any computer, smartphone, tablet, or any other internet connected device with a browser.
  • Where can I find this HTML of which you speak? http://ohiofi.github.io/rookierecording/
  • Does it show the High Scores when you win? Yes, but you have to sign in to OhioFi if you want to save your score. It's also free to sign up for OhioFi.
  • Which Difficulty level should I choose? Easy? Medium? Hard? If you have never recorded anything in a recording studio in your life, choose easy. Otherwise, shoot for the moon and choose hard!
  • Have you received a cease and desist letter from Sir George Martin's lawyers? Not yet!

georgemartin


This summer I created several games. One is a Flash game. A few of them simply use Javascript for interactivity. One of them, Rookie Recording, is in a new format for me... it is a Twine game.

twine

Twine is an open source (GPL) program that uses wiki formatting to create hypertext. Often people refer to Twine creations as "interactive fiction" or "choose your own adventure stories", but I'm just going to refer to them as games.

ku-medium7744485956_1c80b82ea9_zMGSchooseIntro_1265262898

The Twine program is available (for free) for Windows, Mac OS X, and there is even "twee" a command-line version that uses Python. A game is organized in a nice graphical interface that shows connections between passages and points out any broken links. Once finished, the program generates a single HTML page which contains the entire game.

twine1

The program allows you to create a game without needing to know HTML, CSS, Javascript, et al. Games can be enhanced by more advanced coding, but the fact that such knowledge is unnecessary leads to a more egalitarian approach to game design. What if the "game of the year" wasn't developed by a giant corporation that invested years in a focus-grouped, product placement-ridden, arms dealer licensed, Michael Bay-esque machismo inflation device?

totalcarnage_-2811-29

Finally, here are a few Twine games that I enjoyed found noteworthy. Some of them are disturbing or offensive (because sometimes art can be disturbing or offensive). Some of them use the f-word a lot. Several popular Twine game designers are transgender and use their games as a medium to share their experiences and feelings.

ULTRA BUSINESS TYCOON III by Porpentine - What if Kurt Vonnegut had made a satirical business-simulation game?

Brooklyn Trash King by Ben Esposito - A game about raccoons, rotting meat, and how far some ppl are willing to go to fund their Kickstarter

Trunked by Ian Daffern - A modern day noir

A Synchronous Ritual by Merritt Kopas - A real-time performance game about prescription medication

Slavoj Žižek Makes A Twine Game by Cameron Kunzelman - An unauthorized, day-in-the-life of philosopher and cultural critic Slavoj Žižek

Calories by Emma Fearon - The most disturbing, horrifying Twine game that I've played so far

Camel ported by Emmanuel Turner - a BASIC computer game from 1979 ported to Twine

Joust ported by Emmanuel Turner -  another BASIC computer game from 1979 ported to Twine




RECENT POSTS