-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathChartMaster.cpp
327 lines (265 loc) · 10.8 KB
/
ChartMaster.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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
/************************************************************************
* Copyright(c) 2011, One Unified. All rights reserved. *
* *
* This file is provided as is WITHOUT ANY WARRANTY *
* without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* *
* This software may not be used nor distributed without proper license *
* agreement. *
* *
* See the file LICENSE.txt for redistribution information. *
************************************************************************/
#include "ChartMaster.h"
#include "ChartDataView.h"
namespace ou { // One Unified
ChartMaster::ChartMaster( unsigned int width, unsigned int height )
: m_pCdv( nullptr), m_pDA( nullptr )
, m_nChartWidth( width ), m_nChartHeight( height )
, m_intCrossHairX {}, m_intCrossHairY {}, m_bCrossHair( false )
, m_bHasData( false )
, m_dblX {}, m_dblY {}
, m_xLeft {}, m_xX {}, m_xRight {}
, m_formatter( "%.2f" )
, m_nChart {}
{
m_szCursorTime[ 0 ] = 0;
Initialize();
}
ChartMaster::ChartMaster(): ChartMaster( 600, 900 ) {}
ChartMaster::~ChartMaster() {
}
void ChartMaster::Initialize() {
// NOTE license is now found in /etc/chartdir.lic
}
void ChartMaster::SetChartDataView( ChartDataView* pcdv ) {
//ResetDynamicLayer();
m_pCdv = pcdv;
m_pChart = std::make_unique<MultiChart>( m_nChartWidth, m_nChartHeight );
ChartStructure();
//if ( nullptr != m_pCdv ) m_pCdv->SetChanged();
};
void ChartMaster::SetChartDimensions(unsigned int width, unsigned int height) {
//ResetDynamicLayer();
m_nChartWidth = width;
m_nChartHeight = height;
//MultiChart multi( m_nChartWidth, m_nChartHeight, Chart::goldColor );
m_pChart = std::make_unique<MultiChart>( m_nChartWidth, m_nChartHeight );
ChartStructure();
//if ( nullptr != m_pCdv ) m_pCdv->SetChanged();
}
/*
void ChartMaster::SetViewPort( boost::posix_time::ptime dtBegin, boost::posix_time::ptime dtEnd ) {
m_dblViewPortXBegin =
( boost::posix_time::not_a_date_time != dtBegin )
?
Chart::chartTime(
dtBegin.date().year(), dtBegin.date().month(), dtBegin.date().day(),
dtBegin.time_of_day().hours(), dtBegin.time_of_day().minutes(), dtBegin.time_of_day().seconds() )
:
0;
m_dblViewPortXEnd =
( boost::posix_time::not_a_date_time != dtEnd )
?
Chart::chartTime(
dtEnd.date().year(), dtEnd.date().month(), dtEnd.date().day(),
dtEnd.time_of_day().hours(), dtEnd.time_of_day().minutes(), dtEnd.time_of_day().seconds() )
:
0;
}
*/
void ChartMaster::SetBarWidth( boost::posix_time::time_duration tdBarWidth ) {
m_tdBarWidth = tdBarWidth;
}
void ChartMaster::ChartStructure() {
std::string sTitle( m_pCdv->GetName() + " - " + m_pCdv->GetDescription() );
m_pChart->addTitle( sTitle.c_str() );
// chart 0 (main chart) is x, chrt 1 (volume chart) is 1/4x, ChartN (indicator charts) are 1/3x
// calc assumes chart 0 and chart 1 are always present
size_t n = m_pCdv->GetChartCount();
int heightChart0 = ( 12 * ( m_nChartHeight - 25 ) ) / ( 15 + ( 4 * ( n - 2 ) ) );
int heightChart1 = heightChart0 / 4;
int heightChartN = heightChart0 / 3;
m_vSubCharts.resize( n ); // this is the number of sub-charts we are working with (move to class def so not redone all the time?)
size_t ix = 0;
int y = 15; // was 25
int x = 50;
int xAxisHeight = 50;
XYChart* pXY; // used for each sub-chart
while ( ix < n ) {
switch ( ix ) {
case 0: // main chart
m_pXY0 = pXY = new XYChart( m_nChartWidth, heightChart0 );
pXY->setPlotArea( x, xAxisHeight, m_nChartWidth - 2 * x, heightChart0 - xAxisHeight )->setGridColor(0xc0c0c0, 0xc0c0c0);
pXY->xAxis()->setColors(Chart::LineColor, Chart::LineColor);
pXY->setClipping();
pXY->setXAxisOnTop( true );
pXY->xAxis()->setWidth( 2 );
pXY->yAxis()->setWidth( 2 );
pXY->yAxis()->setMargin( 2, 5 );
pXY->addLegend( x, xAxisHeight, true, 0, 9.0 );
m_pChart->addChart( 0, y, pXY );
m_pChart->setMainChart( pXY );
y += heightChart0;
break;
case 1: // volume chart
pXY = new XYChart( m_nChartWidth, heightChart1 );
pXY->setPlotArea( x, 0, m_nChartWidth - 2 * x, heightChart1 )->setGridColor(0xc0c0c0, 0xc0c0c0);
pXY->setClipping();
//pXY->xAxis()->setColors(Chart::LineColor, Chart::Transparent); // turn off axis
pXY->xAxis()->setColors(Chart::LineColor, Chart::LineColor);
pXY->xAxis()->copyAxis( m_pXY0->xAxis() ); // use settings from main subchart
pXY->xAxis()->setWidth( 2 );
pXY->yAxis()->setWidth( 2 );
pXY->yAxis()->setMargin( 5, 5 );
pXY->addLegend( x, 0, true, 0, 9.0 );
m_pChart->addChart( 0, y, pXY );
y += heightChart1;
break;
default: // secondary indicator charts
pXY = new XYChart( m_nChartWidth, heightChartN );
pXY->setPlotArea( x, 0, m_nChartWidth - 2 * x, heightChartN )->setGridColor(0xc0c0c0, 0xc0c0c0);
pXY->setClipping();
//pXY->xAxis()->setColors(Chart::LineColor, Chart::Transparent); // turn off axis
pXY->xAxis()->setColors(Chart::LineColor, Chart::LineColor);
pXY->xAxis()->copyAxis( m_pXY0->xAxis() ); // use settings from main subchart
pXY->xAxis()->setWidth( 2 );
pXY->yAxis()->setWidth( 2 );
pXY->yAxis()->setMargin( 5, 5 );
pXY->addLegend( x, 0, true, 0, 9.0 );
m_pChart->addChart( 0, y, pXY );
y += heightChartN;
break;
}
m_vSubCharts[ ix ] = std::unique_ptr<XYChart>( pXY );
++ix;
}
}
void ChartMaster::ChartData( XYChart* pXY0 ) {
// determine XAxis min/max while adding chart data
double dblXBegin {};
double dblXEnd {};
m_pCdv->EachChartEntryCarrier(
[this,&dblXBegin,&dblXEnd]( ou::ChartEntryCarrier& carrier ){
size_t ixChart = carrier.GetActualChartId();
ChartEntryBase::structChartAttributes Attributes;
if ( carrier.GetChartEntry()->AddEntryToChart( m_vSubCharts[ ixChart ].get(), &Attributes ) ) {
// following assumes values are always > 0
dblXBegin = ( 0 == dblXBegin )
? Attributes.dblXMin
: std::min<double>( dblXBegin, Attributes.dblXMin );
dblXEnd = ( 0 == dblXEnd )
? Attributes.dblXMax
: std::max<double>( dblXEnd, Attributes.dblXMax );
}
} );
// time axis scales
if ( dblXBegin != dblXEnd ) {
pXY0->xAxis()->setDateScale( dblXBegin, dblXEnd, 0, 0 );
m_bHasData = true;
}
else {
m_bHasData = false;
//std::cout << "Time Scales match" << std::endl;
}
}
void ChartMaster::DrawChart() {
if ( m_pChart ) {
if ( m_pCdv ) { // DataView has something to draw
ChartData( m_pXY0 );
RenderChart(); // PROBLEM in lock 3
}
}
}
void ChartMaster::RenderChart() {
if ( m_bHasData ) { // Did you 'm_pWinChartView->SetSim( true );'?
bool bCursor( true );
if ( m_bCrossHair ) {
bCursor = DrawDynamicLayer();
}
MemBlock m = m_pChart->makeChart( Chart::BMP ); // PROBLEM in lock 4
if ( m_fOnDrawChart ) m_fOnDrawChart( bCursor, m );
}
}
bool ChartMaster::ResetDynamicLayer() {
bool bExisted { false };
if ( nullptr != m_pDA ) {
bExisted = true;
m_pChart->removeDynamicLayer();
m_pDA = nullptr;
}
return bExisted;
}
void ChartMaster::SetCrossHairPosition( int x, int y ) {
m_intCrossHairX = x;
m_intCrossHairY = y;
}
void ChartMaster::SetCrossHairTime( const std::string& sTime ) {
auto size = sTime.size();
memcpy( m_szCursorTime, sTime.c_str(), size );
m_szCursorTime[ size ] = 0;
}
void ChartMaster::CrossHairDraw( bool bDraw ) {
m_bCrossHair = bDraw;
}
bool ChartMaster::DrawDynamicLayer() {
// TODO: maybe trigger more often than data update happens?
// trigger a call back for sync?
// confirm when hit, only when mouse is over?
bool bCrossHairs( false );
if ( m_pChart ) {
m_pDA = m_pChart->initDynamicLayer(); // new/clear
// this however, does work, not like the one below
//std::stringstream ss;
//ss << "x=" << m_intCrossHairX << ",y=" << m_intCrossHairY;
//m_pDA->text( ss.str().c_str(), "normal", 10, 10, 10, Colour::Black );
const int n = m_pChart->getChartCount();
assert( 0 < n );
BaseChart* pSubBaseChart;
int top {}, bottom {};
XYChart* pChartFocus( nullptr );
for ( int ix = 0; ix < n; ix++ ) {
pSubBaseChart = m_pChart->getChart( ix );
XYChart* pSubChart = dynamic_cast<XYChart*>( pSubBaseChart );
PlotArea* pArea = pSubChart->getPlotArea();
int pxChartTop = pSubChart->getAbsOffsetY() + pArea->getTopY();
if ( 0 == ix ) {
auto AbsOffsetX = pSubChart->getAbsOffsetX(); // offset to left side of chart
// set based upon top chart:
top = pxChartTop;
m_xLeft = AbsOffsetX + pArea->getLeftX();
m_xRight = AbsOffsetX + pArea->getRightX();
}
bottom = pSubChart->getAbsOffsetY() + pArea->getBottomY();
if ( pxChartTop < m_intCrossHairY ) {
pChartFocus = pSubChart;
m_nChart = ix;
}
} // end for ix
if (
( top < m_intCrossHairY ) &&
( bottom > m_intCrossHairY ) &&
( m_xLeft < m_intCrossHairX ) &&
( m_xRight > m_intCrossHairX )
) {
bCrossHairs = true;
assert( nullptr != pChartFocus );
m_xX = m_intCrossHairX - pChartFocus->getAbsOffsetX();
m_dblX = pChartFocus->getXValue( m_xX );
m_dblY = pChartFocus->getYValue( m_intCrossHairY - pChartFocus->getAbsOffsetY() );
std::string sValue = ( m_formatter % m_dblY ).str();
// chartdir does not like taking a c_str() of anything, so need to perform a copy
char sz[100];
memcpy( sz, sValue.c_str(), sValue.size() );
sz[ sValue.size() ] = 0;
m_pDA->hline( m_xLeft, m_xRight, m_intCrossHairY, Colour::Gray );
m_pDA->vline( top, bottom, m_intCrossHairX, Colour::Gray );
m_pDA->text( sz, "normal", 10, m_intCrossHairX + 1, m_intCrossHairY - 14, Colour::Black );
if ( 0 != m_szCursorTime[ 0 ] ) {
m_pDA->text( m_szCursorTime, "normal", 10, m_intCrossHairX + 1, m_intCrossHairY + 2, Colour::Black );
}
}
}
return !bCrossHairs; // caller shows cursor when no crosshairs
}
} // namespace ou