-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeaponView.h
136 lines (111 loc) · 3.5 KB
/
WeaponView.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*=========================
==================================================
*
* File: Weaponview.H
* Author: Dave Humphrey ([email protected])
* Created On: May 22, 2003
*
* Description
*
*=========================================================================*/
#ifndef __WEAPONVIEW_H
#define __WEAPONVIEW_H
/*===========================================================================
*
* Begin Required Includes
*
*=========================================================================*/
#include "MWRandCom.h"
/*===========================================================================
* End of Required Includes
*=========================================================================*/
/*===========================================================================
*
* Begin Class CWeaponView Definition
*
*=========================================================================*/
class CMWRandItemDlg;
class CWeaponView : public CPropertyPage {
DECLARE_DYNCREATE(CWeaponView);
/*---------- Begin Protected Class Members -------------------------*/
protected:
CMWRandItemDlg* m_pParentDlg;
mwri_weapondata_t m_WeaponData; /* Weapon creation data */
CEsmLevelItem* m_pLevelItem;
CString m_ListID;
/*---------- Begin Protected Class Methods -------------------------*/
protected:
/* Creates a single, random weapon */
void CreateWeapon (void);
/* Get/set control data */
void GetControlData (void);
void SetControlData (void);
/*---------- Begin Public Class Members ----------------------------*/
public:
/* Construction */
CWeaponView();
~CWeaponView();
/* Set class members */
void SetParentDlg (CMWRandItemDlg* pParent) { m_pParentDlg = pParent; }
/* Dialog Data */
//{{AFX_DATA(CWeaponView)
enum { IDD = IDD_WEAPON_VIEW };
CEdit m_IDPrefix;
CButton m_UseNumberID;
CEdit m_ChanceNone;
CEdit m_LevelListID;
CButton m_CreateList;
CEdit m_WeightFactor;
CEdit m_EnchantFactor;
CEdit m_ReachFactor;
CEdit m_SpeedFactor;
CEdit m_HealthFactor;
CEdit m_DamageFactor;
CEdit m_IgnoreChance;
CEdit m_EnchantChance;
CEdit m_Number;
CEdit m_Reach2;
CEdit m_Reach1;
CEdit m_Speed2;
CEdit m_Speed1;
CEdit m_Condition2;
CEdit m_Condition1;
CEdit m_Weight2;
CEdit m_Weight1;
CEdit m_ThrustMax2;
CEdit m_ThrustMax1;
CEdit m_SlashMax2;
CEdit m_SlashMax1;
CEdit m_ChopMax2;
CEdit m_ChopMax1;
CEdit m_ThrustMin2;
CEdit m_ThrustMin1;
CEdit m_SlashMin2;
CEdit m_SlashMin1;
CEdit m_ChopMin2;
CEdit m_ChopMin1;
//}}AFX_DATA
/* ClassWizard generate virtual function overrides */
//{{AFX_VIRTUAL(CWeaponView)
protected:
virtual void DoDataExchange(CDataExchange* pDX);
//}}AFX_VIRTUAL
protected:
/* Generated message map functions */
//{{AFX_MSG(CWeaponView)
afx_msg void OnCreateButton();
virtual BOOL OnInitDialog();
afx_msg void OnUsenumberid();
afx_msg void OnLevellist();
//}}AFX_MSG
DECLARE_MESSAGE_MAP();
};
/*===========================================================================
* End of Class CWeaponView Definition
*=========================================================================*/
//{{AFX_INSERT_LOCATION}}
//}}AFX_INSERT_LOCATION
#endif
/*===========================================================================
* End of File Weaponview.H
*=========================================================================*/