Pacman is an arcade game developed by Namco and licensed for distribution in the United States by Midway, first released in Japan on May 22, 1980.
1
vote
4answers
32 views
Creating Multiple Rectangle Objects at Once (Java)
First off, thanks for just clicking this :) I'm an amateur student coder, and I'm creating a (horrible) version of Pacman. I'm trying to create rectangles for each of my dots on my 1000x650 applet ...
0
votes
0answers
12 views
Evolve neural network for opponents in Ms. Pacman
I am working on a project where I am creating an AI opponent in Ms. Pacman. To simplicity, I put just one Ghost in project, that try to catch Ms. Pacman.
for developing, I use neural network and ...
0
votes
0answers
9 views
Pacman likeness Legit for use in a Logo?
I have taken a look at this: Is pac-man still protected by copyright?
But I was wondering if anyone has any input if I was to have a logo that had a very pacman-esque element in it. I was thinking of ...
0
votes
0answers
22 views
Pathfinding in int array java
I am making a maze solver in java and i am trying to add the logic to my program. I want to use an efficient, but simple way of finding the most direct route to the end, my maze is stored as a matrix, ...
1
vote
4answers
130 views
How to create a path tracing algorithm for pacman? [duplicate]
Im a high school student who is making a Pacman style gridworld game. As you know pacman has ghosts which follow pacman and try and get him. However I am having trouble creating an algortihm that ...
0
votes
3answers
72 views
Using thread two part of a program differently
I'm actually coding a pacman (C# Console) i would like to know how to move my ghost each seconds, but i would also like to be able to move my pacman whenever i want.
I would like my ghost keep ...
1
vote
1answer
67 views
Search Algorithm for Pacman
I need to find the path with the lower cost in a graph represented by a matrix. I researched a bit on the Dijkstra's algorithm but I need a vector with the sequence of nodes in the shortest path, not ...
0
votes
1answer
32 views
Collision with wall on simple pacman game using flash
I can stop PacMan going through the wall one way but he can go through the wall when going in the other direction, the code i have used is:
onClipEvent (enterFrame) {
if (_root.char.hitTest(this))
{
...
0
votes
1answer
71 views
making bouncing pacman with pygame mode change bugging out
RANDOM PACMAN
The task was to animate 5 objects(pac man and 4 ghosts that moved randomly,if pac man collides with a ghost he bounce's off it, the ghosts pass though one another and are unaffected when ...
-3
votes
1answer
40 views
Running a lottery within a pacman game [closed]
I want to find a pacman game written in javascript and find where it detects the winning. Then I can write my own code bellow it to run a simple lottery. I have checked out a few samples but couldn't ...
0
votes
0answers
47 views
Pacman Package Manager on Arm5 device
I have an arm5 device that uses the AM1808. I want to use the Pacman Package Manager to easily get packages and their dependencies, but before I invest the time to actually cross compile it, I want ...
0
votes
2answers
233 views
TypeError: argument of type 'instance' is not iterable
So heres my code and it breaks at the line:
if (suc not in sFrontier) or (suc not in sExplored):
giving the error: TypeError: argument of type 'instance' is not iterable
"""
The pseudocode ...
-2
votes
1answer
201 views
How to make pacman grid [closed]
I am trying to design a Pacman game in c++.
The problem is I have contained Pacman within the exterior boundaries,
but it keeps going over the interior puzzle-like boundaries.
How can I prevent ...
0
votes
1answer
157 views
Pacman Ghost class, what does this method do?
I dont understand what the method moveGhost does? Why pick a random number between 0-7 and what does that have to do with chasing pacman?
Oh, and what can I do to create a GUI image of the ghost?
I ...
3
votes
1answer
382 views
Pacman Game Organization (XNA) - Where/how should I check for collisions with ghosts/food?
I have my Pacman game working, and i'm trying to go back through it and "organize" my code better. Before, I had this "TopObject" which referenced the object in game1.cs which basically referenced ...
0
votes
0answers
644 views
Depth First Search - return Path to Goal for Pacman [closed]
I'm trying to figure out the DFS implementation for the Pacman Project from Berkley AI course.
It looks like I'm traversing the graph towards the goal just fine. But it seems to me that I'm unable to ...
0
votes
1answer
386 views
PACMAN: a short path for eating all the dots
I am trying to find a solution for the PACMAN problem of finding a short path (not the shortest, but a good one) that eats all the dots in a big maze. I've seen a lot of people talking about TSP, ...
1
vote
5answers
275 views
How do I make something happen on the screen even without a key being pressed?
I am making Pacman in C++ with the Ncurses library. I am able to move Pacman with my code, but I want to move it so that pacman keeps moving even when I am not pressing any key and when I press ...
0
votes
0answers
268 views
Pacman AI, how can pacman avoid the enemies [closed]
I am currently working on artificial intelligence for the pacman character. I am currently calculating the shortest path taking into consideration the walls and enemies so pacman won't collide with ...
9
votes
3answers
719 views
How to create a random pacman maze
Hello I have been working on an algorithm to generate a random pacman maze. I have seen a couple of articles but could not break down the logic. I am using the maze algorithm depth first search and ...
0
votes
0answers
377 views
Pacman Ghost AI strategy [closed]
I am planning to implement pacman game in java.I have not started coding yet but have some ideas as how to proceed.I am thinking to follow below strategy for Ghost AI.
Pacman object will have a ...
-2
votes
1answer
425 views
Java game development. Making the monster move random in a maze [closed]
I was writing a pacman styled game in which the monsters are assumed to move in a random direction in the maze. But I can't figure it out how to make them adapt the right direction they want. I was ...
1
vote
3answers
57 views
running an installation command in bash: “n” followed by “Y” without any manual intervention
So on a fresh instance of arch linux, I want to be able to install tzdata from the get-go.
To do so manually, I do this:-
[root@myarch ~]# pacman -S tzdata
:: The following packages should be ...
7
votes
2answers
2k views
PacMan: what kinds of heuristics are mainly used?
Beside A*, BFS, DFS and the like, what are other good path-finding algorithms/heuristics popularly used in Pacman? I don't think the ones I mentioned will work if there're more than one fruits for ...
3
votes
1answer
300 views
Some questions with pacman path finding
I have learned about A*, BFS, DFS and can implement them pretty well. However, some problems arise when I try to do that in solving pacman path finding problem. Let's assuming there're only two types ...
1
vote
2answers
727 views
Java IO, reading from a file and printing to a 2d character array
So I'm working on an assignment for my game design class to build a pacman clone, it'll be throughout the semester.
Currently I've got a text file that is the pacman maze
see below :
...
0
votes
3answers
401 views
comparing tuples in python
I have the following piece of code:
while current is not problem.getStartState():
print "Current: ", current, "Start: ", problem.getStartState()
now for some reason the comparison is not ...
2
votes
1answer
102 views
Where can I find the arch/setup source?
Where can I find the arch/setup source?
I did not find in ftp://ftp.archlinux.org/sources/
Who knows?
thanks.
0
votes
2answers
403 views
Pacman Array - Smooth Movement
See Having Some Issues With Making Pacman to understand this question fully. Just look at the first part of the accepted answer. And this is in java!
I am using the array as shown in the link above. ...
2
votes
1answer
279 views
Drawing Pacman's Face in Tkinter
So I'm coding Pacman in Python just for fun and I want to create pacman's open face (when he is eating food) using Tkinter graphics. How exactly do I draw an open face? I was thinking about using ...
7
votes
4answers
1k views
Pacman Ghost AI
I'm currently making a pacman game in java. I have a question about the ghosts though.
I understand that the ghosts do not all have the same style of attack. I first want to work on the basics of ...
6
votes
1answer
376 views
Having some issues with making pacman?
Edit: Totally forgot to mention I'm coding in Java
I'm having a real hard time making some kind of detection system or some way to make my pacman sprite/character move smoothly through my board in ...
1
vote
4answers
4k views
Able to find path using DFS but not able specify the right directions to Pacman _ Python
I am working on an assignment found on an AI course page at berkley website for fun. I need to write a depth-first search for the pacman game so that it can find its path.The problem is the pacman ...
0
votes
2answers
332 views
Implementing pacman in c, ghost movement
I am creating a pacman in c and currently I am usisng a single thread for each ghost and each ghost represents a '#' but when I run it all the screen gets full of ghosts and not all the ghosts move ...
0
votes
1answer
683 views
Pac-man similar game and legal issues [closed]
I've developed an iPhone / iPad game similar to Namco's Pac-man.
What i've done:
changed the name to (for instance) CarMan
the yellow pacman character is replaced by a (for instance) car
the ghosts ...
0
votes
3answers
396 views
Does anyone know the algorithm used for navigating a Pac-Man maze? [closed]
I need an algorithm for this pacman maze. Can anyone help?
3
votes
1answer
376 views
how to see release notes with pacman
Hi all:
Like many fellow archers, i use pacman to update my softwares each day
often there's update such as this:
foo-1.1 ---> foo.1.2
i wonder if there's a way to see what has been updated from ...
1
vote
3answers
154 views
What would be a good python library to use to write a portable version of pacman with nice graphics?
I basically want to make a clone of the classic game Pacman using Python. I would like to keep all the original graphics, sounds, etc. Perhaps being able to have the game in windowed mode would be ...
3
votes
2answers
208 views
Threading OR multiple flow of control in Pacman
I am planning to write a Pacman game in C language, right from scratch. The most basic challenge that I am facing is how to maintain multiple flows of control at the same time.
I mean how does the ...
0
votes
2answers
1k views
Pacman game in C language
I need to implement a 2-player pacman in C. The game will accept users apart from the two playing, however in view-only mode. Then they are admitted to the game in FIFO fashion.
I'm not so sure about ...
0
votes
1answer
415 views
problem with a very simple tile based game
I am trying to create a pacman-like game. I have an array that looks like this:
array:
1111111111111
1000000000001
1111110111111
1000000000001
1111111111111
1 = Wall, 0 = Empty space
I use this ...
1
vote
1answer
600 views
PacMan Movement isn't smooth
I am moving pacman in a line using simple for loop but the pacman blinks or may be its the whole screen updating and blinking. How can i make it more smooth?
Edit:
I am currently using C++ Turbo ...
1
vote
1answer
717 views
How to Map a Pacman Maze Using 2D Array
I have created a map (experimental) which has a '#' value if there is a Boundry Wall in the maze. Laying the Map Graphically I use a checking condition that if the value of the 2D array is a # then ...
0
votes
2answers
2k views
How to code a Map for PacMan in C++
Can anyone plese tell me How do i create a Map for PacMan in C++.
Any Suggestions for getting m Started.?
Thanx in Advance.
10
votes
3answers
7k views
How to download source code with Pacman on Arch Linux? [closed]
I am using Arch Linux. I want to do the same thing like apt-get source coreutils; is it possible to download sources with Pacman? I didn't find a solution in the man pages.
How can I get the source ...
4
votes
3answers
1k views
Pac-Man Template with Original Ghost AI (Help)
I'm currently trying to implement a fully autonomous Pac-Man game, where you just watch. I plan on making the actual yellow guy's AI to play the game flawlessly.
I want to make it so that the Ghosts ...
1
vote
4answers
942 views
Pacman Ghost moving in android
I want to play game pacman. There is a problem exists in the moving of the pacman ghosts. How can i move the ghost. I use Random Method but it moves in the same direction up or down or left or right. ...
0
votes
2answers
148 views
Design principles as to how linux repository managers update themselves?
I know there are other applications also, but considering yum/apt-get/aptitude/pacman are you core package managers for linux distributions.
Today I saw on my fedora 13 box:
(7/7): ...
7
votes
3answers
839 views
In Pacman do the ghosts choose paths independently for finding pacman?
So I have been playing a lot of pacman on my cell lately and am wondering how do the ghosts seem to work independent of each other. I was thinking about how it would have been programmed.
One option ...
5
votes
3answers
3k views
Is pac-man still protected by copyright? [closed]
I am planning to write and distribute a pac-man like game. So I would like to know if It is still protected by copyright.
Can I use the word pacman in the title ? What are the limits that I will have ...