Release 0.18

master
Kasi 2018-03-22 01:15:01 +00:00
parent 5634b33c6c
commit 1bc8c40166
12 changed files with 15 additions and 2 deletions

View File

@ -34,6 +34,8 @@ namespace Internal
std::int32_t GetSubPoseAnimationID() const; std::int32_t GetSubPoseAnimationID() const;
std::int32_t GetX() const; std::int32_t GetX() const;
std::int32_t GetY() const; std::int32_t GetY() const;
std::int32_t GetIntField1() const;
bool GetBoolField1() const;
}; };
} }

View File

@ -19,6 +19,7 @@ namespace Internal
std::int32_t GetLength() const; std::int32_t GetLength() const;
std::vector<MessageNode> GetLines() const; std::vector<MessageNode> GetLines() const;
MessageNode GetLines(std::int32_t I) const;
}; };
} }

View File

@ -17,6 +17,7 @@ namespace Internal
static Class GetClass(); static Class GetClass();
std::vector<Frame> GetSkeletons() const; std::vector<Frame> GetSkeletons() const;
Frame GetSkeletons(std::int32_t I) const;
}; };
} }

View File

@ -18,6 +18,7 @@ namespace Internal
static Class GetClass(); static Class GetClass();
std::vector<Node> GetBuckets() const; std::vector<Node> GetBuckets() const;
Node GetBuckets(std::int32_t I) const;
std::int32_t GetIndex() const; std::int32_t GetIndex() const;
std::int32_t GetSize() const; std::int32_t GetSize() const;

View File

@ -4,6 +4,7 @@
#include "../JavaClass/Object.hpp" #include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp" #include "../JavaClass/Class.hpp"
#include <vector> #include <vector>
#include <cstdint>
namespace Internal namespace Internal
{ {
@ -16,7 +17,8 @@ namespace Internal
static Class GetClass(); static Class GetClass();
std::vector<std::vector<Object>> GetChildren() const; std::vector<std::vector<Object>> GetChildren() const;
std::vector<Object> GetChildren(std::int32_t I) const;
Object GetChildren(std::int32_t I, std::int32_t II) const;
}; };
} }

View File

@ -17,6 +17,7 @@ namespace Internal
static Class GetClass(); static Class GetClass();
std::vector<Nameable> GetNameables() const; std::vector<Nameable> GetNameables() const;
Nameable GetNameables(std::int32_t I) const;
std::int32_t GetSize() const; std::int32_t GetSize() const;
}; };

View File

@ -18,7 +18,10 @@ namespace Internal
static Class GetClass(); static Class GetClass();
std::vector<GameObject> GetGameObjects() const; std::vector<GameObject> GetGameObjects() const;
GameObject GetGameObjects(std::int32_t I) const;
std::vector<std::vector<std::vector<SceneTile>>> GetSceneTiles() const; std::vector<std::vector<std::vector<SceneTile>>> GetSceneTiles() const;
std::vector<std::vector<SceneTile>> GetSceneTiles(std::int32_t Plane) const;
SceneTile GetSceneTiles(std::int32_t X, std::int32_t Y, std::int32_t Plane) const;
}; };
} }

View File

@ -22,6 +22,7 @@ namespace Internal
DecorativeObject GetDecorativeObject() const; DecorativeObject GetDecorativeObject() const;
std::vector<GameObject> GetGameObjects() const; std::vector<GameObject> GetGameObjects() const;
GameObject GetGameObjects(std::int32_t I) const;
GroundObject GetGroundObject() const; GroundObject GetGroundObject() const;
std::int32_t GetPlane() const; std::int32_t GetPlane() const;
WallObject GetWallObject() const; WallObject GetWallObject() const;

View File

@ -21,6 +21,7 @@ namespace Internal
std::int32_t GetBorderThickness() const; std::int32_t GetBorderThickness() const;
std::int32_t GetBoxIndex() const; std::int32_t GetBoxIndex() const;
std::vector<Widget> GetChildren() const; std::vector<Widget> GetChildren() const;
Widget GetChildren(std::int32_t I) const;
std::int32_t GetHeight() const; std::int32_t GetHeight() const;
bool GetHidden() const; bool GetHidden() const;
std::int32_t GetID() const; std::int32_t GetID() const;

View File

@ -187,7 +187,6 @@ namespace Internal
bool LoadWorlds(); bool LoadWorlds();
void SetWorld(const World& W); void SetWorld(const World& W);
Node GetHashTableNode(const HashTable& Table, std::int32_t Index);
ItemInfo GetItemInfo(std::int32_t ID); ItemInfo GetItemInfo(std::int32_t ID);
NPCInfo GetNPCInfo(std::int32_t ID); NPCInfo GetNPCInfo(std::int32_t ID);
ObjectInfo GetObjectInfo(std::int32_t ID); ObjectInfo GetObjectInfo(std::int32_t ID);

View File

@ -17,6 +17,7 @@ class Login
typedef enum LOGIN_SCREEN_STATE typedef enum LOGIN_SCREEN_STATE
{ {
WELCOME_SCREEN, WELCOME_SCREEN,
PVP_WORLD,
ENTER_CREDENTIALS, ENTER_CREDENTIALS,
INVALID_CREDENTIALS, INVALID_CREDENTIALS,
FORGOTTEN_PASSWORD, FORGOTTEN_PASSWORD,

Binary file not shown.