BCSAppDev

description: 寤虹瓚鎹㈣绯荤粺銆傚儚鎼Н鏈ㄤ竴鏍峰埗浣滀竴涓埧瀛? 鍦版澘銆佹ゼ灞傘€佺獥鎴枫€佹闈€佽楗扮瓑

Building Custimization System app for Paraworld

Title Building Custimization System app for Paraworld
Author(s) LiXizhi
Date 2008/2/14
File script/kids/3DMapSystemUI/BCS/app_main.lua

Description

building a house from components: floors, blocks, windows, doors, decos, props, etc. db registration insert script INSERT INTO apps VALUES (NULL, 'BCS_GUID', 'BCS', '1.0.0', 'http://www.paraengine.com/apps/BCS_v1.zip', 'YourCompany', 'enUS', 'script/kids/3DMapSystemUI/BCS/IP.xml', '', 'script/kids/3DMapSystemUI/BCS/app_main.lua', 'Map3DSystem.App.BCS.MSGProc', 1);

TIP Sample Code

NPL.load("(gl)script/kids/3DMapSystemUI/BCS/app_main.lua");

Member Functions

Map3DSystem.App.BCS.OnConnection

requires

create class commonlib.setfield("Map3DSystem.App.BCS", {});


event handlers

OnConnection method is the obvious point to place your UI (menus, mainbars, tool buttons) through which the user will communicate to the app. This method is also the place to put your validation code if you are licensing the add-in. You would normally do this before putting up the UI. If the user is not a valid user, you would not want to put the UI into the IDE.

  • param app : the object representing the current application in the IDE.
  • param connectMode : type of ConnectMode.

syntax

function Map3DSystem.App.BCS.OnConnection(app, connectMode)

parameters

app the object representing the current application in the IDE.
connectMode  

Map3DSystem.App.BCS.OnDisconnection

Receives notification that the Add-in is being unloaded.

syntax

function Map3DSystem.App.BCS.OnDisconnection(app, disconnectMode)

parameters

app  
disconnectMode  

Map3DSystem.App.BCS.OnQueryStatus

This is called when the command's availability is updated When the user clicks a command (menu or mainbar button), the QueryStatus event is fired. The QueryStatus event returns the current status of the specified named command, whether it is enabled, disabled, or hidden in the CommandStatus parameter, which is passed to the msg by reference (or returned in the event handler).

  • param commandName : The name of the command to determine state for. Usually in the string format "Category.SubCate.Name".
  • param statusWanted : what status of the command is queried. it is of type CommandStatusWanted
  • return __ : returns according to statusWanted. it may return an integer by adding values in CommandStatus.

syntax

function Map3DSystem.App.BCS.OnQueryStatus(app, commandName, statusWanted)

parameters

app  
commandName The name of the command to determine state for. Usually in the string format "Category.SubCate.Name".
statusWanted  
return returns according to statusWanted. it may return an integer by adding values in CommandStatus.

Map3DSystem.App.BCS.OnExec

This is called when the command is invoked.The Exec is fired after the QueryStatus event is fired, assuming that the return to the statusOption parameter of QueryStatus is supported and enabled. This is the event where you place the actual code for handling the response to the user click on the command.

  • param commandName : The name of the command to determine state for. Usually in the string format "Category.SubCate.Name".

syntax

function Map3DSystem.App.BCS.OnExec(app, commandName, params)

parameters

app  
commandName The name of the command to determine state for. Usually in the string format "Category.SubCate.Name".
params  

Map3DSystem.App.BCS.OnRenderBox

Change and render the 3D world with mcml data that is usually retrieved from the current user's profile page for this application.

syntax

function Map3DSystem.App.BCS.OnRenderBox(mcmlData)

parameters

mcmlData  

Map3DSystem.App.BCS.Navigate

called when the user wants to nagivate to the 3D world location relavent to this application

syntax

function Map3DSystem.App.BCS.Navigate()

Map3DSystem.App.BCS.GotoHomepage

called when user clicks to check out the homepage of this application. Homepage usually includes: developer info, support, developer worlds information, app global news, app updates, all community user rating, active users, trade, currency transfer, etc.

syntax

function Map3DSystem.App.BCS.GotoHomepage()

Map3DSystem.App.BCS.DoQuickAction

called when user clicks the quick action for this application.

syntax

function Map3DSystem.App.BCS.DoQuickAction()

Map3DSystem.App.BCS.MSGProc


client world database function helpers.


all related messages

APPS can be invoked in many ways: Through app Manager mainbar or menu command or buttons Command Line 3D World installed apps

syntax

function Map3DSystem.App.BCS.MSGProc(window, msg)

parameters

window  
msg  

character customization database for Map 3D system

Title character customization database for Map 3D system
Author(s) WangTian
Date 2007/10/29
File script/kids/3DMapSystemUI/BCS/DB.lua

Description

TIP Sample Code

NPL.load("(gl)script/kids/3DMapSystemUI/BCS/DB.lua");

building customization system main entrance for map 3d system

Title building customization system main entrance for map 3d system
Author(s) WangTian
Date 2007/10/29
File script/kids/3DMapSystemUI/BCS/Main.lua

Description

TIP Sample Code

NPL.load("(gl)script/kids/3DMapSystemUI/BCS/Main.lua");
Topic revision: r1 - 2008-02-29 - LiXizhi
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback