Learn more, We use analytics cookies to understand how you use our websites so we can make them better, e.g.

We use essential cookies to perform essential website functions, e.g. Instead of using milions of div’s you can use only number of divs required to construct a snake and apply them position: absolute. Browse files. By Patrick Gillespie An app that will tell you how many viewing years people have put into watching particular YouTube videos. Sometimes I’d spend the whole hour and a half period playing games. Contribute to patorjk/JavaScript-Snake development by creating an account on GitHub. var maxRows = playingBoard.grid.length-1; var maxCols = playingBoard.grid[0].length-1; while (playingBoard.grid[row][col] !== 0){, // in some cases there may not be any room to put food anywhere. * This method is called when it is determined that the snake has eaten some food. After remembering how much I loved Snake I thought to myself “Hrm, I bet I could write a version of Snake entirely in JavaScript”. This is a DOM-based game of Snake that I wrote in JavaScript a few years back. Other than the full screen mode demonstrated in the code, it can also be initialized in div tags within a page. Learn more, We use analytics cookies to understand how you use our websites so we can make them better, e.g. The program worked by allowing students to work by themselves to create a project, and at the end of the semester each student would present their project to a committee to show that they had actually learned something. Unless you obfuscated it you can still decompile it and retrieve all the ActionScript bytecode. I honestly sucked at it then and still suck at it now, but it was pretty mindless and actually pretty fun. You can always update your selection by clicking Cookie Preferences at the bottom of the page. All credit goes to patorjk.com, this is not my game. Learn more. moveQueue.unshift(0);//SnakeDirection = 0; if ( lastMove !== 3 || snakeLength === 1 ) {. Based on U.S. Bureau of Labor Statistics data (2013). (edit: not really accurate since people don't watch videos to completion, I'll probably remove this app at some point). you could really learn modern javascript programming. The classic game of snake done in JS. Visual Basic Arrays Tutorial by Adam Wehmann. Was Mark Zuckerberg an AOL Add-on Developer? This method needs to run quickly. 2 - The game is in progress and the snake is moving. License: MIT * @param {Boolean} evtCapturing True to do event capturing, false to do event bubbling.

You could peak at it right now if you wanted, but it’s in a not-ready-for-prime-time state right now. If you need to, you can also, hdfgqiwebvcuiweagdgwqukf/JavaScript-Snake. moveQueue.unshift(2);//SnakeDirection = 2; * This method is executed for each move of the snake. After remembering how much I loved Snake I thought to myself “Hrm, I bet I could write a version of Snake entirely in JavaScript”. I’ve never really done too much work with Flash or ActionScript, and I know that these days a lot of people obfuscate their code so it is more difficult to properly decompile, but on every Flash file I have viewed with the tool I was able to retrieve each statement without any difficulty. We use optional third-party analytics cookies to understand how you use GitHub.com so we can build better products. (keyNum >= 37 && keyNum <= 40) && ! If nothing happens, download GitHub Desktop and try again. There are 3 states: 0 - Welcome or Try Again dialog is present. You signed in with another tab or window. blocks[ii].elm.className += " snake-snakebody-alive"; me.snakeHead.elm.className = me.snakeHead.elm.className.replace(/\bsnake-snakebody-dead\b/,'').

We use optional third-party analytics cookies to understand how you use GitHub.com so we can build better products. When I was tired of reading up on programming or dealing with crap from the lady in charge of the computer lab, I’d blow off steam by playing online games. All credit goes to patorjk.com, this is not my game. TAAG was updated with a couple of fonts (they all start with “JS”) and I fixed up the feature that allows you to share messages you create with others. Contains playingBoard (the SNAKE.Board that this food resides in).

they're used to gather information about the pages you visit and how many clicks you need to accomplish a task. SNAKE.removeEventListener = (function() {. var lastMove = moveQueue[0] || currentDirection; if ( lastMove !== 1 || snakeLength === 1 ) {. I googled “JavaScript linked list” for some quick linked list code and came across this link, which is actually pretty nifty. var wEdgeSpace = me.getBlockWidth()*2 + (cWidth % me.getBlockWidth()); var fWidth = Math.min(maxBoardWidth()-wEdgeSpace,cWidth-wEdgeSpace); var hEdgeSpace = me.getBlockHeight()*3 + (cHeight % me.getBlockHeight()); var fHeight = Math.min(maxBoardHeight()-hEdgeSpace,cHeight-hEdgeSpace); elmContainer.style.width = cWidth + "px"; elmContainer.style.height = cHeight + "px"; elmPlayingField.style.left = me.getBlockWidth() + "px"; elmPlayingField.style.top = me.getBlockHeight() + "px"; elmPlayingField.style.width = fWidth + "px"; elmPlayingField.style.height = fHeight + "px"; // the math for this will need to change depending on font size, padding, etc, // assuming height of 14 (font size) + 8 (padding). 9 min ago, C++ | I appreciate friendly advice, but I’m not really sure that’s what the aim of your comment is. myContainer = document.getElementById(myContainer); if (myContainer === elmContainer) {return;}, if (!elmPlayingField) {createBoardElements();} // create playing field. Watch 48 Star 347 Fork 507 Code; Issues 10; Pull requests 7; Actions; Projects 0; Security; Insights; Permalink. me.snakeBody[index].elm.className += " snake-snakebody-alive"; * This method handles what happens when the snake dies. Learn more. If nothing happens, download Xcode and try again. JavaScript Snake btw, noone really cares about the old days. A collection of Visual Basic code that was submitted to patorjk.com between the years of 1998 and 2003. + fullScreenText + "

"; var welcomeStart = document.createElement("button"); welcomeStart.appendChild( document.createTextNode("Play Game")); SNAKE.removeEventListener(window, "keyup", kbShortcut, false); var keyNum = (evt.which) ? Handles what happens when an arrow key is pressed. Play this javascript snake in any tab! (keyNum === 87 || keyNum === 65 || keyNum === 83 || keyNum === 68)) {return;} // if not an arrow key, leave, // This removes the listener added at the #listenerX line, if (keyNum === 32 && me.getBoardState() != 0) {. Pastebin is a website where you can store text online for a set period of time. It logs arrow key presses in "moveQueue", which is used when the snake needs to make its next move. * @param {Object} config The configuration object for the class.

0 : config.left; config.width = (typeof config.width === "undefined") ? A few days ago, while working on some other JavaScript project for this site, I randomly started thinking about these olden days. var bottomPanelHeight = hEdgeSpace - me.getBlockHeight(); var pLabelTop = me.getBlockHeight() + fHeight + Math.round((bottomPanelHeight - 30)/2) + "px"; elmAboutPanel.style.left = Math.round(cWidth/2) - Math.round(450/2) + "px"; elmLengthPanel.style.left = cWidth - 120 + "px"; // if width is too narrow, hide the about panel. In the same repository and across forks. 4 min ago, C++ | 54 min ago, C++ |

http://patorjk.com/games/snake. * @param {DOM Element or String} myContainer Sets the container element for the game. Then you can move them around with top and left css style. Watch 48 Star 348 Fork 507 Code; Issues 10; Pull requests 7; Actions; Projects 0; Security; Insights; Permalink. myDirection = currentDirection = moveQueue.pop(); newHead.col = oldHead.col + columnShift[myDirection]; newHead.row = oldHead.row + rowShift[myDirection]; newHead.xPos = oldHead.xPos + xPosShift[myDirection]; newHead.yPos = oldHead.yPos + yPosShift[myDirection]; newHead.elmStyle.left = newHead.xPos + "px"; newHead.elmStyle.top = newHead.yPos + "px"; // check the new spot the snake moved into, if (grid[newHead.row][newHead.col] === 0) {, } else if (grid[newHead.row][newHead.col] > 0) {, } else if (grid[newHead.row][newHead.col] === playingBoard.getGridFoodValue()) {.