Skip to content

Commit

Permalink
minor update: fixing small bug, adding animations, ignoring rider files
Browse files Browse the repository at this point in the history
  • Loading branch information
merschformann committed Aug 28, 2020
1 parent c94e69c commit 0c217e3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ packages/*
*.psess
*.vsp
*.orig
.vs/*
.vs/*
.idea/
Binary file added Material/Wiki/rawsim-o-2d.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Material/Wiki/rawsim-o-3d.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion RAWSimO.Visualization/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ void MainWindow_KeyDown(object sender, KeyEventArgs e)
case Key.NumPad3: SetSpeed(200); break;
case Key.D4:
case Key.NumPad4: SetSpeed(400); break;
case Key.Space: if (!_paused && _instance != null) PauseSimulation(); else StartSimulation(); break;
case Key.Space: if (!_paused && _instance != null && _renderer != null) PauseSimulation(); else StartSimulation(); break;
case Key.PageUp: FocusTierAbove(); break;
case Key.PageDown: FocusTierBelow(); break;
default: break;
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
RAWSim-O is a discrete event-based simulation for Robotic Mobile Fulfillment Systems. The intention of the simulation framework is to provide a tool for researching effects of multiple decision problems that occur when running such a system. For this, the framework enables easy extensibility for implementing new decision methods for the different decision problems.
Copyright (C) 2017 Marius Merschformann

## First impressions

2D view in action:

![Larger instance](Material/Wiki/rawsim-o-2d.gif)

3D view in action:

![Larger instance](Material/Wiki/rawsim-o-3d.gif)

## Quick start

Open RAWSimO.sln with Visual Studio and select RAWSimO.Visualization as the project to execute. Under the "Instances" tab press the checkmark button to generate a default instance. Then go to the "Base Controls" tab and press the play button. Depending on the instance size and simulation settings instance generation and simulation initialization may take longer. You should see a first simulation running now.
Expand Down

0 comments on commit 0c217e3

Please sign in to comment.