Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

)
)
share|improve this question
Where does the data come from? What is the rotation axis order? Can you provide some sample data? If problems occur at angles like that you're probably having gimble issues. Where 2 rotation axis are aligned to each other and funky things start to happen. Max has z-up while most software has y up. Just some random thoughts. – JHN Oct 3 '12 at 7:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.