Class TCastleAbstractRootTransform
Unit
Declaration
type TCastleAbstractRootTransform = class(TCastleTransform)
Description
Root of transformations and scenes (tree of TCastleTransform and TCastleScene). This is the base abstract class, the non-abstract descendant is TCastleRootTransform.
Hierarchy
- TObject
- TPersistent
- TComponent
- TCastleComponent
- TCastleTransform
- TCastleAbstractRootTransform
Overview
Fields
OnCursorChange: TNotifyEvent; |
|
InternalVisibleStateId: TFrameId; |
|
InternalVisibleGeometryStateId: TFrameId; |
|
InternalVisibleNonGeometryStateId: TFrameId; |
Methods
function IgnoreTransparentItem( const Sender: TObject; const Triangle: PTriangle): Boolean; virtual; abstract; |
|
constructor Create(AOwner: TComponent); override; |
|
destructor Destroy; override; |
|
procedure Update(const SecondsPassed: Single; var RemoveMe: TRemoveType); override; |
|
function GravityCoordinate: Integer; |
|
function GravityUp: TVector3; |
|
function WorldMoveAllowed( const OldPos, ProposedNewPos: TVector3; out NewPos: TVector3; const IsRadius: boolean; const Radius: Single; const OldBox, NewBox: TBox3D; const BecauseOfGravity: boolean): boolean; overload; |
|
function WorldMoveAllowed( const OldPos, NewPos: TVector3; const IsRadius: boolean; const Radius: Single; const OldBox, NewBox: TBox3D; const BecauseOfGravity: boolean): boolean; overload; |
|
function WorldHeight(const APosition: TVector3; out AboveHeight: Single; out AboveGround: PTriangle): boolean; |
|
function WorldLineOfSight(const Pos1, Pos2: TVector3): boolean; |
|
function WorldRay(const RayOrigin, RayDirection: TVector3): TRayCollision; |
|
function WorldRayCast(const RayOrigin, RayDirection: TVector3; out Distance: Single): TCastleTransform; overload; |
|
function WorldRayCast(const RayOrigin, RayDirection: TVector3): TCastleTransform; overload; |
|
function WorldBoxCollision(const Box: TBox3D): boolean; |
|
function WorldSegmentCollision(const Pos1, Pos2: TVector3): boolean; |
|
function WorldSphereCollision(const Pos: TVector3; const Radius: Single): boolean; |
|
function WorldSphereCollision2D(const Pos: TVector2; const Radius: Single; const Details: TCollisionDetails = nil): boolean; |
|
function WorldPointCollision2D(const Point: TVector2): boolean; |
|
procedure ClearExceptCameras; |
Properties
property EnablePhysics: boolean read FEnablePhysics write FEnablePhysics
default true; |
|
property MoveLimit: TBox3D read FMoveLimit write FMoveLimit; |
|
property MainCamera: TCastleCamera read FMainCamera write SetMainCamera; |
|
property PhysicsProperties: TPhysicsProperties read FPhysicsProperties; |
|
property TimeScale: Single read FTimeScale write FTimeScale default 1; |
|
property Paused: boolean read FPaused write SetPaused default false; |
Description
Fields
OnCursorChange: TNotifyEvent; |
|
InternalVisibleStateId: TFrameId; |
|
Latest frame when VisibleChangeNotification was called (with any params, even empty). |
InternalVisibleGeometryStateId: TFrameId; |
|
Latest frame when VisibleChangeNotification was called (with vcVisibleGeometry). |
InternalVisibleNonGeometryStateId: TFrameId; |
|
Latest frame when VisibleChangeNotification was called (with vcVisibleNonGeometry). |
Methods
function IgnoreTransparentItem( const Sender: TObject; const Triangle: PTriangle): Boolean; virtual; abstract; |
|
Ignore (return This is suitable for TTriangleIgnoreFunc function, you can pass this to RayCollision and such. |
constructor Create(AOwner: TComponent); override; |
|
destructor Destroy; override; |
|
procedure Update(const SecondsPassed: Single; var RemoveMe: TRemoveType); override; |
|
function GravityCoordinate: Integer; |
|
The major axis of gravity vector: 0, 1 or 2. This is trivially derived from the known camera GravityUp value. It can only truly express GravityUp vector values (1,0,0) or (0,1,0) or (0,0,1), although in practice this is enough for normal games (normal 3D scenes use up either +Y or +Z). We try to avoid using it in the engine, and use full GravityUp vector wherever possible. Full GravityUp vector may allow for more fun with weird gravity in future games. |
function GravityUp: TVector3; |
|
function WorldMoveAllowed( const OldPos, ProposedNewPos: TVector3; out NewPos: TVector3; const IsRadius: boolean; const Radius: Single; const OldBox, NewBox: TBox3D; const BecauseOfGravity: boolean): boolean; overload; |
|
Is the move from OldPos to ProposedNewPos possible. Returns true and sets NewPos if some move is allowed, thus allows for wall-sliding. This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal If your query originates from some existing TCastleTransform instance, you should prefer to instead use TCastleTransform.MoveAllowed method, that automatically prevents "collisions with yourself". See also
|
function WorldMoveAllowed( const OldPos, NewPos: TVector3; const IsRadius: boolean; const Radius: Single; const OldBox, NewBox: TBox3D; const BecauseOfGravity: boolean): boolean; overload; |
|
Is the move from OldPos to NewPos possible. This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal If your query originates from some existing TCastleTransform instance, you should prefer to instead use TCastleTransform.MoveAllowed method, that automatically prevents "collisions with yourself". See also
|
function WorldHeight(const APosition: TVector3; out AboveHeight: Single; out AboveGround: PTriangle): boolean; |
|
Get height of point APosition above the world. Looks at current MainCamera to know the gravity direction. This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal If your query originates from some existing TCastleTransform instance, you should prefer to instead use TCastleTransform.MoveAllowed method, that automatically prevents "collisions with yourself". |
function WorldLineOfSight(const Pos1, Pos2: TVector3): boolean; |
|
Check that the line segment between 2 points that not collide with anything (that has opaque material). This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal |
function WorldRay(const RayOrigin, RayDirection: TVector3): TRayCollision; |
|
What is hit by this ray. This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal |
function WorldRayCast(const RayOrigin, RayDirection: TVector3; out Distance: Single): TCastleTransform; overload; |
|
What is hit by this ray. Returns the TCastleTransform that is hit (this is the "leaf" TCastleTransform in the TCastleTransform tree that is hit) and a distance from RayOrigin to the hit point. Returns |
function WorldRayCast(const RayOrigin, RayDirection: TVector3): TCastleTransform; overload; |
|
function WorldBoxCollision(const Box: TBox3D): boolean; |
|
Check whether something collides with axis-aligned box in 3D. This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal |
function WorldSegmentCollision(const Pos1, Pos2: TVector3): boolean; |
|
Check whether something collides with a line segment. This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal |
function WorldSphereCollision(const Pos: TVector3; const Radius: Single): boolean; |
|
Check whether something collides with a sphere. This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal |
function WorldSphereCollision2D(const Pos: TVector2; const Radius: Single; const Details: TCollisionDetails = nil): boolean; |
|
Check whether something collides with a sphere in 2D (a circle, extruded to infinity along the Z axis). This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal |
function WorldPointCollision2D(const Point: TVector2): boolean; |
|
Check whether something collides with a point in 2D (which is an infinite line along the Z axis in 3D). This checks collisions with world (everything inside this TCastleAbstractRootTransform). This checks collision with all objects that have Collides and Exists equal |
procedure ClearExceptCameras; |
|
Remove all items except TCastleCamera instances. This only avoids removing TCastleCamera instances that are direct children of this TCastleAbstractRootTransform, the TCastleCamera instances that are deeper (e.g. TCastleCamera inside some TCastleTransform) will still be removed. |
Properties
property MoveLimit: TBox3D read FMoveLimit write FMoveLimit; |
|
Limit the movement allowed by WorldMoveAllowed. Ignored when empty (default). This property allows to easily limit the possible places where player and creatures go. Player is honoring this if it uses WorldMoveAllowed, in particular our TCastleWalkNavigation navigation honors it. Creatures honor it if they use WorldMoveAllowed for their decision. |
property MainCamera: TCastleCamera read FMainCamera write SetMainCamera; |
|
Central camera, that controls the features that require a single "main" camera (features that do not make sense with multiple cameras from multiple viewports). This camera controls:
Note that it means that "headlight" done by TCastleRootTransform.UseHeadlight is assigned to one camera in case of multiple viewports looking at the same world. You cannot have a different "headlight" in each viewport, this would cause subtle problems since it's not how it would work in reality (where every light is visible in all viewports), e.g. mirror textures (like GeneratedCubeMapTexture) would need different contents in different viewpoints. Note that we no longer advise using TCastleRootTransform.UseHeadlight for headlight. It's easier to just place light as child of whatever camera you want, like adding TCastleDirectionalLight as child of TCastleCamera. See examples/viewport_and_scenes/headlight/ . In this case Note that features like LOD or Billboard or ProximitySensor need to transform this camera to scene local space. Which is not possible if the same scene instance is used multiple times (e.g. under many different TCastleTransform parents). If you need to use these features of TCastleScene, then simply do not use the same scene reference multiple times (instead clone the scene by TCastleScene.Clone). By default this is set to TCastleViewport.Camera of the TCastleViewport that created this TCastleAbstractRootTransform instance. And if something changes the TCastleViewport.Camera of that viewport, then this |
property PhysicsProperties: TPhysicsProperties read FPhysicsProperties; |
|
Adjust physics properties. |
property TimeScale: Single read FTimeScale write FTimeScale default 1; |
|
Time scale used when not Paused. |
property Paused: boolean read FPaused write SetPaused default false; |
|
Pausing means that no events (key, mouse, update) are processed. So time doesn't move, and input is not processed. Navigation also doesn't work (this part is implemented by TCastleViewport and each TCastleNavigation). This is useful if you want to unconditionally make your world temporary still (for example, useful when entering some modal dialog box and you want the world to behave as a still background). See also: For other pausing methods, there are other methods of pausing / disabling some events processing for the world:
|
Generated by PasDoc 0.16.0.