#include <xsi_application.h>
#include <xsi_factory.h> // Factory
#include <xsi_context.h>
#include <xsi_pluginregistrar.h>
#include <xsi_status.h>
#include <xsi_argument.h>
#include <xsi_command.h>
#include <xsi_menu.h>
#include <xsi_customproperty.h> // CustomProperty
#include <xsi_selection.h> // Selection
#include <xsi_parameter.h> // Parameter
#include <xsi_ppglayout.h> // PPGLayout
#include <xsi_ppgeventcontext.h> // PPGEventContext
using
namespace
XSI;
static
Application app;
static
Factory factory = app.GetFactory();
static
CustomProperty prop(factory.CreateObject(L
"CustomProperty"
));
XSIPLUGINCALLBACK CStatus XSILoadPlugin( PluginRegistrar& in_reg )
{
in_reg.PutAuthor(L
"xxxx"
);
in_reg.PutName(L
"UpdatedOpPlugin"
);
in_reg.PutEmail(L
""
);
in_reg.PutURL(L
""
);
in_reg.PutVersion(1,0);
in_reg.RegisterCommand(L
"UpdatedOp"
,L
"UpdatedOp"
);
in_reg.RegisterProperty(L
"UpdatedOpProp"
);
in_reg.RegisterMenu(siMenuTbGetPropertyID,L
"UpdatedOp_Menu"
,
false
,
false
);
return
CStatus::OK;
}
XSIPLUGINCALLBACK CStatus XSIUnloadPlugin(
const
PluginRegistrar& in_reg )
{
CString strPluginName;
strPluginName = in_reg.GetName();
Application().LogMessage(strPluginName + L
" has been unloaded."
,siVerboseMsg);
return
CStatus::OK;
}
XSIPLUGINCALLBACK CStatus UpdatedOp_Init( CRef& in_ctxt )
{
app.LogMessage(L
"on called for UpdatedOp_Init"
);
Context ctxt( in_ctxt );
Command oCmd;
oCmd = ctxt.GetSource();
oCmd.PutDescription(L
""
);
oCmd.EnableReturnValue(
true
);
return
CStatus::OK;
}
XSIPLUGINCALLBACK CStatus UpdatedOpProp_Define(
const
CRef &in_ctxt) {
Context ctxt( in_ctxt );
Parameter oParam;
prop = ctxt.GetSource();
prop.AddParameter(L
"numCount"
, CValue::siInt2, siPersistable | siAnimatable, L
""
, L
""
, 0, oParam);
return
CStatus::OK;
}
XSIPLUGINCALLBACK CStatus UpdatedOpProp_DefineLayout(
const
CRef &in_ctxt) {
Context ctxt( in_ctxt );
PPGLayout oLayout;
PPGItem item;
oLayout = ctxt.GetSource();
oLayout.Clear();
oLayout.AddGroup(L
"General"
);
item = oLayout.AddItem(L
"numCount"
, L
"Count"
, siControlNumber);
oLayout.EndGroup();
oLayout.AddButton(L
"btn_OK"
, L
"Done"
);
return
CStatus::OK;
}
XSIPLUGINCALLBACK CStatus UpdatedOp_Execute( CRef& in_ctxt )
{
Context ctxt( in_ctxt );
CValueArray args = ctxt.GetAttribute(L
"Arguments"
);
Application().LogMessage(L
"UpdatedOp_Execute called"
,siVerboseMsg);
prop.PutName(L
"Update Op"
);
Selection oSel = app.GetSelection().GetItem(0);
app.LogMessage(oSel.GetAsText(), XSI::siInfoMsg);
Parameter oParam;
Parameter txtParam;
Parameter btnParam;
prop.AddParameter(L
"Instance"
, CValue::siString, siReadOnly | siPersistable, L
""
, L
""
, L
"Instance Here"
, txtParam);
prop.AddParameter(L
"Count"
, CValue::siInt2, siAnimatable | siPersistable | siKeyable, L
""
, L
""
, 0, oParam);
prop.AddParameter(L
"Position"
, CValue::siInt1, siPersistable, L
""
, L
""
, 0, btnParam);
PPGLayout oLayout = prop.GetPPGLayout();
oLayout.Clear();
oLayout.AddGroup(L
"Update Content"
);
oLayout.AddItem(L
"Instance"
, L
"Target"
);
oLayout.AddItem(L
"Count"
, 0);
oLayout.EndGroup();
CValueArray radio(6);
radio[0] = L
"Left"
; radio[1] = 0;
radio[2] = L
"Center"
; radio[3] = 1;
radio[4] = L
"Right"
; radio[5] = 2;
oLayout.AddGroup(L
"Position"
);
oLayout.AddEnumControl(L
"Position"
, radio, L
"Change"
, siControlRadio);
oLayout.EndGroup();
oLayout.AddButton(L
"done"
, L
""
);
CValueArray wParam(5);
wParam[0] = prop;
wParam[1] = L
"Update Op"
;
wParam[2] = (
LONG
)siModal;
wParam[3] =
false
;
CValue ret;
app.ExecuteCommand(L
"InspectObj"
, wParam, ret);
ctxt.PutAttribute( L
"ReturnValue"
,
true
);
return
CStatus::OK;
}
XSIPLUGINCALLBACK CStatus UpdatedOpProp_PPGEvent(
const
CRef &in_ctxt) {
PPGEventContext ctxt(in_ctxt);
PPGEventContext::PPGEvent eventID = ctxt.GetEventID();
switch
(eventID) {
case
(PPGEventContext::siOnInit):
{
app.LogMessage(L
"OnInit called for "
+ prop.GetFullName());
}
break
;
case
(PPGEventContext::siButtonClicked):
{
CValue btnPressed = ctxt.GetAttribute(L
"Button"
);
app.LogMessage(L
"Button Pressed: "
+ btnPressed.GetAsText());
}
break
;
case
(PPGEventContext::siTabChange):
break
;
case
(PPGEventContext::siParameterChange):
{
Parameter param = ctxt.GetSource();
CString name = param.GetScriptName();
app.LogMessage(L
"Parameter Changed: "
+ name);
}
break
;
case
(PPGEventContext::siOnClosed):
{
app.LogMessage(L
"OnClosed called for "
+ prop.GetFullName());
}
break
;
}
return
CStatus::OK;
}
XSIPLUGINCALLBACK CStatus UpdatedOp_Menu_Init( CRef& in_ctxt )
{
Context ctxt( in_ctxt );
Menu oMenu;
oMenu = ctxt.GetSource();
MenuItem oNewItem;
CStatus st = oMenu.AddCallbackItem(L
"UpdatedOp Sample"
, L
"OnUpdatedOpPropClicked"
, oNewItem);
return
st;
}
XSIPLUGINCALLBACK CStatus OnUpdatedOpPropClicked(
const
CRef &) {
Application app;
CValueArray addpropArgs(5) ;
addpropArgs[0] = L
"UpdatedOpProp"
;
addpropArgs[3] = L
"UpdatedOpProp"
;
if
( app.GetSelection().GetCount() == 0 )
{
addpropArgs[1] = L
"Scene_Root"
;
}
CValue retVal ;
CStatus st = app.ExecuteCommand( L
"SIAddProp"
, addpropArgs, retVal ) ;
if
( st.Succeeded() )
{
CValueArray resultArray( (CValueArray&)addpropArgs[4] );
CValueArray inspectobjArgs(5) ;
inspectobjArgs[0] = resultArray[0] ;
app.ExecuteCommand( L
"InspectObj"
, inspectobjArgs, retVal ) ;
}
return
st ;
}
</xsi_ppgeventcontext.h></xsi_ppglayout.h></xsi_parameter.h></xsi_selection.h></xsi_customproperty.h></xsi_menu.h></xsi_command.h></xsi_argument.h></xsi_status.h></xsi_pluginregistrar.h></xsi_context.h></xsi_factory.h></xsi_application.h>