Accurate remake of Pac-Man in JavaScript
11–20 of 60 posts
Re: Accurate remake of Pac-Man in JavaScript
#12Re: Accurate remake of Pac-Man in JavaScript
#13Re: Accurate remake of Pac-Man in JavaScript
#14The remakes look really good -- good job! Does the original Pac-Man remake use the same AI behavior as the original arcade version? I ask because I tried using the "safe spot" trick (src: http://strategywiki.org/wiki/Pac-Man/Tips#The_safe_spot ) and the red ghost caught me every time.
(I liked the speed though, Pac-Man is too slow.)
Re: Accurate remake of Pac-Man in JavaScript
#15The remakes look really good -- good job! Does the original Pac-Man remake use the same AI behavior as the original arcade version? I ask because I tried using the "safe spot" trick (src: http://strategywiki.org/wiki/Pac-Man/Tips#The_safe_spot ) and the red ghost caught me every time.
It didn't seem to work. I'm not a Pac-Man expert, but the ghost behavior didn't feel the same to me here as it does on an emulated version of the original. (I liked the speed though, Pac-Man is too slow.)
Re: Accurate remake of Pac-Man in JavaScript
#16Re: Accurate remake of Pac-Man in JavaScript
#17[0]http://home.comcast.net/~jpittman2/pacman/pacmandossier.html
Re: Accurate remake of Pac-Man in JavaScript
#18Double standard, HN?
At least qxcv sees the light: "It's one thing to make a Pac-Man-like game. But this is being called the trademarked name Pac-Man, and you've copied the artwork straight from Pac-Man.
Seems certain this isn't an official licensed version. In which case, you should change all those items immediately. It's illegal and it's just not cool.
Here are the guys you are ripping off. Tōru Iwatani and his friends at Namco. Tōru is a very nice guy:
Re: Accurate remake of Pac-Man in JavaScript
#19Looks very nice. My only complaint is that all the JavaScript code is in one file, which makes it a bit harder to casually peruse (I was curious how you implemented the ghosts' AI).
I wonder how he compiles these files into one though ? THis is the main drawback of javascript to me at the moment : having to write everything in one big file.
Re: Accurate remake of Pac-Man in JavaScript
#20Looks very nice. My only complaint is that all the JavaScript code is in one file, which makes it a bit harder to casually peruse (I was curious how you implemented the ghosts' AI).
You can see the whole source here : https://github.com/shaunew/Pac-Man/tree/gh-pages/src I wonder how he compiles these files into one though ? THis is the main drawback of javascript to me at the moment : having to write everything in one big file.