-
Notifications
You must be signed in to change notification settings - Fork 26
/
ExParty.h
79 lines (70 loc) · 2.42 KB
/
ExParty.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*==========================================================
* D2Ex2
* https://github.com/lolet/D2Ex2
* ==========================================================
* Copyright (c) 2011-2014 Bartosz Jankowski
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ==========================================================
*/
#ifndef _EXPARTY_H__
#define _EXPARTY_H__
#include <cstdio>
#include <string>
#include <algorithm>
#include <list>
#include "ExControl.h"
#include "ExTextBox.h"
using namespace std;
struct PlayerTable;
struct AccountBase;
namespace ExParty
{
void ClearScreenHandle();
int GetPlayerArea(UnitAny* ptUnit = D2Funcs.D2CLIENT_GetPlayer());
bool isTownLvl(UnitAny* ptUnit = D2Funcs.D2CLIENT_GetPlayer());
bool isOpen();
UnitAny* GetUnitByName(const char* szName);
bool isPlayerNear(const char * szName);
void Fill(char * szSkip = 0);
void Resort(char * szSkip = 0);
void Refresh(char * szSkip = 0);
void Update();
void AddAccount(string szName, string szAccount);
void UpdateAccount(string szCharName, string szAccountName);
void RequestAccount(string szName);
string FindAccount(string szName);
void SetClan(string szName, string clan);
string FindClan(string szName);
AccountBase* FindRoster(string szName);
int FindRoster(string szName, int Type);
void ClearRoster();
RosterUnit * GetRosterById(DWORD dwUnitId);
RosterUnit * GetRosterByName(const char* szName);
bool IsInPartyWithClass(UnitAny* pPlayer, DWORD dwClassId);
void Clear();
BOOL __fastcall GetKillCount(BYTE* aPacket);
BOOL __fastcall GetRoster(BYTE* aPacket);
BOOL __fastcall OnPartyUpdate(BYTE *aPacket);
BOOL __fastcall OnPartyUpdate2(BYTE *aPacket);
BOOL __fastcall OnPartyUpdate3(BYTE *aPacket);
BOOL __fastcall OnLocationUpdate(BYTE* aPacket);
int GetPlayerCount(void);
int GetExPartyCount(void);
int GetFrameColor(DWORD dwUnitId);
wstring GetClassById(int ClassId);
DWORD GetPvpFlags(DWORD dwUnitId);
void ShowHide(void);
void ClearScreen();
}
#endif