diff --git a/__pycache__/agent.cpython-310.pyc b/__pycache__/agent.cpython-310.pyc index a04bc5b..93ab86d 100644 Binary files a/__pycache__/agent.cpython-310.pyc and b/__pycache__/agent.cpython-310.pyc differ diff --git a/__pycache__/astar.cpython-310.pyc b/__pycache__/astar.cpython-310.pyc index 7110827..0d8cf07 100644 Binary files a/__pycache__/astar.cpython-310.pyc and b/__pycache__/astar.cpython-310.pyc differ diff --git a/__pycache__/mobs.cpython-310.pyc b/__pycache__/mobs.cpython-310.pyc index fe46d72..8c4d775 100644 Binary files a/__pycache__/mobs.cpython-310.pyc and b/__pycache__/mobs.cpython-310.pyc differ diff --git a/__pycache__/nn.cpython-310.pyc b/__pycache__/nn.cpython-310.pyc index ae981ea..8026956 100644 Binary files a/__pycache__/nn.cpython-310.pyc and b/__pycache__/nn.cpython-310.pyc differ diff --git a/mobs.py b/mobs.py index 334b71b..d9b6def 100644 --- a/mobs.py +++ b/mobs.py @@ -14,7 +14,7 @@ class Archer_ork(pygame.sprite.Sprite): self.width = TILE_SIZE self.height = TILE_SIZE - self.image_path = "./pozostale_zdjecia/ork_lucznik.png" + self.image_path = "./zdjecia/ORK_ARCHER/ork_lucznik.png" self.ARCHER_ORK_IMG = pygame.image.load(self.image_path) self.ARCHER_ORK = pygame.transform.scale(self.ARCHER_ORK_IMG,(64,64)) @@ -43,7 +43,7 @@ class Infantry_ork(pygame.sprite.Sprite): self.width = TILE_SIZE self.height = TILE_SIZE - self.image_path = "./pozostale_zdjecia/ork-piechota.png" + self.image_path = "./zdjecia/ORK_MELEE/ork-piechota.png" self.INFANTRY_ORK_IMG = pygame.image.load(self.image_path) self.INFANTRY_ORK = pygame.transform.scale(self.INFANTRY_ORK_IMG,(64,64)) @@ -73,7 +73,7 @@ class Sauron(pygame.sprite.Sprite): self.width = TILE_SIZE self.height = TILE_SIZE - self.image_path = "./pozostale_zdjecia/sauron.png" + self.image_path = "./zdjecia/SAURON/sauron.png" self.SAURON_IMG = pygame.image.load(self.image_path) self.SAURON = pygame.transform.scale(self.SAURON_IMG,(64,64)) diff --git a/nn.py b/nn.py index b27deb6..eab4fbd 100644 --- a/nn.py +++ b/nn.py @@ -93,7 +93,7 @@ class NeuralN: tf.keras.layers.Softmax()]) #image_path = image - image_path = pathlib.Path('zdjecia\ORK_ARCHER\ork_archer (942).jpg') + image_path = pathlib.Path('zdjecia\ORK_ARCHER\ork_lucznik.png') image = Image.open(image_path) # Preprocess the image diff --git a/pozostale_zdjecia/ork-piechota2.png b/pozostale_zdjecia/ork-piechota2.png deleted file mode 100644 index d9d7a20..0000000 Binary files a/pozostale_zdjecia/ork-piechota2.png and /dev/null differ diff --git a/zdjecia/ORK_ARCHER/ork_archer (145).jpg b/zdjecia/ORK_ARCHER/ork_archer (145).jpg deleted file mode 100644 index fdff265..0000000 Binary files a/zdjecia/ORK_ARCHER/ork_archer (145).jpg and /dev/null differ diff --git a/zdjecia/ORK_ARCHER/ork_archer (146).jpg b/zdjecia/ORK_ARCHER/ork_archer (146).jpg deleted file mode 100644 index 3fbf714..0000000 Binary files a/zdjecia/ORK_ARCHER/ork_archer (146).jpg and /dev/null differ diff --git a/zdjecia/ORK_ARCHER/ork_archer (147).jpg b/zdjecia/ORK_ARCHER/ork_archer (147).jpg deleted file mode 100644 index 878e8d1..0000000 Binary files a/zdjecia/ORK_ARCHER/ork_archer (147).jpg and /dev/null differ diff --git a/zdjecia/ORK_ARCHER/ork_lucznik.png b/zdjecia/ORK_ARCHER/ork_lucznik.png new file mode 100644 index 0000000..f7fdb03 Binary files /dev/null and b/zdjecia/ORK_ARCHER/ork_lucznik.png differ diff --git a/zdjecia/ORK_MELEE/ork-piechota.png b/zdjecia/ORK_MELEE/ork-piechota.png new file mode 100644 index 0000000..bdc971e Binary files /dev/null and b/zdjecia/ORK_MELEE/ork-piechota.png differ diff --git a/zdjecia/SAURON/sauron.png b/zdjecia/SAURON/sauron.png new file mode 100644 index 0000000..bfa1e3c Binary files /dev/null and b/zdjecia/SAURON/sauron.png differ