This wiki is archived and useful information is being migrated to the main bzflag.org website

Difference between revisions of "World units"

From BZFlagWiki
Jump to: navigation, search
(Calculating jump height: update)
 
(6 intermediate revisions by 5 users not shown)
Line 24: Line 24:
 
|width="10%"|18.42
 
|width="10%"|18.42
 
|-  
 
|-  
|Doable jump height
+
|Common jump height
 
|See below
 
|See below
 
|17.0
 
|17.0
Line 30: Line 30:
 
|Tank length
 
|Tank length
 
|_tankLength
 
|_tankLength
|8.04
+
|6.0
 
|-
 
|-
 
|Tank width
 
|Tank width
Line 52: Line 52:
  
 
== Calculating jump height ==
 
== Calculating jump height ==
Jump height is determined by the gravity and jump velocity settings on the server (see [[Server Variables]] for details).  Note that the jump velocity and gravity may be altered by flags including [[Flag List|Low Gravity]] and [[Flag List|Wings]].
+
Jump height is determined by the gravity and jump velocity settings on the server (see [[Server Variables]] for details).  Note that the jump velocity and gravity may be altered by flags like [http://bzflag.org/documentation/flags Wings].
  
 
:Max jump height = -(_jumpVelocity)<sup>2</sup> / (2 * (_gravity))
 
:Max jump height = -(_jumpVelocity)<sup>2</sup> / (2 * (_gravity))
  
 
A typical BZFlag player can reliably jump a bit more than 90% of the maximum jump height.
 
A typical BZFlag player can reliably jump a bit more than 90% of the maximum jump height.
 +
 +
==See also==
 +
* [[Comparison of map objects]]
 +
* [[Map making]]
 +
* [[Map FAQ]]
  
 
[[Category:Map Making]]
 
[[Category:Map Making]]
 
[[Category:Concepts]]
 
[[Category:Concepts]]

Latest revision as of 18:57, 13 March 2017

A world unit is the basic unit of measure when dealing with BZFlag. World units have no real-world counterpart, as they are a purely virtual concept, but they can be though of to be equivalent to about 1 meter in length if you assume a roughly real world sized tank.

All coordinates in the map file are specified in World Units. Many Server Variables are specified in terms of world units or world units per second as well.

Origin[edit]

The origin for the World coordinate system is the center of the map.

Orientation[edit]

World Units are oriented in a normal right hand rule coordinate system with positive Z being the "UP" direction.

North[edit]

"north" on the in game radar is the positive Y direction in map coordinates.

Figure 1[edit]

This image shows a typical map, with the origin and axis directions clearly marked out. MapCoordinateSystem.png

Some useful measures at default settings[edit]

Jump height limit (next to impossible) See below 18.42
Common jump height See below 17.0
Tank length _tankLength 6.0
Tank width _tankWidth 2.8
Tank height _tankHeight 2.05
Barrel height _muzzleHeight 1.57
Drivable bump height _bumpHeight 0.33

Calculating jump height[edit]

Jump height is determined by the gravity and jump velocity settings on the server (see Server Variables for details). Note that the jump velocity and gravity may be altered by flags like Wings.

Max jump height = -(_jumpVelocity)2 / (2 * (_gravity))

A typical BZFlag player can reliably jump a bit more than 90% of the maximum jump height.

See also[edit]