TORCS  1.3.9
The Open Racing Car Simulator
tlm.h
Go to the documentation of this file.
1 /***************************************************************************
2 
3  file : tlm.h
4  created : Sun Mar 19 00:10:19 CET 2000
5  copyright : (C) 2000 by Eric Espie
6  email : torcs@free.fr
7  version : $Id$
8 
9  ***************************************************************************/
10 
11 /***************************************************************************
12  * *
13  * This program is free software; you can redistribute it and/or modify *
14  * it under the terms of the GNU General Public License as published by *
15  * the Free Software Foundation; either version 2 of the License, or *
16  * (at your option) any later version. *
17  * *
18  ***************************************************************************/
19 
20 #ifndef _TLM_H_
21 #define _TLM_H_
22 
23 extern void TlmInit(tdble ymin, tdble ymax);
24 extern void TlmNewChannel(const char *name, tdble *var, tdble min, tdble max);
25 extern void TlmStartMonitoring(const char *filename);
26 extern void TlmUpdate(double time);
27 extern void TlmStopMonitoring(void);
28 extern void TlmShutdown(void);
29 
30 #endif /* _TLM_H_ */
31 
32 
33 
static tdble ymax
Definition: track3.cpp:30
Scalar max(Scalar x, Scalar y)
Definition: Basic.h:50
void TlmInit(tdble ymin, tdble ymax)
Definition: telemetry.cpp:67
void TlmStopMonitoring(void)
Definition: telemetry.cpp:198
void TlmStartMonitoring(const char *filename)
Definition: telemetry.cpp:114
void TlmUpdate(double time)
Definition: telemetry.cpp:175
float tdble
Floating point type used in TORCS.
Definition: tgf.h:48
static tdble ymin
Definition: track3.cpp:30
Scalar min(Scalar x, Scalar y)
Definition: Basic.h:49
void TlmShutdown(void)
Definition: telemetry.cpp:229
void TlmNewChannel(const char *name, tdble *var, tdble min, tdble max)
Definition: telemetry.cpp:90