NOTE: This was posted intentionally on the Chit Chat board since it does not fit in any way to the Discussion board.
Alright, so, just wanted to hear opinions on a Nokia-based 2D Snake Game that I wrote few weeks ago and still in active development (not so active since I work on it when bored).
Browser Source Code: https://github.com/allanference/Snake
NO Binary Release Available, compile it yourself. (Maybe i'll consider compiling one if 5 or more request it)
* It uses auto movement just like Nokia's with a small interval that decreases each time you eat an apple. (Initial interval is 400 milliseconds)
The interval decreases like this:
* You can penetrate walls (as in, if you go to a wall [max border], you will appear in the opposite side, if top, then bottom, if left, then right, etc.)
* New Feature: Diagonal movement, just like Tibia's, this feature is not in Nokia's game but I implemented it for fun.
It's a pretty simple game to play, however, I called it advanced as in implementation detail not gameplay.
Yes, currently the Snake is immortal, I haven't found a good creative idea to make him die.
Current Idea that I thought of after Talaturen told me "he should die when he gets aids" was that he would die by eating bait food.
Yes, I could not find good textures over the interwebs to use, if you know of good ones (that are 32x32 or bigger, but I'd prefer 16x16 then 32x32 then 64x64 then 128x128 power of two's if you understand me [This is basically for the snake to grow]), post them and i'll check them and perhaps use them instead.
I wrote this small C program to dump them.
Thanks for reading and feel free to post opinions, whether destructive or constructive.
Alright, so, just wanted to hear opinions on a Nokia-based 2D Snake Game that I wrote few weeks ago and still in active development (not so active since I work on it when bored).
Browser Source Code: https://github.com/allanference/Snake
NO Binary Release Available, compile it yourself. (Maybe i'll consider compiling one if 5 or more request it)
FAQ
So how does it work?
So how does it work?
* It uses auto movement just like Nokia's with a small interval that decreases each time you eat an apple. (Initial interval is 400 milliseconds)
The interval decreases like this:
Code:
interval = interval - (applesEaten * 3);
* You can penetrate walls (as in, if you go to a wall [max border], you will appear in the opposite side, if top, then bottom, if left, then right, etc.)
* New Feature: Diagonal movement, just like Tibia's, this feature is not in Nokia's game but I implemented it for fun.
It's a pretty simple game to play, however, I called it advanced as in implementation detail not gameplay.
I keep playing but I realized that I never die, wtf?
Yes, currently the Snake is immortal, I haven't found a good creative idea to make him die.
Current Idea that I thought of after Talaturen told me "he should die when he gets aids" was that he would die by eating bait food.
The textures are ripped from Tibia, wth?!
Yes, I could not find good textures over the interwebs to use, if you know of good ones (that are 32x32 or bigger, but I'd prefer 16x16 then 32x32 then 64x64 then 128x128 power of two's if you understand me [This is basically for the snake to grow]), post them and i'll check them and perhaps use them instead.
How'd you ripoff Tibia sprites?
I wrote this small C program to dump them.
Thanks for reading and feel free to post opinions, whether destructive or constructive.
Last edited: