File size: 5,105 Bytes
b6a38d7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
DefineClass.CollectionAnimator = {
__parents = { "Object", "EditorEntityObject", "EditorObject" },
--entity = "WayPoint",
editor_entity = "WayPoint",
properties = {
{ name = "Rotate Speed", id = "rotate_speed", category = "Animator", editor = "number", default = 0, scale = 100, help = "Revolutions per minute" },
{ name = "Oscillate Offset", id = "oscillate_offset", category = "Animator", editor = "point", default = point30, scale = "m", help = "Map offset acceleration movement up and down (in meters)" },
{ name = "Oscillate Cycle", id = "oscillate_cycle", category = "Animator", editor = "number", default = 0, help = "Full cycle time in milliseconds" },
{ name = "Locked Orientation", id = "LockedOrientation", category = "Animator", editor = "bool", default = false },
},
animated_obj = false,
rotation_thread = false,
move_thread = false,
}
DefineClass.CollectionAnimatorObj = {
__parents = { "Object", "ComponentAttach" },
flags = { cofComponentInterpolation = true, efWalkable = false, efApplyToGrids = false, efCollision = false },
properties = {
-- exclude properties to not copy them
{ id = "Pos" },
{ id = "Angle" },
{ id = "Axis" },
{ id = "Walkable" },
{ id = "ApplyToGrids" },
{ id = "Collision" },
{ id = "OnCollisionWithCamera" },
{ id = "CollectionIndex" },
{ id = "CollectionName" },
},
}
function CollectionAnimator:GameInit()
self:StartAnimate()
end
function CollectionAnimator:Done()
self:StopAnimate()
end
function CollectionAnimator:StartAnimate()
if self.animated_obj then
return -- already started
end
if not self:AttachObjects() then
return
end
-- rotation
if not self.rotation_thread and self.rotate_speed ~= 0 then
self.rotation_thread = CreateGameTimeThread(function()
local obj = self.animated_obj
obj:SetAxis(self:RotateAxis(0,0,4096))
local a = 162*60*(self.rotate_speed < 0 and -1 or 1)
local t = 27000 * 100 / abs(self.rotate_speed)
while true do
obj:SetAngle(obj:GetAngle() + a, t)
Sleep(t)
end
end)
end
-- movement
if not self.move_thread and self.oscillate_cycle >= 100 and self.oscillate_offset:Len() > 0 then
self.move_thread = CreateGameTimeThread(function()
local obj = self.animated_obj
local pos = self:GetVisualPos()
local vec = self.oscillate_offset
local t = self.oscillate_cycle/4
local acc = self:GetAccelerationAndStartSpeed(pos+vec, 0, t)
while true do
obj:SetAcceleration(acc)
obj:SetPos(pos+vec, t)
Sleep(t)
obj:SetAcceleration(-acc)
obj:SetPos(pos, t)
Sleep(t)
obj:SetAcceleration(acc)
obj:SetPos(pos-vec, t)
Sleep(t)
obj:SetAcceleration(-acc)
obj:SetPos(pos, t)
Sleep(t)
end
end)
end
end
function CollectionAnimator:StopAnimate()
DeleteThread(self.rotation_thread)
self.rotation_thread = nil
DeleteThread(self.move_thread)
self.move_thread = nil
self:RestoreObjects()
end
function CollectionAnimator:AttachObjects()
local col = self:GetCollection()
if not col then
return false
end
SuspendPassEdits("CollectionAnimator")
local obj = PlaceObject("CollectionAnimatorObj")
self.animated_obj = obj
local pos = self:GetPos()
local max_offset = 0
MapForEach (col.Index, false, "map", "attached", false, function(o)
if o == self then return end
local o_pos, o_axis, o_angle = o:GetVisualPos(), o:GetAxis(), o:GetAngle()
local o_offset = o_pos - pos
--if o:IsKindOf("ComponentAttach") then
o:DetachFromMap()
o:SetAngle(0) -- fixes a problem when attaching
obj:Attach(o)
--else
-- local clone = PlaceObject("CollectionAnimatorObj")
-- clone:ChangeEntity(o:GetEntity())
-- clone:CopyProperties(o)
--end
o:SetAttachAxis(o_axis)
o:SetAttachAngle(o_angle)
o:SetAttachOffset(o_offset)
max_offset = Max(max_offset, o_offset:Len())
end)
if max_offset > 20*guim then
obj:SetGameFlags(const.gofAlwaysRenderable)
end
if self.LockedOrientation then
obj:SetHierarchyGameFlags(const.gofLockedOrientation)
end
obj:ClearHierarchyEnumFlags(const.efWalkable + const.efApplyToGrids + const.efCollision)
obj:SetPos(pos)
ResumePassEdits("CollectionAnimator")
return true
end
function CollectionAnimator:RestoreObjects()
local obj = self.animated_obj
if not obj then
return
end
SuspendPassEdits("CollectionAnimator")
self.animated_obj = nil
obj:SetPos(self:GetPos())
obj:SetAxis(axis_z)
obj:SetAngle(0)
for i = obj:GetNumAttaches(), 1, -1 do
local o = obj:GetAttach(i)
local o_pos, o_axis, o_angle = o:GetAttachOffset(), o:GetAttachAxis(), o:GetAttachAngle()
o:Detach()
o:SetPos(o:GetPos() + o_pos)
o:SetAxis(o_axis)
o:SetAngle(o_angle)
o:ClearGameFlags(const.gofLockedOrientation)
end
DoneObject(obj)
ResumePassEdits("CollectionAnimator")
end
function CollectionAnimator:EditorEnter()
self:StopAnimate()
end
function CollectionAnimator:EditorExit()
self:StartAnimate()
end
function OnMsg.PreSaveMap()
MapForEach("map", "CollectionAnimator", function(obj) obj:StopAnimate() end)
end
function OnMsg.PostSaveMap()
MapForEach("map", "CollectionAnimator", function(obj) obj:StartAnimate() end)
end
|