I am having a problem importing rotational data contained in a text file into 3dsMax with the following script. The text file contains time (in frames), position and rotational information in the form of t,x,y,z,rx,ry,rz. The position is importing correctly. The rotation begins correctly, the tires begin to rotate. However, it seems that when the ry value crosses 90 or 270 degrees the tire flips axis?
The script is below. I'm very confused why 3dsMax isn't reading this script correctly. Any ideas?
-- A Script For Importing Simulated Vehicle Translation and Rotational Data into 3D Studio MAX
--
-- This script attaches simulated vehicle data contained in a text file
-- to a user-selected object in 3D Studio MAX.
utility motion "Import Motion Data"
(
pickbutton op "Pick Object" width:140
button fl "Pick Motion Data " width:140 enabled:false
local applyObj
local motionPath
on op picked obj do
(
applyObj = obj
fl.enabled = true
)
on fl pressed do
(
local ValArray = #()
local strStore = "" as string
-- choose a file and open it
motionPath = (getOpenFileName "Choose Motion Data File") as string
files = openFile motionPath
-- do until we hit the end of the file
while (eof files==false) do
(
-- read in a line from the file
local Search = (readline files) as string
for x=1 to Search.count do
(
o = Search[x] as string
-- if we hit a break... store the completed string
if o==" " do
(
append ValArray strStore
strStore = ""
o = ""
)
strStore += o as string
)
-- add that last string
append ValArray strStore
-- cast our values to relevent types
local t = (ValArray[1] as integer) as time
local x = ValArray[2] as float
local y = ValArray[3] as float
local z = ValArray[4] as float
local rx = ValArray[5] as float
local ry = ValArray[6] as float
local rz = ValArray[7] as float
-- set the object position and orientation
animate on, at time (t)
(
applyObj.position = [x*12,y*12,z*12]
applyObj.rotation.x_rotation = rx
applyObj.rotation.y_rotation = ry
applyObj.rotation.z_rotation = rz
)
-- print the result
format "Frame: %, Position: [%,%,%]\n" t x y z
-- nullify the worker variables
ValArray=#()
strStore = "" as string
)
max tool zoomextents all
)
)