12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013 |
- #include "Schrift.h"
- #include "Bild.h"
- #include "Text.h"
- #include "Scroll.h"
- #include "Globals.h"
- #include <Windows.h>
- #include "FrameworkMath.h"
- using namespace Framework;
- // Inhalt der Buchstabe Klasse aus Schrift.h
- // Konstruktor
- Buchstabe::Buchstabe()
- : größe( 0, 0 ),
- pos( 0, 0 ),
- alpha( 0 ),
- schriftGröße( 0 ),
- drawSg( 0 ),
- ref( 1 )
- {
- }
- // Destruktor
- Buchstabe::~Buchstabe()
- {
- if( alpha )
- delete[]alpha;
- }
- // nicht constant
- void Buchstabe::NeuBuchstabe( Punkt &größe ) // Initialisierung
- {
- this->größe = größe;
- if( alpha )
- delete[]alpha;
- alpha = new unsigned char[ größe.x * größe.y ];
- ZeroMemory( alpha, größe.x * größe.y );
- }
- void Buchstabe::setPixel( Punkt &pos, unsigned char alpha ) // setzt den alphawert des Pixels
- {
- this->alpha[ pos.x + pos.y * größe.x ] = alpha;
- }
- void Buchstabe::setPixel( int x, int y, unsigned char alpha )
- {
- this->alpha[ x + y * größe.x ] = alpha;
- }
- void Buchstabe::setPixel( int i, unsigned char alpha )
- {
- this->alpha[ i ] = alpha;
- }
- void Buchstabe::setPosition( Punkt &pos ) // setzt die Buchstabenposition
- {
- this->pos = pos;
- }
- void Buchstabe::setPosition( int x, int y )
- {
- pos.x = x;
- pos.y = y;
- }
- void Buchstabe::setSchriftGröße( int sg ) // setzt die Schriftgröße des Buchstaben
- {
- schriftGröße = sg;
- }
- void Buchstabe::setDrawSchriftGröße( int dsg ) // setzt die Zeichengröße des Buchstaben
- {
- drawSg = dsg;
- }
- // constant
- const Punkt &Buchstabe::getGröße() const // gibt die Buchstabenbildgröße zurück
- {
- return größe;
- }
- int Buchstabe::getBreite() const // Buchstabenbreite
- {
- return (int)( ( (double)größe.x / (double)schriftGröße ) * (double)drawSg + 0.5 );
- }
- int Buchstabe::getHöhe() const // Buchstabenhöhe
- {
- return (int)( ( (double)größe.y / (double)schriftGröße ) *(double)drawSg + 0.5 );
- }
- int Buchstabe::getNormHöhe() const // Buchstabenhöhe
- {
- return größe.y;
- }
- unsigned char *Buchstabe::getBuff() const // gibt den Alphabuffer zurück
- {
- return alpha;
- }
- void Buchstabe::render( Bild &zRObj, int f ) const // Zeichnet nach zRObj
- {
- if( alpha )
- {
- const Punkt &zRObjGr = zRObj.getDrawGr();
- const Punkt &zRObjPos = zRObj.getDrawPos();
- const Punkt &zRObjOff = zRObj.getDrawOff();
- int xp = pos.x + zRObjOff.x, yp = pos.y + zRObjOff.y;
- int xs = xp < zRObjPos.x ? ( zRObjPos.x - xp ) : 0, ys = yp < zRObjPos.y ? ( zRObjPos.y - yp ) : 0;
- int b = größe.x, h = größe.y;
- unsigned char a2 = ( 255 - ( f >> 24 ) );
- f &= 0x00FFFFFF;
- if( schriftGröße == drawSg )
- {
- if( xp >= zRObjGr.x || yp >= zRObjGr.y || xp + b < zRObjPos.x || yp + h < zRObjPos.y )
- return;
- b = ( xp + b ) > zRObjGr.x ? ( zRObjGr.x - xp ) : b;
- h = ( yp + h ) > zRObjGr.y ? ( zRObjGr.y - yp ) : h;
- if( !a2 )
- {
- int xx, ygr = ( ys - 1 ) * größe.x, ygr2 = ( yp + ys - 1 ) * zRObj.getBreite();
- for( int yy = ys; yy < h; ++yy )
- {
- ygr += größe.x;
- ygr2 += zRObj.getBreite();
- for( xx = xs; xx < b; ++xx )
- zRObj.alphaPixel( xp + xx + ygr2, f | ( alpha[ xx + ygr ] << 24 ) );
- }
- }
- else
- {
- int a;
- int xx, ygr = ( ys - 1 ) * größe.x, ygr2 = ( yp + ys - 1 ) * zRObj.getBreite();
- for( int yy = ys; yy < h; ++yy )
- {
- ygr += größe.x;
- ygr2 += zRObj.getBreite();
- for( xx = xs; xx < b; ++xx )
- {
- a = alpha[ xx + ygr ] - a2;
- if( a > 0 )
- zRObj.alphaPixel( xp + xx + ygr2, f | ( a << 24 ) );
- }
- }
- }
- }
- else
- {
- double xoff = (double)schriftGröße / (double)drawSg,
- yoff = (double)schriftGröße / (double)drawSg;
- double x = xs * xoff, y = ys * yoff;
- int maxX = getBreite(), maxY = getHöhe();
- maxX = ( xp + maxX ) >= zRObjGr.x ? ( zRObjGr.x - xp ) : maxX;
- maxY = ( yp + maxY ) >= zRObjGr.y ? ( zRObjGr.y - yp ) : maxY;
- if( !a2 )
- {
- int dx, ygr, ygr2;
- for( int dy = ys; dy < maxY; ++dy )
- {
- ygr2 = ( yp + dy ) * zRObj.getBreite();
- ygr = (int)y * b;
- for( dx = xs; dx < maxX; ++dx )
- {
- zRObj.alphaPixel( xp + dx + ygr2, f | ( alpha[ (int)x + ygr ] << 24 ) );
- x += xoff;
- }
- x = xs;
- y += yoff;
- }
- }
- else
- {
- int a, dx, ygr, ygr2;
- for( int dy = ys; dy < maxY; ++dy )
- {
- ygr2 = ( yp + dy ) * zRObj.getBreite();
- ygr = (int)y * b;
- for( dx = xs; dx < maxX; ++dx )
- {
- a = alpha[ (int)x + ygr ] - a2;
- zRObj.alphaPixel( xp + dx + ygr2, f | ( a << 24 ) );
- x += xoff;
- }
- x = xs;
- y += yoff;
- }
- }
- }
- }
- }
- // Reference Counting
- Buchstabe *Buchstabe::getThis()
- {
- ++ref;
- return this;
- }
- Buchstabe *Buchstabe::release()
- {
- --ref;
- if( ref == 0 )
- delete this;
- return 0;
- }
- // Inhalt der Alphabet Klasse aus Schrift.h
- // Konstruktor
- Alphabet::Alphabet()
- : zeichen( new Buchstabe*[ 256 ] ),
- schriftGröße( 12 ),
- drawSchriftGröße( 12 ),
- pos( 0, 0 ),
- zeilenHöhe( 0 ),
- zeilenAbstand( 5 ),
- ref( 1 )
- {
- for( int i = 0; i < 256; ++i )
- zeichen[ i ] = 0;
- }
- // Destruktor
- Alphabet::~Alphabet()
- {
- for( int i = 0; i < 256; ++i )
- {
- if( zeichen[ i ] )
- zeichen[ i ]->release();
- }
- delete[]zeichen;
- }
- // nicht constant
- void Alphabet::NeuAlphabet() // Initialisierung
- {
- for( int i = 0; i < 256; ++i )
- {
- if( zeichen[ i ] )
- zeichen[ i ]->release();
- }
- for( int i = 0; i < 256; ++i )
- zeichen[ i ] = 0;
- zeilenHöhe = 0;
- }
- void Alphabet::setBuchstabe( unsigned char i, Buchstabe *buchstabe ) // setzt einen Buchstaben
- {
- if( zeichen[ i ] )
- zeichen[ i ]->release();
- zeichen[ i ] = buchstabe;
- if( zeichen[ i ] )
- {
- zeichen[ i ]->setSchriftGröße( schriftGröße );
- zeichen[ i ]->setDrawSchriftGröße( drawSchriftGröße );
- }
- zeilenHöhe = 0;
- for( int i = 0; i < 256; ++i )
- {
- if( zeichen[ i ] != 0 )
- zeilenHöhe = maxInt( zeichen[ i ]->getHöhe(), zeilenHöhe );
- }
- }
- void Alphabet::setSchriftgröße( int gr ) // setzt die Schriftgröße
- {
- schriftGröße = gr;
- for( int i = 0; i < 256; ++i )
- {
- if( zeichen[ i ] )
- zeichen[ i ]->setSchriftGröße( gr );
- }
- }
- void Alphabet::setDrawSchriftgröße( int gr ) // setzt die Zeichengröße
- {
- drawSchriftGröße = gr;
- for( int i = 0; i < 256; ++i )
- {
- if( zeichen[ i ] )
- zeichen[ i ]->setDrawSchriftGröße( gr );
- }
- }
- void Alphabet::setZeilenAbstand( int za ) // setzt die Zeilenhöhe( Zeilenabstand )
- {
- zeilenAbstand = za;
- }
- void Alphabet::setDrawPosition( Punkt &pos ) // setzt die Draw Position
- {
- this->pos = pos;
- }
- void Alphabet::setDrawPosition( int x, int y )
- {
- pos.x = x;
- pos.y = y;
- }
- // constant
- Buchstabe *Alphabet::getBuchstabe( unsigned char i ) const // gibt einen Buchstaben zurück
- {
- if( zeichen[ i ] )
- return zeichen[ i ]->getThis();
- return 0;
- }
- Buchstabe *Alphabet::zBuchstabe( unsigned char i ) const
- {
- return zeichen[ i ];
- }
- bool Alphabet::hatBuchstabe( unsigned char b ) const
- {
- return zeichen[ b ] != 0;
- }
- int Alphabet::getSchriftgröße() const // gibt die Schriftgröße zurück
- {
- return schriftGröße;
- }
- int Alphabet::getDrawSchriftGröße() const // gibt die Zeichengröße zurück
- {
- return drawSchriftGröße;
- }
- int Alphabet::getZeilenAbstand() const // gibt den Zeilenabstand zurück
- {
- return zeilenAbstand;
- }
- int Alphabet::getZeilenHöhe() const // gibt die Höhe des höchsten Zeichens zurück
- {
- return (int)( (double)zeilenHöhe / schriftGröße * drawSchriftGröße + 0.5 );
- }
- const Punkt &Alphabet::getPosition() const // gibt die DrawPosition zurück
- {
- return pos;
- }
- int Alphabet::getTextBreite( Text *zTxt ) const // gibt die Breite des Textes zurück
- {
- int ret = 0;
- int län = zTxt->getLänge();
- char *buff = zTxt->getText();
- unsigned char c = 0;
- int tmp = 0;
- for( int i = 0; i < län; ++i )
- {
- c = (unsigned char)buff[ i ];
- if( buff[ i ] == '\n' )
- {
- if( tmp > ret )
- ret = tmp;
- tmp = 0;
- }
- else if( buff[ i ] == '\r' )
- {
- i += 10;
- continue;
- }
- else if( buff[ i ] == '\t' )
- tmp += drawSchriftGröße;
- else if( buff[ i ] == ' ' )
- tmp += drawSchriftGröße / 2;
- else if( zeichen[ c ] )
- tmp += zeichen[ c ]->getBreite();
- }
- if( tmp > ret )
- ret = tmp;
- return ret;
- }
- int Alphabet::getTextHöhe( Text *zTxt ) const // gibt die Höhe des Textes zurück
- {
- int hö = getZeilenHöhe();
- return hö + ( ( hö + zeilenAbstand ) * zTxt->anzahlVon( '\n' ) );
- }
- int Alphabet::textPos( Text *zText, int mausX, int mausY ) const // gibt den Buchstaben zurück, auf den die Maus zeigt
- {
- char *buffer = zText->getText();
- int län = zText->getLänge();
- int tx = 0;
- int ty = 0;
- int sh = getZeilenHöhe();
- if( mausX < 0 || mausY < 0 )
- return -1;
- for( int i = 0; i < län; ++i )
- {
- if( buffer[ i ] == '\n' )
- {
- ty += sh + zeilenAbstand;
- tx = 0;
- if( mausY < ty )
- return i;
- }
- if( buffer[ i ] == '\t' )
- tx += drawSchriftGröße;
- if( buffer[ i ] == ' ' )
- tx += drawSchriftGröße / 2;
- if( zeichen[ (unsigned char)buffer[ i ] ] )
- tx += zeichen[ (unsigned char)buffer[ i ] ]->getBreite();
- int txpl = 0;
- if( zeichen[ (unsigned char)buffer[ i + 1 ] ] )
- txpl = zeichen[ (unsigned char)buffer[ i + 1 ] ]->getBreite() / 2;
- if( mausX < tx - txpl && mausY < ty + sh + zeilenAbstand )
- return i;
- }
- if( mausY < ty + sh + zeilenAbstand )
- return län;
- return -1;
- }
- void Alphabet::textFormatieren( Text *zText, int maxBreite, int schriftGröße ) // fügt zeilenumbrüche ein
- {
- int sg = drawSchriftGröße;
- setDrawSchriftgröße( schriftGröße );
- int zeilenHöhe = getZeilenHöhe() + getZeilenAbstand();
- int lastPos = -1;
- int län = zText->getLänge();
- char *txt = zText->getText();
- int x = 0;
- Text result = zText->getText();
- for( int i = 0; i < län; ++i )
- {
- char c = txt[ i ];
- if( c == ' ' )
- {
- lastPos = i;
- x += schriftGröße / 2;
- continue;
- }
- if( c == '\t' )
- {
- lastPos = i;
- x += schriftGröße;
- continue;
- }
- if( c == '\n' )
- {
- x = 0;
- lastPos = -1;
- continue;
- }
- if( c == '\r' && län - i >= 11 )
- {
- i += 10;
- continue;
- }
- Buchstabe *b = getBuchstabe( (unsigned)c );
- if( b )
- {
- x += b->getBreite();
- if( x > maxBreite && lastPos > -1 )
- {
- result.ersetzen( lastPos, lastPos + 1, "\n" );
- x = 0;
- i = lastPos;
- lastPos = -1;
- }
- b = b->release();
- }
- }
- zText->setText( result );
- setDrawSchriftgröße( sg );
- }
- void Alphabet::render( Text *zTxt, Bild &rendezRObj, int f ) const // Zeichnet txt nach rendezRObj
- {
- int zRObjBr = rendezRObj.getBreite();
- int zRObjHö = rendezRObj.getHöhe();
- int xp = pos.x;
- int yp = pos.y;
- int zh = getZeilenHöhe();
- if( yp + ( zh + zeilenAbstand ) * zTxt->anzahlVon( '\n' ) + zh < 0 || xp >= zRObjBr || yp >= zRObjHö )
- return;
- char *text = zTxt->getText();
- int län = zTxt->getLänge();
- for( int i = 0; i < län; ++i )
- {
- unsigned char c = text[ i ];
- if( c == ' ' )
- {
- xp += drawSchriftGröße / 2;
- continue;
- }
- if( c == '\t' )
- {
- xp += drawSchriftGröße;
- continue;
- }
- if( c == '\n' )
- {
- yp += zh + zeilenAbstand;
- xp = pos.x;
- continue;
- }
- if( c == '\r' && län - i >= 11 )
- {
- i += 3;
- Text *hex1 = zTxt->getTeilText( i, i + 6 );
- Text *hex2 = zTxt->getTeilText( i + 6, i + 8 );
- f = ( TextZuInt( hex1->getText(), 16 ) << 8 ) |
- ( TextZuInt( hex2->getText(), 16 ) );
- hex1->release();
- hex2->release();
- i += 7;
- continue;
- }
- if( zeichen[ c ] )
- {
- if( xp >= zRObjBr )
- continue;
- zeichen[ c ]->setPosition( xp, yp );
- zeichen[ c ]->render( rendezRObj, f );
- xp += zeichen[ c ]->getBreite();
- }
- }
- }
- void Alphabet::render( Text *zTxt, Bild &rendezRObj, int cpos, int cf, int fbeg, int ff, int f ) const
- {
- int zRObjBr = rendezRObj.getBreite();
- int zRObjHö = rendezRObj.getHöhe();
- int xp = pos.x;
- int yp = pos.y;
- int zh = getZeilenHöhe();
- if( yp + ( zh + zeilenAbstand ) * zTxt->anzahlVon( '\n' ) + zh < 0 || xp >= zRObjBr || yp >= zRObjHö )
- return;
- char *text = zTxt->getText();
- int län = zTxt->getLänge();
- bool färb = 0;
- for( int i = 0; i < län; ++i )
- {
- unsigned char c = text[ i ];
- if( i == fbeg )
- färb = !färb;
- if( i == cpos )
- {
- rendezRObj.drawLinieVAlpha( xp, yp, zh, cf );
- färb = !färb;
- }
- if( c == ' ' )
- {
- if( färb )
- rendezRObj.alphaRegion( xp, yp, drawSchriftGröße / 2, zh, ff );
- xp += drawSchriftGröße / 2;
- continue;
- }
- if( c == '\t' )
- {
- if( färb )
- rendezRObj.alphaRegion( xp, yp, drawSchriftGröße, zh, ff );
- xp += drawSchriftGröße;
- continue;
- }
- if( c == '\n' )
- {
- yp += zh + zeilenAbstand;
- xp = pos.x;
- continue;
- }
- if( c == '\r' && län - i >= 11 )
- {
- i += 3;
- Text *hex1 = zTxt->getTeilText( i, i + 6 );
- Text *hex2 = zTxt->getTeilText( i + 6, i + 8 );
- f = ( TextZuInt( hex1->getText(), 16 ) << 8 ) |
- ( TextZuInt( hex2->getText(), 16 ) );
- hex1->release();
- hex2->release();
- i += 7;
- continue;
- }
- if( zeichen[ c ] )
- {
- if( xp >= zRObjBr )
- continue;
- if( färb )
- {
- int br = zeichen[ c ]->getBreite();
- rendezRObj.alphaRegion( xp, yp, br, zh, ff );
- }
- zeichen[ c ]->setPosition( xp, yp );
- zeichen[ c ]->render( rendezRObj, f );
- xp += zeichen[ c ]->getBreite();
- }
- }
- if( län == cpos )
- rendezRObj.drawLinieVAlpha( xp, yp, zh, cf );
- }
- // Reference Counting
- Alphabet *Alphabet::getThis()
- {
- ++ref;
- return this;
- }
- Alphabet *Alphabet::release()
- {
- --ref;
- if( ref == 0 )
- delete this;
- return 0;
- }
- // Inhalt der AlphabetArray Klasse aus Schrift.h
- // Konstruktor
- AlphabetArray::AlphabetArray()
- : next( 0 ),
- This( 0 )
- {
- }
- // Destruktor
- AlphabetArray::~AlphabetArray()
- {
- if( This )
- This->release();
- delete next;
- }
- // nicht constant
- bool AlphabetArray::addAlphabet( Alphabet *alphabet ) // Fügt ein Alphabet hinzu
- {
- if( This )
- {
- if( This->getSchriftgröße() == alphabet->getSchriftgröße() )
- {
- alphabet->release();
- return false;
- }
- }
- else
- {
- This = alphabet;
- return true;
- }
- if( !next )
- next = new AlphabetArray();
- return next->addAlphabet( alphabet );
- }
- bool AlphabetArray::removeAlphabet( int sg ) // entfernt ein Alphabet
- {
- if( This )
- {
- if( This->getSchriftgröße() == sg )
- This = This->release();
- return 1;
- }
- if( !next )
- return 0;
- if( next->removeAlphabet( sg ) )
- {
- AlphabetArray *tmp = next->getNext();
- next->setNext0();
- delete next;
- next = tmp;
- }
- return 0;
- }
- void AlphabetArray::setDrawSchriftGröße( int sg ) // Setzt die Draw Schriftgröße aller Alphabete
- {
- if( This )
- This->setDrawSchriftgröße( sg );
- if( next )
- next->setDrawSchriftGröße( sg );
- }
- void AlphabetArray::setZeilenAbstand( int za ) // setzt den Zeilenabstant aller Alphabete
- {
- if( This )
- This->setZeilenAbstand( za );
- if( next )
- next->setZeilenAbstand( za );
- }
- void AlphabetArray::setNext0() // setzt den next Zeiger zu 0
- {
- next = 0;
- }
- // constant
- Alphabet *AlphabetArray::getAlphabet( unsigned char sg ) const // gibt getThis von einem Alphabet zurück
- {
- if( !This )
- return 0;
- if( This->getSchriftgröße() == sg )
- return This->getThis();
- if( next )
- return next->getAlphabet( sg );
- return 0;
- }
- Alphabet *AlphabetArray::zAlphabet( unsigned char sg ) const // gibt ein Alphabet zurück
- {
- if( !This )
- return 0;
- if( This->getSchriftgröße() == sg )
- return This;
- if( next )
- return next->zAlphabet( sg );
- return 0;
- }
- Alphabet *AlphabetArray::getAlphabetI( int index, int count ) const
- {
- if( count == index )
- return This->getThis();
- if( next )
- return next->getAlphabetI( index, count + 1 );
- return 0;
- }
- Alphabet *AlphabetArray::zAlphabetI( int index, int count ) const
- {
- if( count == index )
- return This;
- if( next )
- return next->zAlphabetI( index, count + 1 );
- return 0;
- }
- AlphabetArray *AlphabetArray::getNext() const // gibt das nächste Alphabet zurück
- {
- return next;
- }
- // Inhalt der Schrift Klasse aus Schrift.h
- // Konstruktor
- Schrift::Schrift()
- : alphabetAnzahl( 0 ),
- alphabet( new AlphabetArray() ),
- schriftGröße( 12 ),
- zeilenAbstand( 5 ),
- drawPos( 0, 0 ),
- ref( 1 )
- {
- InitializeCriticalSection( &cs );
- }
- // Destruktor
- Schrift::~Schrift()
- {
- delete alphabet;
- DeleteCriticalSection( &cs );
- }
- // nicht constant
- void Schrift::lock() // lockt die Schrift
- {
- EnterCriticalSection( &cs );
- }
- void Schrift::unlock() // unlockt die Schrift
- {
- LeaveCriticalSection( &cs );
- }
- bool Schrift::addAlphabet( Alphabet *alphabet ) // Fügt der Schrift ein Alphabet hinzu
- {
- lock();
- if( this->alphabet->addAlphabet( alphabet ) )
- {
- ++alphabetAnzahl;
- alphabet->setDrawSchriftgröße( schriftGröße );
- unlock();
- return true;
- }
- unlock();
- return false;
- }
- void Schrift::removeAlphabet( int sg ) // Entfernt ein Alphabet
- {
- lock();
- if( alphabet->removeAlphabet( sg ) )
- --alphabetAnzahl;
- unlock();
- }
- void Schrift::setDrawPosition( int x, int y ) // setzt die Zeichenposition
- {
- lock();
- drawPos.x = x;
- drawPos.y = y;
- unlock();
- }
- void Schrift::setDrawPosition( Punkt &pos )
- {
- lock();
- drawPos = pos;
- unlock();
- }
- void Schrift::setSchriftGröße( int sg ) // setzt die Schriftgröße
- {
- lock();
- schriftGröße = sg;
- alphabet->setDrawSchriftGröße( sg );
- unlock();
- }
- void Schrift::setZeilenAbstand( int za ) // setzt den Zeilenabstand
- {
- lock();
- zeilenAbstand = za;
- alphabet->setZeilenAbstand( za );
- unlock();
- }
- void Schrift::textFormatieren( Text *zText, int maxBreite, int schriftGröße ) // fügt zeilenumbrüche ein
- {
- lock();
- Alphabet *drawAlphabet = alphabet->zAlphabet( schriftGröße );
- if( !drawAlphabet )
- {
- for( int i = 0; i < 256; ++i )
- {
- drawAlphabet = alphabet->zAlphabet( schriftGröße - i );
- if( drawAlphabet )
- break;
- drawAlphabet = alphabet->zAlphabet( schriftGröße + i );
- if( drawAlphabet )
- break;
- }
- }
- if( drawAlphabet )
- drawAlphabet->textFormatieren( zText, maxBreite, schriftGröße );
- unlock();
- }
- void Schrift::renderText( Text *zTxt, Bild &zRObj, int f ) // zeichnet txt nach zRObj
- {
- lock();
- Alphabet *drawAlphabet = alphabet->zAlphabet( schriftGröße );
- if( !drawAlphabet )
- {
- for( int i = 0; i < 256; ++i )
- {
- drawAlphabet = alphabet->zAlphabet( schriftGröße - i );
- if( drawAlphabet )
- break;
- drawAlphabet = alphabet->zAlphabet( schriftGröße + i );
- if( drawAlphabet )
- break;
- }
- }
- if( drawAlphabet )
- {
- drawAlphabet->setDrawPosition( drawPos.x, drawPos.y );
- drawAlphabet->render( zTxt, zRObj, f );
- }
- unlock();
- }
- void Schrift::renderText( Text *zTxt, Bild &zRObj, int cpos, int cf, int fbeg, int ff, int f )
- {
- lock();
- Alphabet *drawAlphabet = alphabet->zAlphabet( schriftGröße );
- if( !drawAlphabet )
- {
- for( int i = 0; i < 256; ++i )
- {
- drawAlphabet = alphabet->zAlphabet( schriftGröße - i );
- if( drawAlphabet )
- break;
- drawAlphabet = alphabet->zAlphabet( schriftGröße + i );
- if( drawAlphabet )
- break;
- }
- }
- if( drawAlphabet )
- {
- drawAlphabet->setDrawPosition( drawPos.x, drawPos.y );
- drawAlphabet->render( zTxt, zRObj, cpos, cf, fbeg, ff, f );
- }
- unlock();
- }
- // constant
- Alphabet *Schrift::getAlphabet( int sg ) const // gibt einen Alphaberarray zurück
- {
- return alphabet->getAlphabet( sg );
- }
- Alphabet *Schrift::zAlphabet( int sg ) const
- {
- return alphabet->zAlphabet( sg );
- }
- Alphabet *Schrift::getAlphabetI( int index ) const
- {
- return alphabet->getAlphabetI( index, 0 );
- }
- Alphabet *Schrift::zAlphabetI( int index ) const
- {
- return alphabet->zAlphabetI( index, 0 );
- }
- unsigned char Schrift::getAlphabetAnzahl() const // gibt die anzahl von in der Schrift enthaltenen Alphabeten zurück
- {
- return alphabetAnzahl;
- }
- int Schrift::getSchriftGröße() const // gibt die Schriftgröße zurück
- {
- return schriftGröße;
- }
- int Schrift::getZeilenabstand() const // gibt den Zeilenabstand zurück
- {
- return zeilenAbstand;
- }
- int Schrift::getDrawX() const // gibt die Zeichenposition zurück
- {
- return drawPos.x;
- }
- int Schrift::getDrawY() const
- {
- return drawPos.y;
- }
- const Punkt &Schrift::getDrawPosition() const
- {
- return drawPos;
- }
- int Schrift::getTextBreite( Text *zTxt ) const // gibt die Breite des Textes zurück
- {
- Alphabet *drawAlphabet = alphabet->zAlphabet( schriftGröße );
- if( !drawAlphabet )
- {
- for( int i = 0; i < 256; ++i )
- {
- drawAlphabet = alphabet->zAlphabet( schriftGröße - i );
- if( drawAlphabet )
- break;
- drawAlphabet = alphabet->zAlphabet( schriftGröße + i );
- if( drawAlphabet )
- break;
- }
- }
- if( !drawAlphabet )
- return 0;
- return drawAlphabet->getTextBreite( zTxt );
- }
- int Schrift::getTextHöhe( Text *zTxt ) const // gibt die Höhe des Textes zurück
- {
- Alphabet *drawAlphabet = alphabet->zAlphabet( schriftGröße );
- if( !drawAlphabet )
- {
- for( int i = 0; i < 256; ++i )
- {
- drawAlphabet = alphabet->zAlphabet( schriftGröße - i );
- if( drawAlphabet )
- break;
- drawAlphabet = alphabet->zAlphabet( schriftGröße + i );
- if( drawAlphabet )
- break;
- }
- }
- if( !drawAlphabet )
- return 0;
- return drawAlphabet->getTextHöhe( zTxt );
- }
- int Schrift::textPos( Text *zTxt, int mausX, int mausY ) const // gibt den Buchstaben zurück, auf den die Maus zeigt
- {
- Alphabet *drawAlphabet = alphabet->zAlphabet( schriftGröße );
- if( !drawAlphabet )
- {
- for( int i = 0; i < 256; ++i )
- {
- drawAlphabet = alphabet->zAlphabet( schriftGröße - i );
- if( drawAlphabet )
- break;
- drawAlphabet = alphabet->zAlphabet( schriftGröße + i );
- if( drawAlphabet )
- break;
- }
- }
- if( !drawAlphabet )
- return 0;
- return drawAlphabet->textPos( zTxt, mausX, mausY );
- }
- // Reference Counting
- Schrift *Schrift::getThis()
- {
- ++ref;
- return this;
- }
- Schrift *Schrift::release()
- {
- --ref;
- if( ref == 0 )
- delete this;
- return 0;
- }
|