/* ----------------------------------------------------------------------------- This source file is part of OpenSpace3D For the latest info, see http://www.openspace3d.com Copyright (c) 2012 I-maginer This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA, or go to http://www.gnu.org/copyleft/lesser.txt ----------------------------------------------------------------------------- */ /*----------------------- Callbacks ------------------------*/ /* On close plugIT window */ fun cbCloseEdit(p)= let p -> [ctrlobjname ctrllocal ctrlDataType] in let getSelectedEdCtrlSelectPos ctrlDataType -> dataType in let getEdCtrlTextLineValue ctrlobjname -> objname in let getEdCtrlCheckState ctrllocal -> local in ["object" objname]:: ["local" itoa local]:: ["dataType" itoa dataType]:: nil;; fun cbSelectObj(val, type, p)= let p -> [inst winstr viewstr ctrlobjname] in let V3DgetDefaultSession viewstr -> sessionstr in let SO3SceneGetObject (V3DgetSession sessionstr) val -> obj in if (obj != nil) || (!strcmpi "Current camera" val) || (!strcmpi "Current camera shell" val) then ( setEdCtrlTextLineValue ctrlobjname val; ) else nil; 0;; fun cbCloseRes(ctrlbtn)= setEdCtrlButtonEnable ctrlbtn 1; 0;; fun cbBtnPickObj(ctrlbtn, p)= let p -> [inst winstr viewstr ctrlobjname objname] in ( setEdCtrlButtonEnable ctrlbtn 0; dlgSelectPluginInstanceResource inst winstr iTypeGroup|iTypeEntity|iTypeNode|iTypeLight|iTypeCamera|iTypeParticle|iTypeBone|iTypeCubeMap objname mkfun3 @cbSelectObj [inst winstr viewstr ctrlobjname] mkfun1 @cbCloseRes ctrlbtn 0; ); 0;; fun cbRefreshBtn(pickbtn, p)= let p -> [ctrlobjname] in setEdCtrlTextLineValue ctrlobjname ""; 0;; /*---------------- Create plugIT interface -----------------*/ fun dynamicedit(ewinstr, inst, viewstr, applybtn)= let [420 120] -> [iw ih] in let 10 -> ypos in ( // Define window size setEdWindowSize ewinstr iw ih; // Get parameters values let (getPluginInstanceParam inst "object") -> objname in let atoi (getPluginInstanceParam inst "local") -> local in let if (local == nil) then 1 else local -> local in let atoi(getPluginInstanceParam inst "dataType") -> dataType in let if dataType == nil then 1 else dataType -> dataType in // Create components let crEdFrameWindow _channel ewinstr 0 0 iw 105 EDWIN_RESIZE_MW nil (loc "OS3DFUSION_0008") (loc "OS3DFUSION_0006") -> winfrm in let crEdWindow _channel winfrm 0 18 iw 85 WN_CHILDINSIDE|WN_NOBORDER EDWIN_RESIZE_MW nil nil -> winstr in let crEdCtrlLabel winstr 10 ((set ypos = 10) + 2) 160 20 (loc "OS3DFUSION_0007") nil -> labelobj in let crEdCtrlTextLine winstr 180 ypos 140 20 objname nil EDWIN_RESIZE_MW -> ctrlobjname in let crEdCtrlButton winstr 325 ypos 55 20 "..." nil -> pickbtn in let crEdCtrlButton winstr 385 ypos 35 20 "X" nil -> refreshobjname in let crEdCtrlCheck winstr 10 (set ypos = ypos + 25) 160 20 (loc "OS3DFUSION_0009") EDWIN_RESIZE_MW -> ctrllocal in let crEdCtrlLabel winstr 10 ((set ypos = ypos + 25) + 2) 160 20 (loc "OS3DFUSION_0005") nil -> labelData in let crEdCtrlSelect winstr 180 ypos (iw - 190) 120 CB_AHSCROLL -> ctrlDataType in ( // Init mesh control setEdCtrlButtonCb pickbtn mkfun2 @cbBtnPickObj [inst winstr viewstr ctrlobjname objname]; setEdCtrlTextLineEnable ctrlobjname 0; setEdCtrlCheckState ctrllocal local; setEdCtrlButtonCb refreshobjname mkfun2 @cbRefreshBtn [ctrlobjname]; // Add available modes for SpacePoint Fusion fillEdCtrlSelect ctrlDataType "Raw"::"Orientation"::nil; selectEdCtrlSelectByPos ctrlDataType dataType; [mkfun1 @cbCloseEdit [ctrlobjname ctrllocal ctrlDataType] nil]; ); );;