Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add randomTile(LevelElement elementType) method to Game class #1668

Closed

Conversation

tgrothe
Copy link
Contributor

@tgrothe tgrothe commented Jan 4, 2025

Fixes #1625

Add a new method randomTile(LevelElement elementType) to the Game class.

  • Game.java

    • Add a new method randomTile(LevelElement elementType) that calls currentLevel().randomTile(elementType).
    • Update the Javadoc for the new method to explain its purpose.
  • GameTest.java

    • Add a new test method to verify the functionality of Game.randomTile(LevelElement elementType).

For more details, open the Copilot Workspace session.

Fixes Dungeon-CampusMinden#1625

Add a new method `randomTile(LevelElement elementType)` to the `Game` class.

* **Game.java**
  - Add a new method `randomTile(LevelElement elementType)` that calls `currentLevel().randomTile(elementType)`.
  - Update the Javadoc for the new method to explain its purpose.

* **GameTest.java**
  - Add a new test method to verify the functionality of `Game.randomTile(LevelElement elementType)`.

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/Dungeon-CampusMinden/Dungeon/issues/1625?shareId=XXXX-XXXX-XXXX-XXXX).
@tgrothe tgrothe requested a review from cagix as a code owner January 4, 2025 07:40
@tgrothe
Copy link
Contributor Author

tgrothe commented Jan 4, 2025

Sorry, nicht gesehen, die Methode randomTile(LevelElement elementType) gibt es in der Game-Klasse bereits.

Die anderen Methoden, die an currentLevel().methodAbc() delegieren, gibt es in der Game-Klasse ebenfalls.

Die im Issue beschriebene Abstraktion bzw. Funktionalität ist also aus meiner Sicht schon vorhanden.

Aus meiner Sicht könnte dieser Pull-Request geschlossen werden und das Issue auch.

Nebenbei ist mir aber aufgefallen:

Die Toolchain in der build.gradle:

        toolchain {
            languageVersion = JavaLanguageVersion.of(21)
        }

erfordert genau JDK Version 21, d. h. es könnte nicht mit einer zum Beispiel JDK Version 23 compiliert werden.

Copy link
Member

@cagix cagix left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aus meiner Sicht könnte dieser Pull-Request geschlossen werden und das Issue auch.

ja (pr) und nein (issue).

es geht darum, den code aufzuräumen, nicht nur einfach noch eine schnittstelle anzubieten.

@cagix cagix closed this Jan 4, 2025
@tgrothe
Copy link
Contributor Author

tgrothe commented Jan 4, 2025

es geht darum, den code aufzuräumen, nicht nur einfach noch eine schnittstelle anzubieten.

Danke, das war für mich aus dem Issue noch nicht ersichtlich gewesen.

@tgrothe tgrothe deleted the add-random-tile-method branch January 4, 2025 15:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Dungeon-API: Ersetze "Game.currentLevel().xyz()" durch "Game.xyz()"
2 participants