Editor.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624
  1. #include "Editor.h"
  2. #include <Schrift.h>
  3. #include "Parser\ColorParser.h"
  4. #include <Bild.h>
  5. #include <Scroll.h>
  6. #include <Globals.h>
  7. #include <Rahmen.h>
  8. #include <ToolTip.h>
  9. using namespace KSGScript;
  10. // Inhalt der Editor Klasse
  11. // Konstructor
  12. Editor::Editor()
  13. : ZeichnungHintergrund(),
  14. begF( 0 ),
  15. cPos( 0 ),
  16. tickVal( 0 ),
  17. mausKlick( 0 )
  18. {
  19. textRd = 0;
  20. script = 0;
  21. errorDetection = 1;
  22. warningDetection = 1;
  23. setTextColor( 0xFFFFFFFF, ColorType::NORMAL_TEXT );
  24. setTextColor( 0xFF4040FF, ColorType::KEYWORD );
  25. setTextColor( 0xFFA0A040, ColorType::PARAMETER_VARIABLE );
  26. setTextColor( 0xFFA0A0A0, ColorType::INSTANCE_VARIABLE );
  27. setTextColor( 0xFF40FF70, ColorType::TYPENAME );
  28. setTextColor( 0xFFFFA000, ColorType::STRING );
  29. setTextColor( 0xFF20FFFF, ColorType::KOMMENTAR );
  30. setTextColor( 0xFFFF4040, ColorType::ERROR_UNDERLINE );
  31. parser = 0;
  32. reloadCounter = 10;
  33. }
  34. // Destructor
  35. Editor::~Editor()
  36. {
  37. if( textRd )
  38. textRd->release();
  39. if( script )
  40. script->release();
  41. if( parser )
  42. parser->release();
  43. }
  44. // Verarbeitet ein Maus Ereignis. Wird vom Framework automatisch aufgerufen.
  45. // me: Das Ereignis
  46. void Editor::doMausEreignis( MausEreignis &me, bool userRet )
  47. {
  48. if( hatStyleNicht( Style::Erlaubt ) || !userRet )
  49. {
  50. int rbr = 0;
  51. if( rahmen )
  52. rbr = rahmen->getRBreite();
  53. if( ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ||
  54. ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ) &&
  55. me.mx > rbr && me.mx < gr.x - rbr &&
  56. me.my > rbr && me.my < gr.y - rbr )
  57. {
  58. me.verarbeitet |= vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me );
  59. me.verarbeitet |= horizontalScrollBar->doMausMessage( rbr, gr.y - rbr * 2 - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me );
  60. }
  61. mausKlick = 0;
  62. return;
  63. }
  64. if( !me.verarbeitet )
  65. {
  66. if( me.id == ME_Betritt )
  67. mausKlick = 0;
  68. int rbr = 0;
  69. if( rahmen )
  70. rbr = rahmen->getRBreite();
  71. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  72. {
  73. if( vertikalScrollBar->doMausMessage( gr.x - rbr - 15, rbr, 15, gr.y - rbr * 2, me ) )
  74. {
  75. me.verarbeitet = 1;
  76. return;
  77. }
  78. }
  79. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  80. {
  81. if( horizontalScrollBar->doMausMessage( rbr, gr.y - rbr - 15, gr.x - rbr * 2 - ( ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? 15 : 0 ), 15, me ) )
  82. {
  83. me.verarbeitet = 1;
  84. return;
  85. }
  86. }
  87. if( me.mx < gr.x - rbr - 15 )
  88. {
  89. if( textRd )
  90. {
  91. textRd->setSchriftSize( 12 );
  92. bool shift = getTastenStand( T_Shift );
  93. if( me.id == Framework::ME_PLinks )
  94. {
  95. int tbr = textRd->getTextBreite( script->getText() );
  96. int thi = textRd->getTextHeight( script->getText() );
  97. int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
  98. int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
  99. int xxx = me.mx - rbr + scrollBr;
  100. int yyy = me.my - rbr + scrollHi;
  101. int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
  102. int pos = textRd->textPos( script->getText(), xxx, yyy );
  103. if( pos != -1 )
  104. {
  105. if( shift )
  106. begF = pos;
  107. else
  108. {
  109. cPos = pos;
  110. begF = pos;
  111. }
  112. rend = 1;
  113. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  114. updateVScroll( begF );
  115. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  116. updateHScroll( begF );
  117. }
  118. mausKlick = 1;
  119. }
  120. if( me.id == ME_Bewegung && mausKlick )
  121. {
  122. int tbr = textRd->getTextBreite( script->getText() );
  123. int thi = textRd->getTextHeight( script->getText() );
  124. int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
  125. int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
  126. int xxx = me.mx - rbr + scrollBr;
  127. int yyy = me.my - rbr + scrollHi;
  128. int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
  129. int scrollHeight = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) * 15;
  130. int pos = textRd->textPos( script->getText(), xxx, yyy );
  131. if( pos != -1 )
  132. {
  133. if( begF != pos )
  134. rend = 1;
  135. begF = pos;
  136. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  137. updateVScroll( begF );
  138. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  139. updateHScroll( begF );
  140. }
  141. }
  142. if( me.id == ME_RLinks )
  143. {
  144. if( !shift )
  145. {
  146. int tbr = textRd->getTextBreite( script->getText() );
  147. int thi = textRd->getTextHeight( script->getText() );
  148. int scrollHi = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) ? vertikalScrollBar->getScroll() : 0;
  149. int scrollBr = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) ? horizontalScrollBar->getScroll() : 0;
  150. int xxx = me.mx - rbr + scrollBr;
  151. int yyy = me.my - rbr + scrollHi;
  152. int scrollBreite = ( vertikalScrollBar && hatStyle( Style::VScroll ) ) * 15;
  153. int scrollHeight = ( horizontalScrollBar && hatStyle( Style::HScroll ) ) * 15;
  154. int pos = textRd->textPos( script->getText(), xxx, yyy );
  155. if( pos != -1 )
  156. {
  157. begF = pos;
  158. if( vertikalScrollBar && hatStyle( Style::VScroll ) )
  159. updateVScroll( begF );
  160. if( horizontalScrollBar && hatStyle( Style::HScroll ) )
  161. updateHScroll( begF );
  162. }
  163. rend = 1;
  164. }
  165. mausKlick = 0;
  166. }
  167. }
  168. }
  169. }
  170. me.verarbeitet = 1;
  171. }
  172. void Editor::updateHScroll( int pos )
  173. {
  174. if( pos == -1 )
  175. pos = cPos;
  176. if( horizontalScrollBar && script && textRd )
  177. {
  178. textRd->setSchriftSize( 12 );
  179. int br = gr.x;
  180. if( hatStyle( Style::Rahmen ) && rahmen )
  181. br -= rahmen->getRBreite() * 2;
  182. if( hatStyle( Style::VScroll ) && vertikalScrollBar )
  183. br -= 15;
  184. int maxBr = textRd->getTextBreite( script->getText() ) + 12;
  185. horizontalScrollBar->update( maxBr, br );
  186. if( hatStyle( Style::Erlaubt ) && maxBr > br && pos > 0 && pos < script->getLength() )
  187. {
  188. int p1 = 0;
  189. char *tmp = script->getText();
  190. for( int i = 0; i < pos; i++, tmp++ )
  191. {
  192. if( *tmp == '\n' )
  193. p1 = i + 1;
  194. }
  195. Text *t = script->getTeilText( p1, pos );
  196. int cbr = textRd->getTextBreite( t->getText() );
  197. t->release();
  198. if( cbr + 12 > horizontalScrollBar->getScroll() + horizontalScrollBar->getScrollData()->anzeige )
  199. horizontalScrollBar->scroll( cbr + 12 - br );
  200. if( cbr - 12 < horizontalScrollBar->getScroll() )
  201. horizontalScrollBar->scroll( cbr - 12 );
  202. }
  203. }
  204. }
  205. void Editor::updateVScroll( int pos )
  206. {
  207. if( pos == -1 )
  208. pos = cPos;
  209. if( vertikalScrollBar )
  210. {
  211. int sPos = 0;
  212. int hi = 0;
  213. if( script && textRd )
  214. {
  215. textRd->setSchriftSize( 12 );
  216. hi = gr.y;
  217. if( hatStyle( Style::Rahmen ) && rahmen )
  218. hi -= rahmen->getRBreite() * 2;
  219. if( hatStyle( Style::HScroll ) && horizontalScrollBar )
  220. hi -= 15;
  221. vertikalScrollBar->update( textRd->getTextHeight( script->getText() ) + 12 + textRd->getTextHeight( "a" ), hi );
  222. Text t;
  223. int zh = textRd->getTextHeight( t ) + textRd->getZeilenabstand();
  224. int l = script->getLength();
  225. for( int i = 0; i < l && ( i < pos || hatStyleNicht( Style::Erlaubt ) ); ++i )
  226. {
  227. if( script->getText()[ i ] == '\n' )
  228. sPos += zh;
  229. }
  230. }
  231. if( textRd )
  232. {
  233. if( sPos - textRd->getZeilenabstand() - textRd->getTextHeight( Text( "a" ) ) < vertikalScrollBar->getScroll() )
  234. vertikalScrollBar->scroll( sPos - textRd->getZeilenabstand() - textRd->getTextHeight( Text( "a" ) ) );
  235. if( sPos + textRd->getZeilenabstand() + textRd->getTextHeight( Text( "a" ) ) > vertikalScrollBar->getScroll() + vertikalScrollBar->getScrollData()->anzeige )
  236. vertikalScrollBar->scroll( sPos + ( textRd->getZeilenabstand() + textRd->getTextHeight( Text( "a" ) ) ) * 2 - hi );
  237. }
  238. rend = 1;
  239. }
  240. }
  241. // Setzt die zu verwendende Schrift
  242. // s: Die Schrift
  243. void Editor::setSchriftZ( Schrift * s )
  244. {
  245. if( !textRd )
  246. textRd = new TextRenderer( s );
  247. else
  248. textRd->setSchriftZ( s );
  249. }
  250. // Setzt den zu verwendenden Text Renderer
  251. // t: Der Text Renderer
  252. void Editor::setTextRendererZ( TextRenderer * t )
  253. {
  254. if( textRd )
  255. textRd->release();
  256. textRd = t;
  257. }
  258. // Setzt den Text (das Script was verändert werden soll)
  259. // txt: Der Text
  260. void Editor::setText( Text * txt )
  261. {
  262. lockZeichnung();
  263. if( script )
  264. script->release();
  265. if( parser )
  266. parser->release();
  267. script = new Text( txt->getText() );
  268. parser = new ColorParser( script );
  269. txt->release();
  270. updateHScroll( -1 );
  271. updateVScroll( -1 );
  272. unlockZeichnung();
  273. }
  274. // Gibt den aktuellen Text zurück
  275. Text * Editor::zText() const
  276. {
  277. return script;
  278. }
  279. // Schaltet die Fehlererkennung ein oder aus
  280. // on: 1, um die Fehlererkennung einzuschalten, 0 um sie auszuschalten
  281. void Editor::setErrorDetection( bool on )
  282. {
  283. errorDetection = on;
  284. }
  285. // Schaltet die Warnungserkennung ein oder aus
  286. // on: 1, um die Warnungserkennung einzuschalten, 0 um sie auszuschalten
  287. void Editor::setWarningDetection( bool on )
  288. {
  289. warningDetection = on;
  290. }
  291. // gibt 1 zurück, wenn die Fehlererkennung eingeschaltet ist
  292. bool Editor::getErrorDetection() const
  293. {
  294. return errorDetection;
  295. }
  296. // gibt 1 zurück, wenn die Warnungserkennung eingeschaltet ist
  297. bool Editor::getWarningDetection() const
  298. {
  299. return warningDetection;
  300. }
  301. // Verarbeitet ein Tastatur Ereignis. Wird vom Framework automatisch aufgerufen
  302. // te: Das Ereignis
  303. void Editor::doTastaturEreignis( TastaturEreignis & te )
  304. {
  305. bool ntakc = !te.verarbeitet;
  306. if( te.verarbeitet || hatStyleNicht( Style::Fokus ) )
  307. return;
  308. if( !tak )
  309. return;
  310. ++ref;
  311. if( tak( takParam, this, te ) )
  312. {
  313. if( hatStyleNicht( Style::Erlaubt ) )
  314. {
  315. --ref;
  316. if( !ref )
  317. delete this;
  318. return;
  319. }
  320. if( te.id == TE_Press )
  321. {
  322. bool shift = getTastenStand( T_Shift );
  323. bool strg = getTastenStand( T_Strg );
  324. switch( te.taste )
  325. {
  326. case T_Entf:
  327. if( cPos != begF )
  328. script->remove( cPos, begF );
  329. else
  330. script->remove( cPos, cPos + 1 );
  331. begF = cPos;
  332. rend = 1;
  333. break;
  334. case T_BackSpace:
  335. if( cPos != begF )
  336. {
  337. script->remove( cPos, begF );
  338. if( cPos > begF )
  339. cPos -= cPos - begF;
  340. }
  341. else
  342. {
  343. script->remove( cPos - 1, cPos );
  344. --cPos;
  345. }
  346. begF = cPos;
  347. rend = 1;
  348. break;
  349. case T_Enter:
  350. if( cPos != begF )
  351. {
  352. script->remove( begF, cPos );
  353. if( cPos > begF )
  354. cPos -= cPos - begF;
  355. }
  356. script->insert( cPos, '\n' );
  357. ++cPos;
  358. begF = cPos;
  359. rend = 1;
  360. break;
  361. case T_Links:
  362. if( shift )
  363. {
  364. if( strg )
  365. begF = script->getLKick( begF );
  366. else
  367. --begF;
  368. }
  369. else
  370. {
  371. if( strg )
  372. cPos = script->getLKick( cPos );
  373. else
  374. --cPos;
  375. begF = cPos;
  376. }
  377. rend = 1;
  378. break;
  379. case T_Oben:
  380. if( shift )
  381. {
  382. begF = script->getOKick( begF );
  383. }
  384. else
  385. {
  386. cPos = script->getOKick( cPos );
  387. begF = cPos;
  388. }
  389. rend = 1;
  390. break;
  391. case T_Rechts:
  392. if( shift )
  393. {
  394. if( strg )
  395. begF = script->getRKick( begF );
  396. else
  397. ++begF;
  398. }
  399. else
  400. {
  401. if( strg )
  402. cPos = script->getRKick( cPos );
  403. else
  404. ++cPos;
  405. begF = cPos;
  406. }
  407. rend = 1;
  408. break;
  409. case T_Unten:
  410. if( shift )
  411. {
  412. begF = script->getUKick( begF );
  413. }
  414. else
  415. {
  416. cPos = script->getUKick( cPos );
  417. begF = cPos;
  418. }
  419. rend = 1;
  420. break;
  421. default:
  422. if( strg && te.id == TE_Press )
  423. {
  424. if( te.taste == 'c' || te.taste == 'C' )
  425. {
  426. if( begF != cPos )
  427. {
  428. int len = begF - cPos;
  429. if( len < 0 )
  430. len = -len;
  431. char *txt = new char[ len + 1 ];
  432. txt[ len ] = 0;
  433. int beg = begF < cPos ? begF : cPos;
  434. for( int i = beg; i < beg + len; ++i )
  435. txt[ i - beg ] = script->getText()[ i ];
  436. TextKopieren( txt );
  437. delete[] txt;
  438. }
  439. else
  440. TextKopieren( script->getText() );
  441. }
  442. if( te.taste == 'v' || te.taste == 'V' )
  443. {
  444. if( begF != cPos )
  445. {
  446. script->remove( begF, cPos );
  447. if( cPos > begF )
  448. cPos = begF;
  449. }
  450. char *txt = TextInsert();
  451. script->insert( cPos, txt );
  452. cPos += textLength( txt );
  453. begF = cPos;
  454. rend = 1;
  455. }
  456. break;
  457. }
  458. if( istSchreibbar( te.taste ) )
  459. {
  460. if( begF != cPos )
  461. {
  462. script->remove( begF, cPos );
  463. if( cPos > begF )
  464. cPos = begF;
  465. }
  466. script->insert( cPos, (char)te.taste );
  467. ++cPos;
  468. begF = cPos;
  469. rend = 1;
  470. }
  471. break;
  472. }
  473. }
  474. if( cPos < 0 )
  475. cPos = 0;
  476. if( cPos > script->getLength() )
  477. cPos = script->getLength();
  478. if( begF < 0 )
  479. begF = 0;
  480. if( begF > script->getLength() )
  481. begF = script->getLength();
  482. if( hatStyle( Style::VScroll ) )
  483. updateVScroll( begF );
  484. if( hatStyle( Style::HScroll ) )
  485. updateHScroll( begF );
  486. te.verarbeitet = 1;
  487. }
  488. lockZeichnung();
  489. if( !--reloadCounter )
  490. {
  491. zm.messungStart();
  492. parser->reload();
  493. zm.messungEnde();
  494. reloadCounter = (int)( zm.getSekunden() * 100 );
  495. }
  496. unlockZeichnung();
  497. --ref;
  498. if( ntakc && te.verarbeitet && nTak )
  499. te.verarbeitet = nTak( ntakParam, this, te );
  500. if( !ref )
  501. delete this;
  502. }
  503. // Updated den Editor
  504. // tickVal: Die vergangene Zeit in Sekunden, die seit dem Letzten Aufruf dieser Funktion verstrichen ist
  505. // return: 1, wenn das Bild neu gezeichnet werden muss. 0 sonnst
  506. bool Editor::tick( double tickval )
  507. {
  508. if( hatStyle( Style::Fokus ) )
  509. {
  510. if( tickVal < 0.5 && tickVal + tickval >= 0.5 )
  511. rend = 1;
  512. if( tickVal >= 0.5 && tickVal + tickval >= 1 )
  513. rend = 1;
  514. tickVal += tickval;
  515. if( tickVal >= 1 )
  516. {
  517. lockZeichnung();
  518. if( ( reloadCounter -= 2 ) <= 0 )
  519. {
  520. zm.messungStart();
  521. parser->reload();
  522. zm.messungEnde();
  523. reloadCounter = (int)( zm.getSekunden() * 100 );
  524. }
  525. unlockZeichnung();
  526. tickVal -= 1;
  527. }
  528. }
  529. return __super::tick( tickVal );
  530. }
  531. // Zeichnet den Editor nach rObj
  532. void Editor::render( Bild & rObj )
  533. {
  534. if( hatStyleNicht( Style::Sichtbar ) )
  535. return;
  536. __super::render( rObj );
  537. if( !script || !textRd )
  538. return;
  539. lockZeichnung();
  540. if( !rObj.setDrawOptions( innenPosition, innenSize ) )
  541. {
  542. unlockZeichnung();
  543. return;
  544. }
  545. textRd->setSchriftSize( 12 );
  546. int tbr = textRd->getTextBreite( script->getText() );
  547. int thi = textRd->getTextHeight( script->getText() );
  548. int xxx = 0;
  549. int yyy = 0;
  550. int breite = innenSize.x;
  551. int height = innenSize.y;
  552. bool hs = horizontalScrollBar && hatStyle( Style::HScroll );
  553. bool vs = vertikalScrollBar && hatStyle( Style::VScroll );
  554. if( vs )
  555. yyy -= vertikalScrollBar->getScroll();
  556. if( hs )
  557. xxx -= horizontalScrollBar->getScroll();
  558. parser->reset();
  559. auto colorF = [ this, &rObj ]( int x, int y, int pos ) -> int
  560. {
  561. if( !parser )
  562. return colors[ KSGScriptEditor::ColorType::NORMAL_TEXT ];
  563. int uC = -1;
  564. int tC = colors[ parser->getNextColor( pos, uC ) ];
  565. if( uC >= 0 )
  566. rObj.drawLinieH( x, y + 12, 12, colors[ uC ] );
  567. return tC;
  568. };
  569. if( hatStyle( Style::Fokus ) && hatStyle( Style::Erlaubt ) )
  570. {
  571. if( tickVal <= 0.5 )
  572. textRd->renderText( xxx, yyy, script->getText(), rObj, colorF, cPos, 0xFFFF5555, begF, 0xFF0000FF );
  573. else
  574. textRd->renderText( xxx, yyy, script->getText(), rObj, colorF, cPos, 0x00000000, begF, 0xFF0000FF );
  575. }
  576. else
  577. {
  578. textRd->renderText( xxx, yyy, script->getText(), rObj, colorF );
  579. }
  580. rObj.releaseDrawOptions();
  581. unlockZeichnung();
  582. }
  583. // Setzt die Farbe eines Bestimmten Codetyps
  584. // color: Die Farbe in 0xAARRGGBB Format
  585. // cType: Der Codetyp, der die Farbe bekommen soll
  586. // Setzt die Farbe eines Bestimmten Codetyps
  587. // color: Die Farbe in 0xAARRGGBB Format
  588. // cType: Der Codetyp, der die Farbe bekommen soll
  589. void Editor::setTextColor( int color, ColorType cType )
  590. {
  591. if( cType >= 0 && cType < ColorType::COLOR_ANZAHL )
  592. colors[ cType ] = color;
  593. }
  594. // Reference Counting
  595. Zeichnung *Editor::getThis()
  596. {
  597. return ZeichnungHintergrund::getThis();
  598. }
  599. Zeichnung *Editor::release()
  600. {
  601. return ZeichnungHintergrund::release();
  602. }