| CARVIEW |
TORCS: Bindings to the TORCS vehicle simulator.
A library for building autonomous vehicles that run in the TORCS simulator. This requires the following external dependencies:
torcs 1.3.4 (https://prdownloads.sourceforge.net/torcs/torcs-1.3.4.tar.bz2?download)
scr-server 2.1 (https://sourceforge.net/projects/cig/files/SCR%20Championship/Server%20Linux/)
Not that scr-server will only work with 1.3.4, until that is updated you must use exactly torcs 1.3.4. Complete install instructions here https://arxiv.org/abs/1304.1672
On Ubunutu 16.04, you may need to comment out line 70 in src/modules/simu/simuv2/simu.cpp in order for TORCS to compile.
A guide script for install is available at https://github.com/santolucito/Haskell-TORCS/blob/master/installTORCS.sh
[Skip to Readme]
Downloads
- TORCS-0.1.0.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
| Versions [RSS] | 0.1.0, 0.1.0.1, 0.1.0.2 |
|---|---|
| Change log | ChangeLog.md |
| Dependencies | base (>=4.9 && <4.11), bytestring (>=0.10 && <0.11), containers (>=0.5.7.1), directory, lens, monad-loops, monad-parallel (>=0.7.2.2), MonadRandom, network (>=2.6 && <2.7), process (>=1.4), random, random-shuffle, time (>=1.6 && <1.7), TORCS, Yampa (>=0.10 && <0.11) [details] |
| License | LicenseRef-GPL |
| Author | Mark Santolucito |
| Maintainer | mark.santolucito@yale.edu |
| Uploaded | by MarkSantolucito at 2018-02-14T19:49:09Z |
| Category | Simulation, FRP, Bindings |
| Source repo | head: git clone git://github.com/santolucito/Haskell-TORCS.git |
| Distributions | |
| Executables | Simple |
| Downloads | 2007 total (12 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs uploaded by user Build status unknown [no reports yet] |
Readme for TORCS-0.1.0.2
[back to package description]# Haskell Binding to TORCS
requires
- torcs 1.3.4 (https://prdownloads.sourceforge.net/torcs/torcs-1.3.4.tar.bz2?download)
- scr-server 2.1 (https://sourceforge.net/projects/cig/files/SCR%20Championship/Server%20Linux/)
scr-server will only work with 1.3.4, until that is updated you must use exactly torcs 1.3.4
Complete install instructions here https://arxiv.org/abs/1304.1672
on Ubunutu 16.04, you may need to comment out line 70 in src/modules/simu/simuv2/simu.cpp
## Usage
To install, go to the top level directory, and run 'cabal install'.
You only need to do 'cabal install' the first time, or whenever you change the cabal file.
Later on, just 'cabal repl' is fine.
See the examples folder for how to program a controller.
You can load up the examples and run them with 'cabal repl' on the top directory.
This will load TORCS.hs, which loads a few examples that can be connected to TORCS.
As an example, first open TORCS to a quick race and set the player to src_server1.
Then on the command line run:
$> cabal repl
ghci> :l Examples/Simple.hs
ghci> main
### Using machine learning with TORCS
Race Mode : Practice
Configure Race -> Last page of options, switch 'display' from 'normal' to 'results only'
### TODO
- write controller for basic platoon
- build and ship to hackage