* try to resolve merge conflict
* feat: TU19 (Dec 2014) Features & Content (#32)
* December 2014 files
* Working release build
* Fix compilation issues
* Add sound to Windows64Media
* Add DLC content and force Tutorial DLC
* Revert "Add DLC content and force Tutorial DLC"
This reverts commit 97a4399472.
* Disable broken light packing
* Disable breakpoint during DLC texture map load
Allows DLC loading but the DLC textures are still broken
* Fix post build not working
* ...
* fix vs2022 build
* fix cmake build
---------
Co-authored-by: Loki <lokirautio@gmail.com>
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
#pragma once
|
|
#include "GameRuleDefinition.h"
|
|
#include "..\..\..\Minecraft.World\StructurePiece.h"
|
|
|
|
class Level;
|
|
class Random;
|
|
class BoundingBox;
|
|
class ConsoleGenerateStructureAction;
|
|
class XboxStructureActionPlaceContainer;
|
|
class GRFObject;
|
|
|
|
class ConsoleGenerateStructure : public GameRuleDefinition, public StructurePiece
|
|
{
|
|
private:
|
|
int m_x, m_y, m_z;
|
|
vector<ConsoleGenerateStructureAction *> m_actions;
|
|
int m_dimension;
|
|
public:
|
|
ConsoleGenerateStructure();
|
|
|
|
virtual ConsoleGameRules::EGameRuleType getActionType() { return ConsoleGameRules::eGameRuleType_GenerateStructure; }
|
|
|
|
virtual void getChildren(vector<GameRuleDefinition *> *children);
|
|
virtual GameRuleDefinition *addChild(ConsoleGameRules::EGameRuleType ruleType);
|
|
|
|
virtual void writeAttributes(DataOutputStream *dos, UINT numAttrs);
|
|
virtual void addAttribute(const wstring &attributeName, const wstring &attributeValue);
|
|
|
|
// StructurePiece
|
|
virtual BoundingBox *getBoundingBox();
|
|
virtual bool postProcess(Level *level, Random *random, BoundingBox *chunkBB);
|
|
|
|
void createContainer(XboxStructureActionPlaceContainer *action, Level *level, BoundingBox *chunkBB);
|
|
|
|
bool checkIntersects(int x0, int y0, int z0, int x1, int y1, int z1);
|
|
|
|
virtual int getMinY();
|
|
|
|
EStructurePiece GetType() { return (EStructurePiece)0; }
|
|
void addAdditonalSaveData(CompoundTag *tag) {}
|
|
void readAdditonalSaveData(CompoundTag *tag) {}
|
|
}; |