Jump to content

XML:BINA/OBJC/CONS: Difference between revisions

m
copy-edit
m (correcting prev/next types in nav header)
m (copy-edit)
Line 1: Line 1:
{{XML_OBJC_Header | prev=CMBT| type=CONS | next=DOOR | name=Console}}
{{XML_OBJC_Header | prev=CMBT| type=CONS | next=DOOR | name=Console}}


===general information===
==General information==
* The xml code on this page was tested with onisplit version 0.9.61.0 and 0.9.82.0
* The XML on this page was tested with OniSplit version 0.9.61.0 and 0.9.82.0.
* Y value of "chr_debug_characters = 1" doesn't need to be changed.
* This console spawning doesn't include console geometry unless it's done via [[XML:ONLV|ONLV]] level import.
* Facing (Y rotation) needs to be changed by 180 degrees.
* The BINACJBOConsole file is level-specific (level''x''_Final.dat).
* This console ''spawning'' doesn't include console geometry (see screenshot) unless it's done via [[XML:ONLV|ONLV]] level import.
* All consoles can be seen [http://ssg.oni2.net/subfold/consoles/ HERE].
* '''BINACJBOConsole.oni''' is level specific. (It can be found in AE/AEInstaller/vanilla/level'''X'''_Final.dat)
* Activation tolerances: the player must fulfill the following requirements before he can use a console:
* All consoles can be seen [http://ssg.oni2.net/subfold/consoles/ HERE.]
** A distance of 10 or less world units.
* Activation tolerances - player must fullfill following requirements before he can use the console:
** A distance of -2 WU or less (e.g. you can't activate console while standing inside or behind it).
** a distance of 10 or less (world units)
** A facing of 1.22173 radians (ca. 70°) or less.
** a distance of -2 or less (e.g. you can't activate console while standing inside or behind it)
** A sideways shift of 8 WU or less.
** a facing of 1,22173 radians (ca. 70°) or less
** A difference of 8 WU or less between pelvis height and console height.
** a sideways distance of 8 or less
** a height of 8 or less (pelvis height - console height)


 
==File structure==
===file structure===
  <?xml version="1.0" encoding="utf-8"?>
  <?xml version="1.0" encoding="utf-8"?>
  <Oni>
  <Oni>
Line 24: Line 21:
  </Oni>
  </Oni>


'''''[...]''''' means at least one console. Paste all console data into there (this includes '''<font color="#0A0"><CONS Id="..."></font>''' and '''<font color="#0A0"></CONS></font>''' tag).
'''''[...]''''' is where at least one console is defined. Paste all your console data into there (this includes '''<font color="#0A0"><CONS Id="..."></font>''' and '''<font color="#0A0"></CONS></font>''' tag).
 
 
'''example'''
<!--
{| border=0 cellspacing=20 cellpadding=0 style="float:right"
|
dead, could not download [http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XML_modding/console.png http://i305.photobucket.com/albums/nn207/unknownfuture/Oni_Galore_Images/XML_modding/console_preview.png]
|}-->
        '''<font color="#0A0"><CONS Id="8179"></font>'''
            <Header>
                <Flags>Locked Gunk</Flags>
                <Position>-1354.927 45 860.053</Position>
                <Rotation>180.000015 0 180.000015</Rotation>
            </Header>
            <OSD>
                <Class>console0</Class>
                <ConsoleId>2</ConsoleId>
                <Flags>InitialActive</Flags>
                <InactiveTexture>_con_INACTIVE</InactiveTexture>
                <ActiveTexture>_con_MTCOM_DISH</ActiveTexture>
                <TriggeredTexture>_con_MTC_DISHFLASH</TriggeredTexture>
                <Events>
                    <Script Function="fconsole_ok" />
                </Events>
            </OSD>
        '''<font color="#0A0"></CONS></font>'''


==Example==
'''<font color="#0A0"><CONS Id="8179"></font>'''
    <Header>
        <Flags>Locked Gunk</Flags>
        <Position>-1354.927 45 860.053</Position>
        <Rotation>180.000015 0 180.000015</Rotation>
    </Header>
    <OSD>
        <Class>console0</Class>
        <ConsoleId>2</ConsoleId>
        <Flags>InitialActive</Flags>
        <InactiveTexture>_con_INACTIVE</InactiveTexture>
        <ActiveTexture>_con_MTCOM_DISH</ActiveTexture>
        <TriggeredTexture>_con_MTC_DISHFLASH</TriggeredTexture>
        <Events>
            <Script Function="fconsole_ok" />
        </Events>
    </OSD>
'''<font color="#0A0"></CONS></font>'''


===tags===
==Tags==
{| class="wikitable" width=100%
{| class="wikitable" width=100%
!width=280px| tag
!width=280px| Tag
!width=60px| type
!width=60px| Type
! description
! Description
|-
| <?xml version="1.0" encoding="utf-8"?>
| float, flag
| Don't change this.
|-
| <Oni>
| -
|
|-
|-
| <Objects>
| <Objects>
Line 73: Line 55:
| <CONS Id="...">
| <CONS Id="...">
| int32
| int32
| Use any number. No need to be unique. -- For [[XML:ONLV|level import]] use <CONS>.
| Any number; no need to be unique. For [[XML:ONLV|level importing]], use <CONS>.
|-
|-
| <Header>
| <Header>
Line 81: Line 63:
| <Flags>
| <Flags>
| flag
| flag
| Object flags. Used in the past, ignore them.
| Object flags. Used during development, ignore them.
|-
|-
| <Position>
| <Position>
| float x3
| float x3
| X Y Z position. For original consoles use Y=0 if ground plane is 0.
| XYZ position. When creating a new console, use a Y of 0 if the ground plane is 0. The height of the console and the character are both stemming from the ground plane.
|-
|-
| <Rotation>
| <Rotation>
| float x3
| float x3
| X Y Z rotation. chr_debug_characters = 1 shows the player's facing which can be used for console's Y value. X and Z should be 0.
| XYZ rotation. "chr_debug_characters = 1" shows the player's position, so you could face your (imaginary) console and then use a 180-degree flip of your facing for the console's Y rotation. X and Z should be 0.
|-
|-
| <OSD>
| <OSD>
Line 103: Line 85:
: console_small_wu_roof
: console_small_wu_roof


For level import via [[XML:ONLV|xml master file]] use absolute/relative file path, e.g. ''consoles/console_data.oni''
For level import via the [[XML:ONLV|XML master file]], use absolute/relative file path, e.g. ''consoles/console_data.oni''.
|-
|-
| <ConsoleId>
| <ConsoleId>
Line 127: Line 109:
_con_ALARM_SLEEP / _con_USED / _con_used / _con_INACTIVE
_con_ALARM_SLEEP / _con_USED / _con_used / _con_INACTIVE


'''Use capitalized file name for this TXMP.'''
'''Use a capitalized file name for this TXMP.'''
|-
|-
|valign="top"| <ActiveTexture>
|valign="top"| <ActiveTexture>
|valign="top"| char[63]
|valign="top"| char[63]
| <font color="#777777">TXMP</font>file<font color="#777777">.oni</font> <font color="#777777">(don't use file prefix/suffix)</font> Image for enabled console. Examples:
| <font color="#777777">TXMP</font>file<font color="#777777">.oni</font> <font color="#777777">(don't use file prefix/suffix)</font> Image for an enabled console. Examples:


_con_ALARM_SLEEP / _con_INFO / _con_MTC_2 / _con_mtc_stairs / _con_MTCOM_DISH / _con_MTCOM_DISH
_con_ALARM_SLEEP / _con_INFO / _con_MTC_2 / _con_mtc_stairs / _con_MTCOM_DISH / _con_MTCOM_DISH


'''Use capitalized file name for this TXMP.'''
'''Use a capitalized file name for this TXMP.'''
|-
|-
|valign="top"| <TriggeredTexture>
|valign="top"| <TriggeredTexture>
|valign="top"| char[63]
|valign="top"| char[63]
| <font color="#777777">TXMP</font>file<font color="#777777">.oni</font> <font color="#777777">(don't use file prefix/suffix)</font> Image for used console. Examples:
| <font color="#777777">TXMP</font>file<font color="#777777">.oni</font> <font color="#777777">(don't use file prefix/suffix)</font> Image for a used console. Examples:


_con_ALARM_ON / _con_USED / _con_used / _con_MTC_DISHFLASH
_con_ALARM_ON / _con_USED / _con_used / _con_MTC_DISHFLASH


'''Use capitalized file name for this TXMP.'''
'''Use a capitalized file name for this TXMP.'''
|-
|-
| <Events>
| <Events>
Line 151: Line 133:
|valign="top"| <Script Function="call_this_BSL_function" />
|valign="top"| <Script Function="call_this_BSL_function" />
|valign="top"| char[32]
|valign="top"| char[32]
| Name of BSL function. For example if you use "call_this_BSL_function" here then write in BSL file:
| Name of BSL function. For example if you use "call_this_BSL_function" here, then write in your BSL script:
  ''func call_this_BSL_function
  ''func call_this_BSL_function
  {
  {
Line 198: Line 180:
|}
|}


==Mod Tool-aided import==
'''Limitation:''' This method was created for info consoles only.


===Mod Tool aided import===
VBS code:
'''Limitation:''' this method was created for information consoles only.
[[Image:ModTool_layers.png|thumb|200px|right|How to access scene layers.]]
 
vbs code
 
[[Image:ModTool_layers.png|thumb|200px|right|how to access scene layers]]
  ' make a new layer ("CONS_layer" or whatever)
  ' make a new layer ("CONS_layer" or whatever)
  ' make it the current layer (by setting the >> sign)
  ' make it the current layer (by setting the >> sign)
Line 212: Line 192:
  ' duplicate, translate, rotate as you need
  ' duplicate, translate, rotate as you need
  ' right-click your CONS_layer > "Select All Objects in Layer"
  ' right-click your CONS_layer > "Select All Objects in Layer"
  ' run vbs code to create xml file (script editor: Alt+4, Run code: F5)
  ' run VBS code to create XML file (script editor: Alt+4, Run code: F5)
  ' it will appear on your desktop
  ' it will appear on your desktop
  ' edit ConsoleId and Script Function
  ' edit ConsoleId and Script Function
  ' import by registering consoles in your level's xml master file
  ' import by registering consoles in your level's XML master file
  ' (<Objects><Import>BINACJBOConsole.xml)
  ' (<Objects><Import>BINACJBOConsole.xml)
   
   
Line 265: Line 245:
  objXMLFile.Close
  objXMLFile.Close
  logmessage "done"
  logmessage "done"


{{XML}}
{{XML}}