File: ladderTrackDlg.h

package info (click to toggle)
openmohaa 0.82.1%2Bdfsg-1
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 34,192 kB
  • sloc: cpp: 315,720; ansic: 275,789; sh: 312; xml: 246; asm: 141; makefile: 7
file content (117 lines) | stat: -rw-r--r-- 2,880 bytes parent folder | download | duplicates (2)
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
// ladderTrackDlg.h : header file
//

#if !defined(AFX_LADDERTRACKDLG_H__82121F55_1FDB_427A_B616_B59EB16C5E6D__INCLUDED_)
#define AFX_LADDERTRACKDLG_H__82121F55_1FDB_427A_B616_B59EB16C5E6D__INCLUDED_

#include "LoginDlg.h"
#include "HostOrJoinDlg.h"
#include "..\..\GT2\gt2.h"	// Added by ClassView
#include "..\..\GT2\gt2Encode.h"
#include "WaitingDlg.h"	// Added by ClassView

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CLadderTrackDlg dialog

#define LOGGED_OUT            1
#define SETTING_UP            2
#define RACING                3

#define HOST_LISTENING       11
#define HOST_CHALLENGING     12
#define HOST_CONNECTED       13
#define HOST_ERROR           14

#define JOIN_CONNECTING      21
#define JOIN_WAITING         22
#define JOIN_CONNECTED       23
#define JOIN_ERROR           24

#define NONE  -1
#define LEFT   0
#define RIGHT  1

#define RACE_STEPS           60

class CLadderTrackDlg : public CDialog
{
// Construction
public:
	void FakeStats();
	CString m_remoteNick;
	DWORD m_remoteTime;
	DWORD m_localTime;
	int m_totalSteps;
	int m_step;
	int m_numSteps;
	DWORD m_start;
	BOOL m_racing;
	int m_countdown;
	BOOL m_challenged;
	CString m_remoteResponse;
	int m_state;
	BOOL m_hosting;
	CString m_challenge;
	int m_remoteProfile;
	CLoginDlg m_loginDlg;
	CHostOrJoinDlg m_hostOrJoinDlg;
	CWaitingDlg m_waitingDlg;

	GT2Socket	  m_GT2Socket;		// raw socket
	GT2Connection m_GT2Connection;	// established connection

	BOOL SetupHosting();
	BOOL SetupJoining();
	BOOL SetupMatch();
	void UpdatePlayerPositions();
	void Countdown();
	void Logout();
	void StartRace();
	void ReportStats();
	CLadderTrackDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CLadderTrackDlg)
	enum { IDD = IDD_LADDERTRACK_DIALOG };
	CButton	m_startRace;
	CProgressCtrl	m_remoteProgress;
	CProgressCtrl	m_localProgress;
	CString	m_localPosition;
	CString	m_remotePosition;
	CString	m_info;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CLadderTrackDlg)
	public:
	virtual BOOL PreTranslateMessage(MSG* pMsg);
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CLadderTrackDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnStart();
	afx_msg void OnDestroy();
	afx_msg void OnTimer(UINT nIDEvent);
	afx_msg void OnLogout();
	afx_msg void OnUpdatePositions();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_LADDERTRACKDLG_H__82121F55_1FDB_427A_B616_B59EB16C5E6D__INCLUDED_)