forked from sakura-editor/sakura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMarkMgr.cpp
185 lines (155 loc) · 4.45 KB
/
CMarkMgr.cpp
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
//
/*! @file
@brief 現在行のマークを管理する
@author genta
*/
/*
Copyright (C) 2000-2001, genta
Copyright (C) 2002, aroka
Copyright (C) 2018-2022, Sakura Editor Organization
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented;
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such,
and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#include "StdAfx.h"
#include "_main/global.h"
#include "CMarkMgr.h"
//-----------------------------------
// CMarkMgr
//-----------------------------------
/*!
@brief 保管する最大件数を指定する。
現在より小さい値を設定したときは余分な要素は削除される。
@param max 設定する最大件数
*/
void CMarkMgr::SetMax(int max)
{
m_nMaxitem = max;
Expire(); // 指定した数に要素を減らす
}
/*!
@brief 現在位置の要素が有効かどうかの判定
@retval true 有効
@retval false 無効
*/
bool CMarkMgr::CheckCurrent(void) const
{
if( m_nCurpos < Count() )
return m_cMarkChain[ m_nCurpos ].IsValid();
return false;
}
/*!
@brief 現在位置の前に有効な要素があるかどうかを調べる
@retval true 有る
@retval false 無い
*/
bool CMarkMgr::CheckPrev(void) const
{
for( int i = m_nCurpos - 1; i >= 0; i-- ){
if( m_cMarkChain[ i ].IsValid() )
return true;
}
return false;
}
/*!
@brief 現在位置の後に有効な要素があるかどうかを調べる
@retval true 有る
@retval false 無い
*/
bool CMarkMgr::CheckNext(void) const
{
for( int i = m_nCurpos + 1; i < Count(); i++ ){
if( m_cMarkChain[ i ].IsValid() )
return true;
}
return false;
}
/*!
@brief 現在位置を前の有効な位置まで進める
@retval true 正常終了。現在位置は1つ前の有効な要素に移動した。
@retval false 有効な要素が見つからなかった。現在位置は移動していない。
*/
bool CMarkMgr::PrevValid(void)
{
for( int i = m_nCurpos - 1; i >= 0; i-- ){
if( m_cMarkChain[ i ].IsValid() ){
m_nCurpos = i;
return true;
}
}
return false;
}
/*!
@brief 現在位置を後の有効な位置まで進める
@retval true 正常終了。現在位置は1つ後の有効な要素に移動した。
@retval false 有効な要素が見つからなかった。現在位置は移動していない。
*/
bool CMarkMgr::NextValid(void)
{
for( int i = m_nCurpos + 1; i < Count(); i++ ){
if( m_cMarkChain[ i ].IsValid() ){
m_nCurpos = i;
return true;
}
}
return false;
}
// From Here Apr. 1, 2001 genta
/*!
現在のデータを全て消去し、現在位置のポインタをリセットする。
@par history
Apr. 1, 2001 genta 新規追加
*/
void CMarkMgr::Flush(void)
{
m_cMarkChain.erase( m_cMarkChain.begin(), m_cMarkChain.end() );
m_nCurpos = 0;
}
// To Here
//-----------------------------------
// CAutoMarkMgr
//-----------------------------------
/*!
現在位置に要素を追加する.現在位置より後ろは全て削除する。
要素番号が大きい方が新しいデータ。
@param m 追加する要素
*/
void CAutoMarkMgr::Add(const CMark& m)
{
// 現在位置が途中の時
if( m_nCurpos < (int)m_cMarkChain.size() ){
// 現在位置まで要素を削除
m_cMarkChain.erase( m_cMarkChain.begin() + m_nCurpos, m_cMarkChain.end() );
}
// 要素の追加
m_cMarkChain.push_back(m);
++m_nCurpos;
// 規定数を超えてしまうときの対応
Expire();
}
/*!
要素数が最大値を超えている場合に要素数が範囲内に収まるよう、
古い方(番号の若い方)から削除する。
*/
void CAutoMarkMgr::Expire(void)
{
int range = m_cMarkChain.size() - GetMax();
if( range <= 0 ) return;
// 最大値を超えている場合
m_cMarkChain.erase( m_cMarkChain.begin(), m_cMarkChain.begin() + range );
m_nCurpos -= range;
if( m_nCurpos < 0 )
m_nCurpos = 0;
}