forked from fmirus/torcs-1.3.7
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40c5ebe
commit d0148e7
Showing
21 changed files
with
2,922 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,9 @@ | |
# | ||
# file : Makefile | ||
# created : Sat Mar 18 23:08:21 CET 2000 | ||
# copyright : (C) 2000 by Eric Espie | ||
# email : [email protected] | ||
# version : $Id: Makefile,v 1.4 2002/06/30 14:11:14 torcs Exp $ | ||
# copyright : (C) 2000 by Eric Espie | ||
# email : [email protected] | ||
# version : $Id: Makefile,v 1.4 2002/06/30 14:11:14 torcs Exp $ | ||
# | ||
############################################################################## | ||
# | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
############################################################################## | ||
# | ||
# file : Makefile | ||
# created : Do 2. Nov 08:49:38 CET 2017 | ||
# copyright : (C) 2002 Jonas Natzer, Michael Heinrich | ||
# | ||
############################################################################## | ||
# | ||
# This program is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
############################################################################## | ||
|
||
ROBOT = test_bot | ||
MODULE = ${ROBOT}.so | ||
MODULEDIR = drivers/${ROBOT} | ||
SOURCES = ${ROBOT}.cpp optimal_line.cpp Trajectory.cpp TrackData.cpp | ||
|
||
SHIPDIR = drivers/${ROBOT} | ||
SHIP = ${ROBOT}.xml 155-DTM.rgb logo.rgb | ||
SHIPSUBDIRS = | ||
|
||
PKGSUBDIRS = ${SHIPSUBDIRS} | ||
src-robots-test_bot_PKGFILES = $(shell find * -maxdepth 0 -type f -print) | ||
src-robots-test_bot_PKGDIR = ${PACKAGE}-${VERSION}/$(subst ${TORCS_BASE},,$(shell pwd)) | ||
|
||
include ${MAKE_DEFAULT} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
// -*- Mode: c++ -*- | ||
// copyright (c) 2006 by Christos Dimitrakakis <[email protected]> | ||
/*************************************************************************** | ||
* * | ||
* This program is free software; you can redistribute it and/or modify * | ||
* it under the terms of the GNU General Public License as published by * | ||
* the Free Software Foundation; either version 2 of the License, or * | ||
* (at your option) any later version. * | ||
* * | ||
***************************************************************************/ | ||
#include "TrackData.h" | ||
#include <tgf.h> | ||
|
||
TrackData::TrackData() | ||
{ | ||
mid.x = mid.y = mid.z = 0.0f; | ||
width_l = width_r = 10.0; | ||
angle = 0.0; | ||
step = 5.0; | ||
} | ||
|
||
void TrackData::setWidth(float width) | ||
{ | ||
width_l = width_r = width / 2.0f; | ||
assert(width_r > -width_l); | ||
} | ||
|
||
void TrackData::setLeftWidth(float width) | ||
{ | ||
width_l = width; | ||
assert(width_r > -width_l); | ||
} | ||
|
||
void TrackData::setRightWidth(float width) | ||
{ | ||
width_r = width; | ||
assert(width_r > -width_l); | ||
} | ||
|
||
void TrackData::setStep(float step) | ||
{ | ||
assert(step > 0.0f); | ||
this->step = step; | ||
} | ||
|
||
void TrackData::AddStraight(SegmentList& segments, float length, float end_width_l, float end_width_r) | ||
{ | ||
int N = 1 + (int) floor(length / step); | ||
float s = length / (float) N; | ||
float d_width_l = (end_width_l - width_l) / (float) N; | ||
float d_width_r = (end_width_r - width_r) / (float) N; | ||
float hpi = PI / 2.0f; | ||
for (int i = 0; i < N; ++i) | ||
{ | ||
mid.x += s * sin(angle); | ||
mid.y += s * cos(angle); | ||
Point left(mid.x + width_l * sin(angle - hpi), | ||
mid.y + width_l * cos(angle - hpi), | ||
mid.z); | ||
Point right(mid.x + width_r * sin(angle + hpi), | ||
mid.y + width_r * cos(angle + hpi), | ||
mid.z); | ||
segments.Add(Segment(left, right)); | ||
width_l += d_width_l; | ||
width_r += d_width_r; | ||
} | ||
|
||
width_l = end_width_l; | ||
width_r = end_width_r; | ||
} | ||
|
||
/// arc in radians | ||
|
||
void TrackData::AddCurve(SegmentList& segments, float arc, float radius, float end_width_l, float end_width_r) | ||
{ | ||
arc = arc * PI / 180.0f; | ||
float length = fabs(arc) * radius; | ||
int N = 1 + (int) floor(length / step); | ||
float s = length / (float) N; | ||
float d_width_l = (end_width_l - width_l) / (float) N; | ||
float d_width_r = (end_width_r - width_r) / (float) N; | ||
float d_angle = arc / (float) N; | ||
float start_angle = angle; | ||
float hpi = (float) (PI / 2.0); | ||
for (int i = 0; i < N; ++i) | ||
{ | ||
mid.x += s * sin(angle); | ||
mid.y += s * cos(angle); | ||
Point left(mid.x + width_l * sin(angle - hpi), | ||
mid.y + width_l * cos(angle - hpi), | ||
mid.z); | ||
Point right(mid.x + width_r * sin(angle + hpi), | ||
mid.y + width_r * cos(angle + hpi), | ||
mid.z); | ||
segments.Add(Segment(left, right)); | ||
angle += d_angle; | ||
width_l += d_width_l; | ||
width_r += d_width_r; | ||
} | ||
width_l = end_width_l; | ||
width_r = end_width_r; | ||
angle = start_angle + arc; | ||
} |
Oops, something went wrong.