diff Engine/Graphics/DecorationList.cpp @ 2496:5abd8fc8f1c6

for ITEM_ARTIFACT_LADYS_ESCORT
author Ritor1
date Thu, 18 Sep 2014 17:38:54 +0600
parents
children 68cdef6879a0
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Engine/Graphics/DecorationList.cpp	Thu Sep 18 17:38:54 2014 +0600
@@ -0,0 +1,294 @@
+#define _CRTDBG_MAP_ALLOC
+#include <stdlib.h>
+#include <crtdbg.h>
+
+#define _CRT_SECURE_NO_WARNINGS
+#include "Sprites.h"
+#include "DecorationList.h"
+#include "FrameTableInc.h"
+#include "mm7_data.h"
+#include "ErrorHandling.h"
+#include "stru123.h"
+#include "Engine/Graphics/Level\Decoration.h"
+
+struct DecorationList *pDecorationList;
+
+//----- (0045864C) --------------------------------------------------------
+void DecorationList::FromFile(void *data_mm6, void *data_mm7, void *data_mm8)
+{
+  uint num_mm6_decs = data_mm6 ? *(int *)data_mm6 : 0,
+       num_mm7_decs = data_mm7 ? *(int *)data_mm7 : 0,
+       num_mm8_decs = data_mm8 ? *(int *)data_mm8 : 0;
+
+  uNumDecorations = num_mm6_decs + num_mm7_decs + num_mm8_decs;
+  Assert(uNumDecorations);
+  Assert(!num_mm8_decs);
+
+  pDecorations = (DecorationDesc *)malloc(uNumDecorations * sizeof(DecorationDesc));
+  memcpy(pDecorations, (char *)data_mm7 + 4, num_mm7_decs * sizeof(DecorationDesc));
+  for (uint i = 0; i < num_mm6_decs; ++i)
+  {
+    memcpy(pDecorations + num_mm7_decs + i, (char *)data_mm6 + 4 + i * sizeof(DecorationDesc_mm6), sizeof(DecorationDesc_mm6));
+    pDecorations[num_mm7_decs + i].uColoredLightRed = 255;
+    pDecorations[num_mm7_decs + i].uColoredLightGreen = 255;
+    pDecorations[num_mm7_decs + i].uColoredLightBlue = 255;
+    pDecorations[num_mm7_decs + i].__padding = 255;
+  }
+  memcpy(pDecorations + num_mm6_decs + num_mm7_decs, (char *)data_mm8 + 4, num_mm8_decs * sizeof(DecorationDesc));
+}
+
+//----- (00458693) --------------------------------------------------------
+void DecorationList::InitializeDecorationSprite(unsigned int uDecID)
+{
+  pSpriteFrameTable->InitializeSprite(this->pDecorations[uDecID].uSpriteID);
+}
+
+//----- (004586B0) --------------------------------------------------------
+bool DecorationList::FromFileTxt(const char *Args)
+{
+  DecorationList *v2; // ebx@1
+  FILE *v3; // eax@1
+  unsigned int v4; // esi@3
+  void *v5; // eax@10
+  FILE *v6; // ST18_4@12
+  char *i; // eax@12
+  unsigned __int16 v8; // ax@16
+  //const char *v9; // ST20_4@16
+  //const char *v10; // ST18_4@16
+  //__int16 v11; // ax@16
+  //const char *v12; // ST14_4@16
+  //unsigned __int16 v13; // ax@16
+//  const char *v14; // ST10_4@16
+  //__int16 v15; // ax@16
+//  const char *v16; // ST0C_4@16
+//  unsigned __int8 v17; // al@16
+//  const char *v18; // ST08_4@16
+//  unsigned __int8 v19; // al@16
+//  const char *v20; // ST04_4@16
+//  unsigned __int8 v21; // al@16
+//  const char *v22; // ST00_4@16
+  unsigned __int8 v23; // zf@16
+  char v24; // sf@16
+  unsigned __int8 v25; // of@16
+  int j; // edi@17
+  const char *v27; // esi@18
+  int v29; // eax@21
+  int v30; // eax@23
+  int v31; // eax@25
+  int v32; // eax@27
+  int v33; // eax@29
+  int v34; // eax@31
+  int v35; // eax@33
+  FrameTableTxtLine v37; // [sp+Ch] [bp-460h]@17
+  FrameTableTxtLine v38; // [sp+88h] [bp-3E4h]@13
+  char Dest; // [sp+104h] [bp-368h]@17
+  char Buf; // [sp+17Ch] [bp-2F0h]@3
+  FrameTableTxtLine v41; // [sp+370h] [bp-FCh]@4
+  FrameTableTxtLine v42; // [sp+3ECh] [bp-80h]@4
+  FILE *File; // [sp+468h] [bp-4h]@1
+  unsigned int Argsa; // [sp+474h] [bp+8h]@3
+
+  v2 = this;
+  v3 = fopen(Args, "r");
+  File = v3;
+  if ( !v3 )
+    Error("DecorationDescriptionList::load - Unable to open file: %s.");
+
+  v4 = 0;
+  Argsa = 0;
+  if ( fgets(&Buf, 490, v3) )
+  {
+    do
+    {
+      *strchr(&Buf, 10) = 0;
+      memcpy(&v42, frame_table_txt_parser(&Buf, &v41), sizeof(v42));
+      if ( v42.uPropCount && *v42.pProperties[0] != 47 && v42.uPropCount >= 3 )
+        ++Argsa;
+    }
+    while ( fgets(&Buf, 490, File) );
+    v4 = Argsa;
+  }
+  v2->uNumDecorations = v4;
+  v5 = malloc(84 * v4);
+  v2->pDecorations = (DecorationDesc *)v5;
+  if ( !v5 )
+    Error("DecorationDescriptionList::load - Out of Memory!");
+
+  v6 = File;
+  v2->uNumDecorations = 0;
+  fseek(v6, 0, 0);
+  for ( i = fgets(&Buf, 490, File); i; i = fgets(&Buf, 490, File) )
+  {
+    *strchr(&Buf, 10) = 0;
+    memcpy(&v42, frame_table_txt_parser(&Buf, &v38), sizeof(v42));
+    if ( v42.uPropCount && *v42.pProperties[0] != 47 && v42.uPropCount >= 3 )
+    {
+      strcpy(v2->pDecorations[v2->uNumDecorations].pName, v42.pProperties[1]);
+      v8 = pSpriteFrameTable->FastFindSprite(v2->pDecorations[v2->uNumDecorations].pName);
+      //v9 = v42.pProperties[2];
+      v2->pDecorations[v2->uNumDecorations].uSpriteID = v8;
+      strcpy(v2->pDecorations[v2->uNumDecorations].field_20, v42.pProperties[2]);
+      //v10 = v42.pProperties[3];
+      v2->pDecorations[v2->uNumDecorations].uType = 0;
+      //v11 = atoi(v42.pProperties[3]);
+      //v12 = v42.pProperties[4];
+      v2->pDecorations[v2->uNumDecorations].uRadius = atoi(v42.pProperties[3]);
+      //v13 = atoi(v42.pProperties[4]);
+      //v14 = v42.pProperties[5];
+      v2->pDecorations[v2->uNumDecorations].uDecorationHeight = atoi(v42.pProperties[4]);
+      //v15 = atoi(v42.pProperties[5]);
+      //v16 = v42.pProperties[6];
+      v2->pDecorations[v2->uNumDecorations].uLightRadius = atoi(v42.pProperties[5]);
+      //v17 = atoi(v42.pProperties[6]);
+      //v18 = v42.pProperties[7];
+      v2->pDecorations[v2->uNumDecorations].uColoredLightRed = atoi(v42.pProperties[6]);
+      //v19 = atoi(v42.pProperties[7]);
+      //v20 = v42.pProperties[8];
+      v2->pDecorations[v2->uNumDecorations].uColoredLightGreen = atoi(v42.pProperties[7]);
+      //v21 = atoi(v42.pProperties[8]);
+      //v22 = v42.pProperties[9];
+      v2->pDecorations[v2->uNumDecorations].uColoredLightBlue = atoi(v42.pProperties[8]);
+      v2->pDecorations[v2->uNumDecorations].uSoundID = atoi(v42.pProperties[9]);
+      __debugbreak();//Ritor1: need cleaning
+      v25 = __OFSUB__(v42.uPropCount, 10);
+      v23 = v42.uPropCount == 10;
+      v24 = v42.uPropCount - 10 < 0;
+      v2->pDecorations[v2->uNumDecorations].uFlags = 0;
+      if ( !((unsigned __int8)(v24 ^ v25) | v23) )
+      {
+        strcpy(&Dest, v42.pProperties[10]);
+        memcpy(&v41, frame_table_txt_parser(&Dest, &v37), sizeof(v41));
+        for ( j = 0; j < v41.uPropCount; ++j )
+        {
+          v27 = v41.pProperties[j];
+          if ( _stricmp(v41.pProperties[j], "NBM") )
+          {
+            if ( _stricmp(v27, "Invisible") )
+            {
+              if ( _stricmp(v27, "FS") )
+              {
+                if ( _stricmp(v27, "FM") )
+                {
+                  if ( _stricmp(v27, "FF") )
+                  {
+                    if ( _stricmp(v27, "Marker") )
+                    {
+                      if ( _stricmp(v27, "LoopSlow") )
+                      {
+                        if ( _stricmp(v27, "EmitFire") )
+                        {
+                          if ( _stricmp(v27, "Dawn") )
+                          {
+                            if ( !_stricmp(v27, "Dusk") )
+                              HIBYTE(v2->pDecorations[v2->uNumDecorations].uFlags) |= 2u;
+                          }
+                          else
+                          {
+                            HIBYTE(v2->pDecorations[v2->uNumDecorations].uFlags) |= 1u;
+                          }
+                        }
+                        else
+                        {
+                          v35 = (int)&v2->pDecorations[v2->uNumDecorations].uFlags;
+                          *(char *)v35 |= 0x80u;
+                        }
+                      }
+                      else
+                      {
+                        v34 = (int)&v2->pDecorations[v2->uNumDecorations].uFlags;
+                        *(char *)v34 |= 0x40u;
+                      }
+                    }
+                    else
+                    {
+                      v33 = (int)&v2->pDecorations[v2->uNumDecorations].uFlags;
+                      *(char *)v33 |= 0x20u;
+                    }
+                  }
+                  else
+                  {
+                    v32 = (int)&v2->pDecorations[v2->uNumDecorations].uFlags;
+                    *(char *)v32 |= 0x10u;
+                  }
+                }
+                else
+                {
+                  v31 = (int)&v2->pDecorations[v2->uNumDecorations].uFlags;
+                  *(char *)v31 |= 8u;
+                }
+              }
+              else
+              {
+                v30 = (int)&v2->pDecorations[v2->uNumDecorations].uFlags;
+                *(char *)v30 |= 4u;
+              }
+            }
+            else
+            {
+              v29 = (int)&v2->pDecorations[v2->uNumDecorations].uFlags;
+              *(char *)v29 |= 2u;
+            }
+          }
+          else
+            v2->pDecorations[v2->uNumDecorations].uFlags |= 1;
+        }
+      }
+      ++v2->uNumDecorations;
+    }
+  }
+  fclose(File);
+  return 1;
+}
+//----- (00458600) --------------------------------------------------------
+void DecorationList::ToFile()
+{
+  FILE *v2; // eax@1
+  FILE *v3; // edi@1
+
+  v2 = fopen("data\\ddeclist.bin", "wb");
+  v3 = v2;
+  if ( !v2 )
+    Error("Unable to save ddeclist.bin!");
+
+  fwrite(this, 4, 1, v2);
+  fwrite(this->pDecorations, 84, this->uNumDecorations, v3);
+  fclose(v3);
+}
+//----- (004488B6) --------------------------------------------------------
+unsigned __int16 DecorationList::GetDecorIdByName(const char *pName)
+{
+  if ( pName &&  (signed int)this->uNumDecorations > 1 )
+  {
+    for ( uint uID = 1; uID < (signed int)this->uNumDecorations; ++uID )
+    {
+      if ( !_stricmp(pName, this->pDecorations[uID].pName) )
+        return uID;
+    }
+  }
+  return 0;
+}
+
+
+//----- (00450AAA) --------------------------------------------------------
+void RespawnGlobalDecorations()
+{
+  memset(stru_5E4C90_MapPersistVars._decor_events.data(), 0, 125);
+
+  uint decorEventIdx = 0;
+  for (uint i = 0; i < uNumLevelDecorations; ++i)
+  {
+    LevelDecoration* decor = &pLevelDecorations[i];
+
+    if (!decor->uEventID)
+    {
+      if (decor->IsInteractive())
+      {
+        if (decorEventIdx < 124)
+        {
+          decor->_idx_in_stru123 = decorEventIdx + 75;
+          stru_5E4C90_MapPersistVars._decor_events[decorEventIdx++] = decor->GetGlobalEvent();
+        }
+      }
+    }
+  }
+}
\ No newline at end of file