Skip to content

Commit

Permalink
Added README with Result Demonstration.gif and others section.
Browse files Browse the repository at this point in the history
  • Loading branch information
dotpep committed Jan 28, 2024
1 parent 4c3c10e commit 81e3856
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 11 deletions.
1 change: 1 addition & 0 deletions PaintDrying/ConsoleUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public static void QuitConsole()
WriteLine("(Press any key to exit.)");
ReadKey(true);
Environment.Exit(0);
Clear();
}
//public static void ExitToGivenScene(Scene scene)
//{
Expand Down
20 changes: 10 additions & 10 deletions PaintDrying/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ static void Main(string[] args)
{
Title = "Paint Drying";
CursorVisible = false;
//try
//{
// WindowWidth = 130;
// WindowHeight = 35;
//}
//catch
//{
// WriteLine("Cannot create a big enough console window.");
// ConsoleUtils.WaitForKeyPress();
//}
try
{
WindowWidth = 100;
WindowHeight = 35;
}
catch
{
WriteLine("Cannot create a big enough console window.");
ConsoleUtils.WaitForKeyPress();
}

Game myGame = new Game();
myGame.Start();
Expand Down
49 changes: 48 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,48 @@
# Fancy Drying
# Paint Drying

Simple cli adventure-game that shows example of implementation State Patterns for game Scenes System using C#.

## Demonstration

![Paint Drying](demo_paint-drying.gif)

## Release

- current: Version 1.0 Released.

### Install Game .exe

- noting added.

### How to play?

> Just use Keyboard in CLI and Enjoy Adventure.
- <kbd>Enter</kbd> to choose options.
- <kbd>Arrow Up</kbd> to iteracts with Menu System.
- <kbd>Arrow Down</kbd> to iteracts with Menu System.

### Features

- Game Menu Keyboard Controller System
- Paint Text in Tablet
- Paint Wall of Room
- Take Flashlights to enter the Garage
- Take Paint Color in Garage

### What's next

> There is some list of idea
## TODO

> Feel free to contribute you're Ideas and Implemantations.
- [ ] .exe Realese on GitHub
- [ ] write Install README Section
- [ ] replace Garage and Room ASCII-Arts
- [ ] rewrite some text in game

## Reference

- [Mikewesthad](https://www.youtube.com/@mikewesthad)
Binary file added demo_paint-drying.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 81e3856

Please sign in to comment.