Skip to content

Commit cd8aac2

Browse files
Update README.md
1 parent 103b01b commit cd8aac2

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,36 @@ Interactive classroom tools where students can simulate ecological systems or en
4040
### 4. AI Training Environments
4141
Use Viron to define spatial challenges or resource collection problems in reinforcement learning projects.
4242

43+
### 5. Tic Tac Toe
44+
Use Viron to model a 3×3 environment where each player places an "X" or "O" on the grid. Track turns, detect win conditions, and enforce valid moves.
45+
46+
### 6. Chess
47+
Represent the 8×8 board as a Viron environment. Each piece is an entity with movement logic handled externally. Viron tracks positions, captures, and board state.
48+
49+
### 7. Checkers
50+
Use a grid-based environment to model diagonal movement and jumping. Viron can track entity state changes (like promotion) and valid move paths.
51+
52+
### 8. Block Breaker (Breakout)
53+
Model the paddle, ball, and blocks within a 2D grid. Viron tracks positions, collisions, and block removal as entities are hit.
54+
55+
### 9. Pong
56+
Represent the playing field, paddles, and ball in a 2D space. Viron manages movement updates, collisions, and scorekeeping.
57+
58+
### 10. Snake
59+
Use Viron to track the snake's body segments and apple placement. Manage movement direction, growth, and self-collision logic.
60+
61+
### 11. Turn-Based Tactics Game
62+
Simulate a battlefield grid with units as entities. Viron manages movement, attack range visibility, and terrain occupancy.
63+
64+
### 12. Conway’s Game of Life
65+
Each cell is alive or dead and changes state based on neighbors. Viron can model the entire board and apply the update rules in steps.
66+
67+
### 13. Pathfinding Visualizations
68+
Use Viron to define a navigable grid with start and goal positions. Track algorithm progress (A*, Dijkstra, etc.) in real time through environment updates.
69+
70+
### 14. City Simulation
71+
Simulate a city with roads, zones, and agents (e.g., people, vehicles). Viron provides structure for tracking locations and interactions between entities.
72+
4373
---
4474

4575
## Installation

0 commit comments

Comments
 (0)