Compare commits

...

2 Commits

Author SHA1 Message Date
0e9ee64c18 JETZT NEU! 2025-12-15 12:14:07 +01:00
37060ed06e Bugfix: Race Condition behoben mit GameState (State Machine) 2025-12-01 13:02:48 +01:00
4 changed files with 93 additions and 313 deletions

View File

@ -27,19 +27,20 @@ target_include_directories(Prog3B PRIVATE
${CMAKE_CURRENT_LIST_DIR}/includes
${CMAKE_CURRENT_LIST_DIR}/raylib
)
target_link_libraries(${EXECUTABLE_NAME} PRIVATE
${CMAKE_CURRENT_LIST_DIR}/mac_x86/libgamematrix.a
raylib
#${CMAKE_CURRENT_LIST_DIR}/windows/libgamematrix.a
${CMAKE_CURRENT_LIST_DIR}/windows/libraylib.a
opengl32
gdi32
m
winmm
)
# Checks if OSX and links appropriate frameworks (Only required on MacOS)
if (APPLE)
target_link_libraries(Prog3B PRIVATE "-framework IOKit"
"-framework Cocoa"
"-framework OpenGL"
)
target_link_libraries(Prog3B "-framework IOKit")
target_link_libraries(Prog3B "-framework Cocoa")
target_link_libraries(Prog3B "-framework OpenGL")
endif()
add_executable(tests
@ -48,12 +49,15 @@ add_executable(tests
)
target_include_directories(tests PRIVATE ${INCLUDE_DIRS})
target_link_libraries(tests PRIVATE)
target_link_libraries(tests PRIVATE
opengl32
gdi32
winmm
)
#if (APPLE)
#target_link_libraries(Prog3B PRIVATE "-framework IOKit")
#target_link_libraries(Prog3B PRIVATE "-framework Cocoa")
#target_link_libraries(Prog3B PRIVATE "-framework OpenGL")
#endif()
if (APPLE)
target_link_libraries(Prog3B PRIVATE "-framework IOKit")
target_link_libraries(Prog3B PRIVATE "-framework Cocoa")
target_link_libraries(Prog3B PRIVATE "-framework OpenGL")
endif()

View File

@ -1,12 +1,5 @@
<<<<<<< HEAD
#include "gamecube.h"
=======
#include "raylib.h"
#include "gamecube.h"
#pragma once
>>>>>>> 5fc4346 (funktioniert, 3 oder 6 + Timer komplett)
gamecube::gamecube(const Vec3& pos, Color col)
: position(pos), color(col) {}
@ -46,18 +39,17 @@ void gamecube::Draw() const
{
rlPushMatrix();
// Matrizen für Rotation und Translation erzeugen
auto matrix_a = Matrix3D::gameMatrix::translate({ position.x, position.y, position.z});
auto matrix_a = Matrix3D::gameMatrix::translate(
{ position.x, position.y, position.z }
);
auto matrix_b = Matrix3D::gameMatrix::rot3D(rotation, 'y');
// Matrizen multiplizieren (Translation * Rotation)
auto model = Matrix3D::gameMatrix::matmul(matrix_a, matrix_b);
// transform for raylib matrix
float f[16];
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
f[j * 4 + i] = model[i][j];
rlMultMatrixf(f);
if (rotation < 90.0f)
@ -71,9 +63,4 @@ void gamecube::Draw() const
}
Vec3 gamecube::GetPosition() const { return position; }
<<<<<<< HEAD
float gamecube::GetRotationY() const { return rotation; }
=======
float gamecube::GetRotationY() const { return rotation; }
>>>>>>> 5fc4346 (funktioniert, 3 oder 6 + Timer komplett)

View File

@ -1,9 +1,4 @@
<<<<<<< HEAD
//
=======
//
>>>>>>> 5fc4346 (funktioniert, 3 oder 6 + Timer komplett)
// Created by bakee on 03.11.2025.
//
#include "gamematrix.h"
@ -42,9 +37,9 @@ namespace Matrix3D
{
Mat4 result = identity();
result[0][3] = pos[0]; // x
result[1][3] = pos[1]; // y
result[2][3] = pos[2]; // z
result[0][3] = pos[0];
result[1][3] = pos[1];
result[2][3] = pos[2];
return result;
}
@ -98,9 +93,4 @@ namespace Matrix3D
return { res_hom[0], res_hom[1], res_hom[2] };
}
<<<<<<< HEAD
}
=======
}
>>>>>>> 5fc4346 (funktioniert, 3 oder 6 + Timer komplett)

View File

