
Snake game for tablets and Smartphones - CodeProject
Jul 16, 2012 · Menu Game Score How to calculate the score? Snake Switch Summary More resources Introduction The Snake game is a well-known game for mobile devices. The first …
A Simple Snake Game in WPF - CodeProject
Mar 25, 2012 · The head of the snake is being drawn on a new position slightly misplaced to the direction of motion. The end of its tail is erased from our canvas, thus creating an illusion of …
A Simple Snake Game: Engerek - CodeProject
Feb 9, 2011 · Introduction Yes, again a snake game if you aren't bored yet. You must have seen a lot of snake games created in different languages. But have you ever seen a snake game that …
A Smooth Snake Game - CodeProject
Feb 27, 2007 · Collision Detection : Collision Detection between Food and Snake has been done by matching the Snake(x,y) and Food (x,y) co_ordinates,If Both are equal then Length of …
Snakes and Ladders - An attempt using HTML5 - CodeProject
Jun 3, 2012 · This article is intended to demonstrate the very simple and crude implementation of Snakes and Ladders game using HTML5. Recently, I started to dig deeper into HTML5.
Beginners - Starting a 2D Game with GDI+ - CodeProject
Jun 25, 2012 · Basics for setting up a 2D Game using GDI+, Renderloop, and Threading. And a few tips.
Investigating Myers' Diff Algorithm: Part 2 of 2 - CodeProject
Sep 11, 2009 · If the middle snake algorithm finds a solution with D = 1, then there is either exactly one insertion or deletion. This means delta is 1 or -1 which are odd and so the middle …
A Tic Tac Toe AI with Neural Networks and Machine Learning
Jun 25, 2019 · This article describes the making of a tic tac toe player that uses neural networks and machine learning.
Developing 3D Games for Windows* 8 with C++ and Microsoft …
Sep 12, 2014 · Windows* 8 Intel Developer Zone Introduction Game development is a perennial hot topic: everybody loves to play games, and they are the top sellers on every list. But when …
An O (ND) Difference Algorithm for C# - CodeProject
Mar 6, 2006 · SMS: This method finds the Shortest Middle Snake. To get some usable performance, I did some changes to the original algorithm. The original algorithm was …