summaryrefslogtreecommitdiff
path: root/src/levelhandler.cpp
blob: 1c55e9cac1717a3e55866a8dc2f77e68416458b3 (plain)
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
// LevelHandler.cpp: implementation of the LevelHandler class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "LevelHandler.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

LevelHandler::LevelHandler()
{

}

LevelHandler::~LevelHandler()
{
	clear();
}

void LevelHandler::clear()
{
	m_curLevel.release();
	m_topLevel.release();

	BaseHandler::clear();
}

void LevelHandler::startDocument(RtfReader* reader)
{
	BaseHandler::startDocument(reader);

	m_topLevel = new Level;
	m_curLevel = m_topLevel;
}

void LevelHandler::endDocument()
{
	BaseHandler::endDocument();
}

void LevelHandler::groupStart()
{
	BaseHandler::groupStart();
	ASSERT(m_curLevel);
	pushLevel();
}

void LevelHandler::groupEnd()
{
	ASSERT(m_curLevel);
	popLevel();
	BaseHandler::groupEnd();
}

DOM::Element LevelHandler::getElement()
{
	ASSERT(m_curLevel);
	return m_curLevel->getElement();
}

void LevelHandler::pushLevel()
{
	// Push a level on the stack
	m_curLevel = m_curLevel->pushLevel();
}

void LevelHandler::popLevel()
{
	// Pull a level off the stack
	LevelPtr level = m_curLevel->getPrevious();

	// TODO: report errors here
	if(level)
		m_curLevel = level;
}

void LevelHandler::rewindLevel(LevelPtr ptr)
{
	ASSERT(ptr != NULL);

	LevelPtr prev = ptr->getPrevious();

	if(prev != NULL)
		m_curLevel = prev;
	else
		m_curLevel = ptr;
}

LevelPtr LevelHandler::getLevel()
{
	return m_curLevel;
}