-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodeDocument.cpp
162 lines (131 loc) · 3.37 KB
/
codeDocument.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
#include "codeDocument.h"
codeDocument::codeDocument()
{
}//fonksiyon sonu
codeDocument::~codeDocument()
{
}//fonksiyon sonu
void codeDocument::setup(int line,float fSize)
{
activeLine = 0;
lineSize = line;
fontSize = fSize;
addlines();
ofTrueTypeFontSettings setting("arial.ttf", fontSize);
setting.addRanges(ofAlphabet::Latin);
font.load(setting);
startTextX = 50;
spacingWeight =fontSize/2;
}//fonksiyon sonu
void codeDocument::draw(float Mx, float My,bool runActive)
{
ofBackground(255);
//linesları düz mantık olarak listeliyoruz.
// cout << endl << "lines uzunlugu : " << lines.size();
for (int i = 0; i < lines.size(); i++)
{
lines[i].fbo.draw(0, i * lineSize);
}// for sonu
if (runActive) {
if (ofGetElapsedTimeMillis() % 800 <= 500) {
ofSetColor(0);
ofDrawLine(startTextX + lines[activeLine].activeLength, 0 + (activeLine * lineSize), startTextX+ lines[activeLine].activeLength, 16 + (activeLine * lineSize));
}// süre sistemli yapı
}//if sonu
}//fonksiyon sonu
void codeDocument::clikc(int x, int y, int button,int konum)
{
if (lines.size() <= konum) {
activeLine = lines.size() - 1;
}// if sonu
else {
activeLine = konum;
}// else sonu
}//fonksiyon sonu
void codeDocument::keypressed(int key)
{
if (key >= 0 && key <= 32) {
switch (key) {
// enter tuşuna basılırsa
case 13:
// test sürümünde sayfa boyunu geçmemesi sağlandı.
if (lines.size() <= 32) {
addlines(activeLine + 1);
activeLine++;
}// if sonu
break;
// silme tuşuna basılırsa
case 8:
if (activeLine > 0) {
if (lines[activeLine].lineString.length() == 0) {
deletelines(activeLine);
activeLine--;
}// boş string kontrol ifi
}// en dip kontrol ifi
break;
//bosluk karekteri
case 32:
pressedSpace();
break;
}// switch sonu
}// ilk keylerin sonu
if (key >= 32 && key <= 512) {
// cout << endl << "key calisma kismi";
drawString(key);
}// harflerin bulunduğu alan sonu
}//fonksiyon sonu
void codeDocument::addlines()
{
codeLine line;
lines.push_back(line);
lines[lines.size() - 1].codeNumber = lines.size();
lines[lines.size() - 1].setup();
}//fonksiyon sonu
void codeDocument::addlines(int no)
{
codeLine line;
lines.insert(lines.begin() + no, line);
lines[no].codeNumber = no + 1;
lines[no].setup();
if (lines.size() != no) {
changesLines(no + 1);
}//if sonu
}//fonksiyon sonu
void codeDocument::deletelines(int no)
{
lines.erase(lines.begin() + no);
if (lines.size() != no) {
changesLines(no);
}//if sonu
}//fonksiyon sonu
void codeDocument::changesLines(int no)
{
int a = 0;
for (int i = no; i < lines.size(); i++)
{
a++;
lines[i].drawNumber(i + 1);
}// for sonu
}//fonksiyon sonu
void codeDocument::drawString(int key)
{
string a;
ofUTF8Append(a, key);;
cout << endl << "yapilan string dönüşümü : " << a;
float uzunluk = font.stringWidth(a);
ofFbo* fbo = &lines[activeLine].fbo;
fbo->begin();
// ofBackground(128);
ofSetColor(0, 0, 0, 255);
font.drawString(a,50+ lines[activeLine].lastLength,fontSize+1);
fbo->end();
lines[activeLine].lineString +=a;
lines[activeLine].lastLength += uzunluk;
lines[activeLine].activeLength = lines[activeLine].lastLength;
}//fonksiyon sonu
void codeDocument::pressedSpace()
{
lines[activeLine].lastLength += spacingWeight;
lines[activeLine].lineString += " ";
lines[activeLine].activeLength = lines[activeLine].lastLength;
}//fonksiyon sonu