| | |
| | | no: 1, |
| | | position: [0, 0, 0], |
| | | theta: 0, |
| | | height: 100, |
| | | height: 0, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | |
| | | no: 1, |
| | | position: [100, 0, 0], |
| | | theta: 0, |
| | | height: 100, |
| | | height: 0, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | |
| | | no: 1, |
| | | position: [100, 0, 0], |
| | | theta: 270, |
| | | height: 100, |
| | | height: 0, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | |
| | | no: 1, |
| | | position: [100, 0, 200], |
| | | theta: 90, |
| | | height: 200, |
| | | height: 100, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | |
| | | no: 1, |
| | | position: [100, 0, 300], |
| | | theta: 90, |
| | | height: 300, |
| | | height: 150, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | |
| | | no: 1, |
| | | position: [100, 0, 400], |
| | | theta: 90, |
| | | height: 400, |
| | | height: 200, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | | hasBox: false |
| | | } |
| | | ], |
| | | [ |
| | | { |
| | | no: 1, |
| | | position: [100, 0, 400], |
| | | theta: 180, |
| | | height: 100, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | | hasBox: false |
| | | } |
| | | ], |
| | | [ |
| | | { |
| | | no: 1, |
| | | position: [100, 0, 400], |
| | | theta: 180, |
| | | height: 100, |
| | | loaderTheta: 180, |
| | | forkLength: 40, |
| | | trayList: [], |
| | | hasBox: false |
| | | } |
| | | ], |
| | | [ |
| | | { |
| | | no: 1, |
| | | position: [100, 0, 400], |
| | | theta: 180, |
| | | height: 100, |
| | | loaderTheta: 180, |
| | | forkLength: 40, |
| | | trayList: [], |
| | | hasBox: true |
| | | } |
| | | ], |
| | | [ |
| | | { |
| | | no: 1, |
| | | position: [100, 0, 400], |
| | | theta: 180, |
| | | height: 100, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | | hasBox: true |
| | | } |
| | | ], |
| | | [ |
| | | { |
| | | no: 1, |
| | | position: [100, 0, 400], |
| | | theta: 180, |
| | | height: 0, |
| | | loaderTheta: 180, |
| | | forkLength: 0, |
| | | trayList: [], |
| | | hasBox: true |
| | | } |
| | | ], |
| | | ] |
| | |
| | | import Box from './box'; |
| | | import * as Common from '../utils/common'; |
| | | import * as TWEEN from "@tweenjs/tween.js"; |
| | | import { INTERVAL_TIME } from '@/config/setting' |
| | | import { INTERVAL_TIME, MODEL_AGV_SCALE } from '@/config/setting' |
| | | |
| | | const Agv = (props) => { |
| | | const { position, theta, height, loaderTheta, forkLength, trayList, hasBox } = props; |
| | |
| | | const [groupPos, setGroupPos] = useState({ x: 0, y: 0, z: 0 }); |
| | | const [groupTheta, setGroupTheta] = useState(0); |
| | | const [loaderHeight, setLoaderHeight] = useState(0); |
| | | const [forkDis, setForkDis] = useState(0); |
| | | |
| | | useEffect(() => { |
| | | if (!props || Object.keys(props).length === 0) { |
| | |
| | | } |
| | | if (!Common.deepEqual(groupPos, pos)) { |
| | | new TWEEN.Tween(groupPos) |
| | | .to({ |
| | | x: position[0], |
| | | y: position[1], |
| | | z: position[2] |
| | | }, INTERVAL_TIME) |
| | | .to(pos, INTERVAL_TIME) |
| | | .easing(TWEEN.Easing.Linear.None) |
| | | .onUpdate((e) => { |
| | | setGroupPos({ ...e }); |
| | |
| | | }).start(); |
| | | } |
| | | |
| | | // fork lenght |
| | | if (forkDis !== forkLength) { |
| | | new TWEEN.Tween({ value: forkDis }) |
| | | .to({ value: forkLength }, INTERVAL_TIME) |
| | | .easing(TWEEN.Easing.Linear.None) |
| | | .onUpdate((e) => { |
| | | setForkDis(e.value) |
| | | }) |
| | | .onComplete((e) => { |
| | | setForkDis(e.value) |
| | | console.log(e.value); |
| | | }).start(); |
| | | } |
| | | |
| | | }, [props]); |
| | | |
| | | useFrame((state, delta) => { |
| | |
| | | if (!fbx.castShadow) { |
| | | Common.setShadow(fbx); |
| | | } |
| | | fbx.scale.set(MODEL_AGV_SCALE, MODEL_AGV_SCALE, MODEL_AGV_SCALE); |
| | | return fbx.clone(); |
| | | }, []) |
| | | |
| | |
| | | if (!fbx.castShadow) { |
| | | Common.setShadow(fbx); |
| | | } |
| | | fbx.scale.set(MODEL_AGV_SCALE, MODEL_AGV_SCALE, MODEL_AGV_SCALE); |
| | | return fbx.clone(); |
| | | }, []) |
| | | |
| | |
| | | if (!fbx.castShadow) { |
| | | Common.setShadow(fbx); |
| | | } |
| | | fbx.scale.set(MODEL_AGV_SCALE, MODEL_AGV_SCALE, MODEL_AGV_SCALE); |
| | | return fbx.clone(); |
| | | }, []) |
| | | |
| | |
| | | <> |
| | | <group |
| | | rotation-y={Common.rotationParseNum(groupTheta)} |
| | | scale={0.5} |
| | | position={[groupPos.x, groupPos.y, groupPos.z]} |
| | | > |
| | | <primitive object={bodyModel} castShadow /> |
| | | <group |
| | | position-y={loaderHeight} |
| | | > |
| | | <primitive object={loaderModel} castShadow position={[0, 50, 0]} /> |
| | | <primitive object={forkModel} castShadow position={[0, 61, 0]} /> |
| | | <Box position={[100, 100, 300]} /> |
| | | <group position-y={loaderHeight}> |
| | | <primitive object={loaderModel} castShadow position={[0, 30, 0]} /> |
| | | <group position-z={forkDis}> |
| | | <primitive object={forkModel} castShadow position={[0, 35, 0]} /> |
| | | {hasBox && <Box position={[0, 34, 0]} />} |
| | | </group> |
| | | </group> |
| | | </group> |
| | | </> |
| | |
| | | |
| | | export const DEBUG = false; |
| | | |
| | | export const INTERVAL_TIME = 1500; |
| | | export const INTERVAL_TIME = 500; |
| | | |
| | | export const MODEL_AGV_SCALE = .5; |