master
leventius imperatus 2020-04-30 21:31:20 +02:00
commit 60494391b3
16 changed files with 31 additions and 51 deletions

View File

@ -1,3 +1,4 @@
A simple Pac-Man clone. A simple Pac-Man clone.
So far. So far.
About to add Path finding for the Ghosts and an A.I. that controls Pac-Man. About to add Path finding for the Ghosts and an A.I. that controls Pac-Man.
blebblob

View File

@ -1,35 +1,17 @@
################################## ###############################0###
# # 0 # # # ##
# # ############################ # # # ############### ###############
# # ############################ # # # # ## ### #####
# # ############################ # # # # ########## ### ##### #####
# # ############################ # # # # ################# ##### #####
# # ############################ # # # # # #### #####
# # ############################ # # # # # #################### ######
# # ############################ # # # # # # P####### ######
# # ############################ # # # # # # ################## ######
# # ############################ # # # # # # # ######## ######
# # ############################ # # # # # # # ####### ## ##
# # ############################ # # # # # # # ############# ###### ##
# # ############################ # # # # # # ############# ## ##
# # ############################ # # # # # ##################### ## ##
# # P 123 # # # #################### ##
################################## ############################123####
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
#
##

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,13 +1,11 @@
// Hauptdatei
// Programmiert von Lenz Wiechers im Jahre 2020
/// Hauptdatei
// In dieser Datei wird das Spiel erstellt // In dieser Datei wird das Spiel erstellt
// Muss ausgeführt werden zum Starten // Muss ausgeführt werden zum Starten
public class Main { public class Main {
@SuppressWarnings("unused") // Die "unused" - Warnungen werden in dieser Datei nicht mehr angezeigt @SuppressWarnings("unused") // Die "unused" - Warnungen werden in dieser Datei nicht mehr angezeigt
public static void main(String[] args) { public static void main(String[] args) {
System.setProperty("sun.java2d.opengl", "true"); System.setProperty("sun.java2d.opengl", "true");

Binary file not shown.

View File

@ -27,7 +27,6 @@ public class Map {
public void mapping() { public void mapping() {
try { try {
reader = new BufferedReader(new FileReader("assets/map.txt")); // Einlesen der .txt Datei reader = new BufferedReader(new FileReader("assets/map.txt")); // Einlesen der .txt Datei
for (int i = 0; i < 35; i++) { // für die ersten 35 Zeilen der Datei: for (int i = 0; i < 35; i++) { // für die ersten 35 Zeilen der Datei:

Binary file not shown.

View File

@ -7,7 +7,7 @@ import javax.swing.ImageIcon;
import javax.swing.JLabel; import javax.swing.JLabel;
import javax.swing.JOptionPane; import javax.swing.JOptionPane;
// Diese Klasse ist die Grundlagee zum Render von Elementen auf dem Frame, anhand der Javax Swing Bibliothek // Diese Klasse ist die Grundlage zum Rendern von Elementen auf dem Frame, anhand der Javax Swing Bibliothek
public class Picture extends JLabel { // Die übergeordnete Klasse ist JLabel public class Picture extends JLabel { // Die übergeordnete Klasse ist JLabel

Binary file not shown.