1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3    file                 : texmapper.xml
4    created              : Sun Nov 19 16:19:48 CET 2000
5    copyright            : (C) 2000 by Eric Espie
6    email                : torcs@free.fr
7    version              : $Id: texmapper.xml,v 1.2 2002/11/16 07:20:36 torcs Exp $
8-->
9
10<!--    This program is free software; you can redistribute it and/or modify  -->
11<!--    it under the terms of the GNU General Public License as published by  -->
12<!--    the Free Software Foundation; either version 2 of the License, or     -->
13<!--    (at your option) any later version.                                   -->
14
15<!DOCTYPE params SYSTEM "../../../torcs/src/libs/tgf/params.dtd">
16
17<params name="mapper" type="template">
18
19  <section name="image">
20    <attnum name="size" val="1024"/>
21  </section>
22
23  <section name="faces">
24
25    <section name="raw 0"> <!-- raw name is whatever you want provided it is unique -->
26      <attnum name="height" val="0"/> <!-- automatic height -->
27
28      <section name="col">
29
30	<section name="col 0">
31	  <attstr name="face name" val=""/> <!-- Mandatory to have at least one attr -->
32	</section>
33
34	<section name="col 1">
35	  <attstr name="face name" val="right"/>
36	  <attnum name="width" val="0"/> <!-- automatic width -->
37	  <attstr name="align" in="X,Y,Z" val="X"/>
38	</section>
39
40      </section>
41
42    </section>
43
44    <section name="raw 1">
45      <section name="col">
46
47	<section name="col 0">
48	  <attstr name="face name" val="rear"/>
49	  <attnum val="90" name="rotX"/>
50	  <attnum val="90" name="rotY"/>
51	</section>
52
53	<section name="col 1">
54	  <attstr name="face name" val="top"/>
55	  <attstr name="align" val="X"/>
56	  <attnum val="90" name="rotX"/>
57	</section>
58
59	<section name="col 2">
60	  <attstr name="face name" val="front"/>
61	  <attnum val="90" name="rotX"/>
62	  <attnum val="-90" name="rotY"/>
63	</section>
64
65      </section>
66    </section>
67
68    <section name="raw 2">
69      <section name="col">
70
71	<section name="col 0">
72	  <attstr name="face name" val=""/> <!-- Mandatory to have at least one attr -->
73	</section>
74
75	<section name="col 1">
76	  <attstr name="face name" val="left"/>
77	  <attstr name="align" val="X"/>
78	  <attnum val="180" name="rotX"/>
79	</section>
80
81      </section>
82    </section>
83
84    <section name="raw 3">
85      <section name="col">
86
87	<section name="col 0">
88	  <attstr name="face name" val=""/> <!-- Mandatory to have at least one attr -->
89	</section>
90
91	<section name="col 1">
92	  <attstr name="face name" val="bottom"/>
93	  <attstr name="align" val="X"/>
94	  <attnum val="-90" name="rotX"/>
95	</section>
96
97      </section>
98    </section>
99
100
101  </section>
102
103</params>
104
105
106