@ -2,196 +2,56 @@
#include <algorithm>
#include <ctime>
#include <vector>
#include "raylib.h" // Stellen Sie sicher, dass raylib.h hier oder in gamecube.h inkludiert ist
// -----------------------------------------------------------
// 3D Memory Game Hauptprogramm
// -----------------------------------------------------------
#include "raylib.h"
enum GameScreen { MENU = 0, GAMEPLAY };
void SetupGame(std::vector<gamecube>& cubes, int pairs)
static void SetupGame(std::vector<gamecube>& cubes, int pairs)
{
cubes.clear();
Color colors[] = { RED, GREEN, BLUE, YELLOW, ORANGE, PURPLE, WHITE, SKYBLUE };
std::vector<Vec3> positions;
int count = pairs * 2;
const int count = pairs * 2;
int cols = 3;
int rows = 2;
if (count > 6) {
cols = 4;
rows = 3;
}
int index = 0;
// Generiert Positionen basierend auf der Größe
for (int r = 0; r < rows && index < count; ++r) {
for (int c = 0; c < cols && index < count; ++c) {
// Zentriert die Würfel um (0,0,0)
positions.push_back({ (float)c * 2.0f - (cols - 1), 0.0f, (float)r * 2.0f - (rows - 1) });
index++;
}
}
std::vector<Color> colorPool;
colorPool.reserve(count);
for (int i = 0; i < pairs; i++) {
colorPool.push_back(colors[i]);
colorPool.push_back(colors[i]);
}
// Fisher-Yates Shuffle
for (int i= colorPool.size() -1; i > 0; --i) {
for (int i = (int)colorPool.size() - 1; i > 0; --i) {
int j = rand() % (i + 1);
std::swap(colorPool[i], colorPool[j]);
}
// Würfel erstellen
for (int i = 0; i < count; i++)
for (int i = 0; i < count; i++) {
cubes.emplace_back(positions[i], colorPool[i]);
}
}
int main()
{
// Zufall initialisieren#include "gamecube.h"
//#include <algorithm>
//#include <ctime>
//
//// -----------------------------------------------------------
//// 3D Memory Game Hauptprogramm
//// -----------------------------------------------------------
//int main()
//{
// // Zufall initialisieren
// srand(time(NULL));
//
// // Fenster und Kamera
// InitWindow(800, 600, "3D Memory Game with Matrix3D Library");
// SetTargetFPS(60);
//
// Camera3D camera{};
// camera.position = {6.0f, 6.0f, 6.0f};
// camera.target = {0.0f, 0.0f, 0.0f};
// camera.up = {0.0f, 1.0f, 0.0f};
// camera.fovy = 45.0f;
// camera.projection = CAMERA_PERSPECTIVE;
//
// // Nur 3 Farben für 3 Paare
// Color colors[] = { RED, GREEN, BLUE };
//
// // 6 Karten-Positionen im 3x2 Raster
// std::vector<Vec3> positions = {{-2, 0, -2}, {0, 0, -2}, {2, 0, -2},{-2, 0, 0}, {0, 0, 0}, {2, 0, 0}};
//
// // Farben doppelt in einen Pool legen und mischen
// std::vector<Color> colorPool;
// for (int i = 0; i < 3; i++)
// {
// colorPool.push_back(colors[i]);
// colorPool.push_back(colors[i]);
// }
//
// // Fisher-Yates Shuffle mit rand()
// for (int i = colorPool.size() - 1; i > 0; --i)
// {
// int j = rand() % (i + 1); // Zufallsindex von 0 bis i
// std::swap(colorPool[i], colorPool[j]);
// }
//
// // Karten/Würfel erstellen
// std::vector<gamecube> cubes;
// for (int i = 0; i < 6; i++)
// cubes.emplace_back(positions[i], colorPool[i]);
//
// gamecube* first = nullptr;
// gamecube* second = nullptr;
// float flipSpeed = 5.0f; // Drehgeschwindigkeit
// bool gameWon = false;
//
// // -----------------------------------------------------------
// // Hauptspielschleife
// // -----------------------------------------------------------
// while (!WindowShouldClose())
// {
// // Klick-Erkennung
// if (!gameWon && IsMouseButtonPressed(MOUSE_LEFT_BUTTON))
// {
// Vector2 mouse = GetMousePosition();
//
// for (auto &c : cubes)
// {
// if (!c.IsFlipped() && !c.IsMatched())
// {
// Vector2 screenPos = GetWorldToScreen({c.GetPosition().x, c.GetPosition().y, c.GetPosition().z}, camera);
//
// if (fabs(mouse.x - screenPos.x) < 40 && fabs(mouse.y - screenPos.y) < 40)
// c.FlipForward();
// }
// }
// }
//
// // Animation aller Würfel
// for (auto &c : cubes)
// {
// c.Update(flipSpeed);
//
// // Sobald ein Würfel vollständig umgedreht ist → merken
// if (c.IsFlipped() && !c.IsMatched())
// {
// if (!first) first = &c;
// else if (!second && &c != first) second = &c;
// }
// }
//
// // Matching-Logik
// if (first && second)
// {
// Color col1 = first->GetColor();
// Color col2 = second->GetColor();
//
// if (col1.r == col2.r && col1.g == col2.g && col1.b == col2.b)
// {
// first->SetMatched(true);
// second->SetMatched(true);
// }
// else
// {
// first->FlipBackward();
// second->FlipBackward();
// }
//
// first = second = nullptr;
// }
//
// // Gewinnprüfung
// if (!gameWon)
// gameWon = std::all_of(cubes.begin(), cubes.end(), [](const gamecube &c){ return c.IsMatched(); });
//
// // -----------------------------------------------------------
// // Zeichnen
// // -----------------------------------------------------------
// BeginDrawing();
// ClearBackground(RAYWHITE);
// BeginMode3D(camera);
//
// for (auto &c : cubes)
// c.Draw();
//
// EndMode3D();
//
// if (gameWon)
// DrawText("Congrats! You found all pairs!", 150, 260, 30, DARKBLUE);
// else
// DrawText("Flip 2 cubes - find matching pairs!", 10, 10, 20, DARKGRAY);
//
// EndDrawing();
// }
//
// CloseWindow();
// return 0;
//}
srand(time(NULL));
srand((unsigned)time(NULL));
double startTime = 0.0;
double endTime = 0.0;
bool timerStarted = false;
@ -199,14 +59,12 @@ int main()
GameScreen currentScreen = MENU;
int selectedPairs = 3;
// 1. SPIELSPEZIFISCHE VARIABLEN HIER DEKLARIEREN (ohne Initialisierung)
std::vector<gamecube> cubes;
gamecube* first = nullptr;
gamecube* second = nullptr;
float flipSpeed = 5.0f; // Drehgeschwindigkeit
float flipSpeed = 5.0f;
bool gameWon = false;
// Fenster und Kamera
InitWindow(800, 600, "3D Memory Game with Matrix3D Library");
SetTargetFPS(60);
@ -217,60 +75,38 @@ int main()
camera.fovy = 45.0f;
camera.projection = CAMERA_PERSPECTIVE;
// -----------------------------------------------------------
// Hauptspielschleife
// -----------------------------------------------------------
while (!WindowShouldClose())
{
// -------------------------------------------------------
// UPDATE-LOGIK NACH ZUSTAND
// -------------------------------------------------------
switch (currentScreen)
{
case MENU:
{
// Menü-Abfrage: Auf Tastendruck warten
if (IsKeyPressed(KEY_THREE)) {
selectedPairs = 3; // 6 Würfel
selectedPairs = 3;
SetupGame(cubes, selectedPairs);
gameWon = false;
first = second = nullptr;
currentScreen = GAMEPLAY;
timerStarted = false; // Timer-Reset
} else if (IsKeyPressed(KEY_SIX)) {
selectedPairs = 6; // 12 Würfel
timerStarted = false;
}
else if (IsKeyPressed(KEY_SIX)) {
selectedPairs = 6;
SetupGame(cubes, selectedPairs);
gameWon = false;
first = second = nullptr;
currentScreen = GAMEPLAY;
timerStarted = false; // Timer-Reset
timerStarted = false;
}
break;
}
case GAMEPLAY:
{
// Timer starten
if (!timerStarted)
{
if (!timerStarted) {
startTime = GetTime();
timerStarted = true;
}
// Klick-Erkennung
<<<<<<< HEAD
if (!gameWon && IsMouseButtonPressed(MOUSE_LEFT_BUTTON))
{
Vector2 mouse = GetMousePosition();
for (auto &c : cubes)
{
if (!c.IsFlipped() && !c.IsMatched())
{
Vector2 screenPos = GetWorldToScreen({c.GetPosition().x, c.GetPosition().y, c.GetPosition().z}, camera);
if (fabs(mouse.x - screenPos.x) < 40 && fabs(mouse.y - screenPos.y) < 40)
c.FlipForward();
=======
// Klick-Erkennung (nur wenn noch nicht 2 ausgewählt sind)
if (!gameWon && IsMouseButtonPressed(MOUSE_LEFT_BUTTON) && (second == nullptr))
{
Vector2 mouse = GetMousePosition();
@ -283,19 +119,14 @@ int main()
{
if (c.IsMatched() || c.IsFlipped()) continue;
auto p = c.GetPosition();
BoundingBox box;
box.min = { p.x - 0.75f, p.y - 0.75f, p.z - 0.75f };
box.max = { p.x + 0.75f, p.y + 0.75f, p.z + 0.75f };
RayCollision col = GetRayCollisionBox(ray, box);
if (col.hit && col.distance < bestDist)
{
if (col.hit && col.distance < bestDist) {
bestDist = col.distance;
hitCube = &c;
}
@ -303,81 +134,55 @@ int main()
if (hitCube)
{
if (!first)
{
if (!first) {
first = hitCube;
first->FlipForward();
}
else if (hitCube != first)
{
else if (hitCube != first) {
second = hitCube;
second->FlipForward();
>>>>>>> 5fc4346 (funktioniert, 3 oder 6 + Timer komplett)
}
}
}
// Animation aller Würfel
for (auto &c : cubes)
{
for (auto& c : cubes) {
c.Update(flipSpeed);
<<<<<<< HEAD
if (c.IsFlipped() && !c.IsMatched())
{
if (!first) first = &c;
else if (!second && &c != first) second = &c;
}
}
// Matching-Logik
if (first && second)
=======
}
// Matching-Logik
// Matching-Logik: erst wenn beide vollständig umgedreht sind
if (first && second && first->IsFlipped() && second->IsFlipped())
>>>>>>> 5fc4346 (funktioniert, 3 oder 6 + Timer komplett)
{
Color col1 = first->GetColor();
Color col2 = second->GetColor();
if (col1.r == col2.r && col1.g == col2.g && col1.b == col2.b)
{
if (col1.r == col2.r && col1.g == col2.g && col1.b == col2.b) {
first->SetMatched(true);
second->SetMatched(true);
}
else
{
else {
first->FlipBackward();
second->FlipBackward();
}
<<<<<<< HEAD
first = second = nullptr;
=======
first = nullptr;
second = nullptr;
>>>>>>> 5fc4346 (funktioniert, 3 oder 6 + Timer komplett)
}
// Gewinnprüfung
if (!gameWon)
{
// Prüft, ob ALLE Würfel gematcht sind
gameWon = std::all_of(cubes.begin(), cubes.end(), [](const gamecube &c){ return c.IsMatched(); });
if (gameWon)
{
gameWon = std::all_of(
cubes.begin(),
cubes.end(),
[](const gamecube& c) { return c.IsMatched(); }
);
if (gameWon) {
endTime = GetTime() - startTime;
}
}
break;
} // ENDE GAMEPLAY UPDATE
}
}
// -----------------------------------------------------------
// ZEICHNEN NACH ZUSTAND
// -----------------------------------------------------------
BeginDrawing();
ClearBackground(RAYWHITE);
@ -385,8 +190,9 @@ int main()
{
case MENU:
{
// Menü-Darstellung
DrawText("3D MEMORY SPIEL", GetScreenWidth() / 2 - MeasureText("3D MEMORY SPIEL", 50) / 2, 80, 50, DARKGRAY);
DrawText("3D MEMORY SPIEL",
GetScreenWidth() / 2 - MeasureText("3D MEMORY SPIEL", 50) / 2,
80, 50, DARKGRAY);
DrawText("Waehlen Sie die Spielgroesse:", 50, 200, 25, BLACK);
DrawText("Druecken Sie [3] fuer 3 Paare (6 Wuerfel)", 50, 240, 20, BLUE);
DrawText("Druecken Sie [6] fuer 6 Paare (12 Wuerfel)", 50, 280, 20, BLUE);
@ -395,30 +201,23 @@ int main()
case GAMEPLAY:
{
// Spiel-Darstellung
BeginMode3D(camera);
for (auto &c : cubes)
c.Draw();
for (auto& c : cubes) c.Draw();
EndMode3D();
if (gameWon)
{
if (gameWon) {
DrawText("Congrats! You found all pairs!", 150, 260, 30, DARKBLUE);
char buffer[64];
sprintf(buffer, "Cleared in %.2f seconds", endTime);
DrawText(buffer, 150, 300, 28, DARKGREEN);
}
else
{
} else {
DrawText("Flip 2 cubes - find matching pairs!", 10, 10, 20, DARKGRAY);
char liveBuf[64];
sprintf(liveBuf, "Time: %.2f", GetTime() - startTime);
DrawText(liveBuf, 10, 40, 20, DARKGRAY);
}
break;
} // ENDE GAMEPLAY DRAW
}
}
EndDrawing();