Difference between revisions of "HINO03"

From SWGANH Wiki
Jump to: navigation, search
(Sample Packet)
(sample code remove me once struct is documented)
 
(13 intermediate revisions by 2 users not shown)
Line 12: Line 12:
 
----
 
----
 
<pre>
 
<pre>
ByteBuffer ZoneClient::ONIH_3(uint64 id, char *installation){
+
SHORT:         ObjOpperandCount
ByteBuffer packet;
+
INT:           Opcode
uint32 len;
+
FLOAT:          Complexity
 
+
ASTRING:        STF File
packet << (uint16) 0x0005;
+
INT:            STF Spacer
packet.opcode2(SMSG_OBJ_UPDATE);//0c5fa768
+
ASTRING:        STF Name
+
USTRING:        CustomName
packet << (uint64) id;//itemid
+
INT:            Volume
+
CSTRING:       CustomizationString
packet << (uint32) 0x48494e4f; //0x494e534f; //OSNI Packet
+
INT:            ??List
 
+
INT:            UpdateCounter
packet << (uint8) 0x03;       // 
+
{
 
+
INT:          ??
char* dir = "installation_n";
+
}
char* kind = "fusion_generator";
+
INT:            OptionsBitmask
uint32 oncr3size = strlen(kind)+strlen(dir);
+
INT:            Timer(Incap/Prototype)
 
+
INT:            ConditionDamage
packet << (uint32) (oncr3size+58);//61 //bytecount rest Packet size
+
INT:            MaxCondition
packet << (uint16) 0x000e; //object operands 13 ??? //57
+
BYTE:          ??
packet << (float) 0;//0x3f800000; // float 1
+
BYTE:          ActiveFlag
+
FLOAT:          PowerReserves
len = strlen(dir);
+
FLOAT:          PowerCost
packet << (uint16) len;
+
</pre>
for (int i=0;i<len;i++){
+
packet << (char)dir[i];
+
}
+
+
packet << (uint32) 0;
+
+
len = strlen(kind);
+
packet << (uint16) len;
+
for (int i=0;i<len;i++){
+
packet << (char)kind[i];
+
}
+
+
packet << (uint32) 0; //string
+
packet << (uint32) 1;//1H inv load
+
packet << (uint32) 0;//string
+
packet << (uint32) 0;
+
 
+
packet << (uint32) 0x00000000;
+
packet << (uint32) 0;
+
packet << (uint16) 0;
+
packet << (uint16) 900;//thats the damage the structure
+
                              //has taken that gets deducted from its health
+
+
packet << (uint16) 0;
+
packet << (uint16) 1000;//Condi2 (right of the c1 / c2)
+
packet << (uint16) 0;//(evtl 32bitCondi2 (right of the c1 / c2))
+
packet << (uint8) 0; //probably 1 resource item
+
packet << (uint8) 0; //probably 1 resource item
+
+
packet << (uint32) 0; //amount
+
packet << (uint32) 0; //amount
+
 
+
+
return packet;
+
}</pre>
+
  
 
===Deltas Struct===
 
===Deltas Struct===
Line 80: Line 45:
 
===Variable Descriptions===
 
===Variable Descriptions===
 
----
 
----
 +
*Notes
  
Obj_OperandCount = ??
 
 
----
 
----
 
  
 
===Tags===
 
===Tags===
Line 122: Line 86:
 
00 00 00 00  
 
00 00 00 00  
 
25  
 
25  
 +
</pre>
 +
 +
==sample code remove me once struct is documented==
 +
<pre>
 +
 
</pre>
 
</pre>

Latest revision as of 10:26, 10 January 2010

Baseline - HINO03

SWGANH Wiki is a repository of Star Wars Galaxies Developer information. This site is only meant to be used by SWGANH Developer team.

HINO Packet Type QuickNav
HINO03 - HINO06 - HINO07


BaseLine Struct


SHORT:          ObjOpperandCount
INT:            Opcode
FLOAT:          Complexity
ASTRING:        STF File
INT:            STF Spacer
ASTRING:        STF Name
USTRING:        CustomName
INT:            Volume
CSTRING:        CustomizationString
INT:            ??List
INT:            UpdateCounter
{
 INT:           ??
}
INT:            OptionsBitmask
INT:            Timer(Incap/Prototype)
INT:            ConditionDamage
INT:            MaxCondition
BYTE:           ??
BYTE:           ActiveFlag
FLOAT:          PowerReserves
FLOAT:          PowerCost

Deltas Struct



Variable Descriptions


  • Notes

Tags


50% This packet has been partially reversed.

Sample Packet


 05 00 
0C 5F A7 68              // BaselineMessage   
36 21 FF FB 1A 00 00 00  // object ID
4F 4E 49 48 03           // ONIH 3
56 00 00 00 
0E 00 
00 00 80 3F 
0E 00                    // string count
69 6E 73 74 61 6C 6C     // instal
61 74 69 6F 6E 5F 6E     // lation_n
00 00 00 00 
0E 00 
77 69 6E 64 5F 67 65 6E 65 72 61 74 6F 72      // wind_generator
00 00 00 00 
01 00 00 00 
00 00 00 00 
00 00 00 00 
00 00 00 01 
00 00 00 00 
00 00 00 00 
00 00 E8 03 
00 00 01 00 
00 00 00 00 
00 00 00 00 
25 

sample code remove me once struct is documented