-
Updated
Apr 12, 2021 - JavaScript
simulation
Here are 6,598 public repositories matching this topic...
-
Updated
May 7, 2021 - C++
-
Updated
May 7, 2021 - Rust
From #610, Michael's idea to teach how to navigate with the minimap, and also reinforce the use of layers:
The point of the minimap is that you can navigate relatively long distances quickly, while staying zoomed in. So, we need to observe something in detail (zoomed in), over a vast area.
Could we do some kind of "Where's Wally?"
And maybe Wally only likes to hang out at certain elevat
Version of OpenTTD
9c5a7d3a572d02813e6bab83004334b9a154a62b
Expected result
The function IConsoleError
behaves exactly the same as using IConsolePrintF(CC_ERROR, "ERROR: %s", string);
, but is shorter and more concise.
https://github.com/OpenTTD/OpenTTD/blob/9c5a7d3a572d02813e6bab83004334b9a154a62b/src/console.cpp#L168-L171
Therefore, IConsoleError(string)
should in general be
-
Updated
Feb 6, 2021 - JavaScript
-
Updated
May 5, 2021 - C++
-
Updated
May 4, 2021
-
Updated
Mar 15, 2019 - Jupyter Notebook
Maybe, the Python documentation would be more readable by utilizing the Python typing. For example, instead of:
from controller import Node
class Node:
def getId(self):
def getDef(self):
def getParentNode(self):
def isProto(self):
def getFromProtoDef(self, name):
we could write
from contro
Don't bunde the data
What's the problem this feature will solve?
I am currently working on a project using mesa. Great framework! The problem is that I use ContinuousSpace, and want to visualise it. Is this something you are working on?
-
Updated
Feb 17, 2021
-
Updated
Mar 11, 2021 - Python
-
Updated
Apr 9, 2021 - Python
-
Updated
Apr 27, 2021
The wiki is very outdated and there is missing information. What I mean is that we should create a more user friendly wiki, with descriptions of every building, game element... Maybe we should add also pictures of the buildings or animations. I don't know, but we must do something to improve it. What do you think?
How can I get access to http://wiki.unknown-horizons.org/w/Main_Page? I would lik
-
Updated
Feb 16, 2021 - C++
-
Updated
May 7, 2021 - Java
-
Updated
May 9, 2021 - C++
having two edges of equal lane count (and length, maxSpeed) randomTrips has currently no way of deciding which to prefer. Usually you would expect more traffic on the higher prioritized road. The problem is to find a good factor here.
-
Updated
Apr 12, 2021 - C++
-
Updated
May 8, 2021 - C++
just to avoid problems some people may have if they haven't ran the format check script before updating localizations.
-
Updated
May 7, 2021 - C
-
Updated
Apr 1, 2019 - Python
-
Updated
May 4, 2021 - Python
Improve this page
Add a description, image, and links to the simulation topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the simulation topic, visit your repo's landing page and select "manage topics."
We currently use a macro for writing down a money amount as a literal. We should move to a more modern C++ representation with a user defined literal like the below:
Go through the codebase and replace all MONEY macro uses with the equivalent version. You m