text_server_adv.cpp 191 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456
  1. /*************************************************************************/
  2. /* text_server_adv.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "text_server_adv.h"
  31. #ifdef GDEXTENSION
  32. // Headers for building as GDExtension plug-in.
  33. #include <godot_cpp/classes/file.hpp>
  34. #include <godot_cpp/classes/rendering_server.hpp>
  35. #include <godot_cpp/classes/translation_server.hpp>
  36. #include <godot_cpp/core/error_macros.hpp>
  37. using namespace godot;
  38. #else
  39. // Headers for building as built-in module.
  40. #include "core/core_bind.h"
  41. #include "core/error/error_macros.h"
  42. #include "core/string/print_string.h"
  43. #include "core/string/translation.h"
  44. #include "modules/modules_enabled.gen.h" // For freetype, msdfgen.
  45. using namespace core_bind;
  46. #endif
  47. // Built-in ICU data.
  48. #ifdef ICU_STATIC_DATA
  49. #include "icudata.gen.h"
  50. #endif
  51. // Thirdparty headers.
  52. #ifdef MODULE_MSDFGEN_ENABLED
  53. #include "core/ShapeDistanceFinder.h"
  54. #include "core/contour-combiners.h"
  55. #include "core/edge-selectors.h"
  56. #include "msdfgen.h"
  57. #endif
  58. /*************************************************************************/
  59. /* bmp_font_t HarfBuzz Bitmap font interface */
  60. /*************************************************************************/
  61. hb_font_funcs_t *TextServerAdvanced::funcs = nullptr;
  62. TextServerAdvanced::bmp_font_t *TextServerAdvanced::_bmp_font_create(TextServerAdvanced::FontDataForSizeAdvanced *p_face, bool p_unref) {
  63. bmp_font_t *bm_font = memnew(bmp_font_t);
  64. if (!bm_font) {
  65. return nullptr;
  66. }
  67. bm_font->face = p_face;
  68. bm_font->unref = p_unref;
  69. return bm_font;
  70. }
  71. void TextServerAdvanced::_bmp_font_destroy(void *p_data) {
  72. bmp_font_t *bm_font = reinterpret_cast<bmp_font_t *>(p_data);
  73. memdelete(bm_font);
  74. }
  75. hb_bool_t TextServerAdvanced::_bmp_get_nominal_glyph(hb_font_t *p_font, void *p_font_data, hb_codepoint_t p_unicode, hb_codepoint_t *r_glyph, void *p_user_data) {
  76. const bmp_font_t *bm_font = reinterpret_cast<const bmp_font_t *>(p_font_data);
  77. if (!bm_font->face) {
  78. return false;
  79. }
  80. if (!bm_font->face->glyph_map.has(p_unicode)) {
  81. if (bm_font->face->glyph_map.has(0xf000u + p_unicode)) {
  82. *r_glyph = 0xf000u + p_unicode;
  83. return true;
  84. } else {
  85. return false;
  86. }
  87. }
  88. *r_glyph = p_unicode;
  89. return true;
  90. }
  91. hb_position_t TextServerAdvanced::_bmp_get_glyph_h_advance(hb_font_t *p_font, void *p_font_data, hb_codepoint_t p_glyph, void *p_user_data) {
  92. const bmp_font_t *bm_font = reinterpret_cast<const bmp_font_t *>(p_font_data);
  93. if (!bm_font->face) {
  94. return 0;
  95. }
  96. if (!bm_font->face->glyph_map.has(p_glyph)) {
  97. return 0;
  98. }
  99. return bm_font->face->glyph_map[p_glyph].advance.x * 64;
  100. }
  101. hb_position_t TextServerAdvanced::_bmp_get_glyph_v_advance(hb_font_t *p_font, void *p_font_data, hb_codepoint_t p_glyph, void *p_user_data) {
  102. const bmp_font_t *bm_font = reinterpret_cast<const bmp_font_t *>(p_font_data);
  103. if (!bm_font->face) {
  104. return 0;
  105. }
  106. if (!bm_font->face->glyph_map.has(p_glyph)) {
  107. return 0;
  108. }
  109. return -bm_font->face->glyph_map[p_glyph].advance.y * 64;
  110. }
  111. hb_position_t TextServerAdvanced::_bmp_get_glyph_h_kerning(hb_font_t *p_font, void *p_font_data, hb_codepoint_t p_left_glyph, hb_codepoint_t p_right_glyph, void *p_user_data) {
  112. const bmp_font_t *bm_font = reinterpret_cast<const bmp_font_t *>(p_font_data);
  113. if (!bm_font->face) {
  114. return 0;
  115. }
  116. if (!bm_font->face->kerning_map.has(Vector2i(p_left_glyph, p_right_glyph))) {
  117. return 0;
  118. }
  119. return bm_font->face->kerning_map[Vector2i(p_left_glyph, p_right_glyph)].x * 64;
  120. }
  121. hb_bool_t TextServerAdvanced::_bmp_get_glyph_v_origin(hb_font_t *p_font, void *p_font_data, hb_codepoint_t p_glyph, hb_position_t *r_x, hb_position_t *r_y, void *p_user_data) {
  122. const bmp_font_t *bm_font = reinterpret_cast<const bmp_font_t *>(p_font_data);
  123. if (!bm_font->face) {
  124. return false;
  125. }
  126. if (!bm_font->face->glyph_map.has(p_glyph)) {
  127. return false;
  128. }
  129. *r_x = bm_font->face->glyph_map[p_glyph].advance.x * 32;
  130. *r_y = -bm_font->face->ascent * 64;
  131. return true;
  132. }
  133. hb_bool_t TextServerAdvanced::_bmp_get_glyph_extents(hb_font_t *p_font, void *p_font_data, hb_codepoint_t p_glyph, hb_glyph_extents_t *r_extents, void *p_user_data) {
  134. const bmp_font_t *bm_font = reinterpret_cast<const bmp_font_t *>(p_font_data);
  135. if (!bm_font->face) {
  136. return false;
  137. }
  138. if (!bm_font->face->glyph_map.has(p_glyph)) {
  139. return false;
  140. }
  141. r_extents->x_bearing = 0;
  142. r_extents->y_bearing = 0;
  143. r_extents->width = bm_font->face->glyph_map[p_glyph].rect.size.x * 64;
  144. r_extents->height = bm_font->face->glyph_map[p_glyph].rect.size.y * 64;
  145. return true;
  146. }
  147. hb_bool_t TextServerAdvanced::_bmp_get_font_h_extents(hb_font_t *p_font, void *p_font_data, hb_font_extents_t *r_metrics, void *p_user_data) {
  148. const bmp_font_t *bm_font = reinterpret_cast<const bmp_font_t *>(p_font_data);
  149. if (!bm_font->face) {
  150. return false;
  151. }
  152. r_metrics->ascender = bm_font->face->ascent;
  153. r_metrics->descender = bm_font->face->descent;
  154. r_metrics->line_gap = 0;
  155. return true;
  156. }
  157. void TextServerAdvanced::_bmp_create_font_funcs() {
  158. if (funcs == nullptr) {
  159. funcs = hb_font_funcs_create();
  160. hb_font_funcs_set_font_h_extents_func(funcs, _bmp_get_font_h_extents, nullptr, nullptr);
  161. hb_font_funcs_set_nominal_glyph_func(funcs, _bmp_get_nominal_glyph, nullptr, nullptr);
  162. hb_font_funcs_set_glyph_h_advance_func(funcs, _bmp_get_glyph_h_advance, nullptr, nullptr);
  163. hb_font_funcs_set_glyph_v_advance_func(funcs, _bmp_get_glyph_v_advance, nullptr, nullptr);
  164. hb_font_funcs_set_glyph_v_origin_func(funcs, _bmp_get_glyph_v_origin, nullptr, nullptr);
  165. hb_font_funcs_set_glyph_h_kerning_func(funcs, _bmp_get_glyph_h_kerning, nullptr, nullptr);
  166. hb_font_funcs_set_glyph_extents_func(funcs, _bmp_get_glyph_extents, nullptr, nullptr);
  167. hb_font_funcs_make_immutable(funcs);
  168. }
  169. }
  170. void TextServerAdvanced::_bmp_free_font_funcs() {
  171. if (funcs != nullptr) {
  172. hb_font_funcs_destroy(funcs);
  173. funcs = nullptr;
  174. }
  175. }
  176. void TextServerAdvanced::_bmp_font_set_funcs(hb_font_t *p_font, TextServerAdvanced::FontDataForSizeAdvanced *p_face, bool p_unref) {
  177. hb_font_set_funcs(p_font, funcs, _bmp_font_create(p_face, p_unref), _bmp_font_destroy);
  178. }
  179. hb_font_t *TextServerAdvanced::_bmp_font_create(TextServerAdvanced::FontDataForSizeAdvanced *p_face, hb_destroy_func_t p_destroy) {
  180. hb_font_t *font;
  181. hb_face_t *face = hb_face_create(nullptr, 0);
  182. font = hb_font_create(face);
  183. hb_face_destroy(face);
  184. _bmp_font_set_funcs(font, p_face, false);
  185. return font;
  186. }
  187. /*************************************************************************/
  188. /* Character properties. */
  189. /*************************************************************************/
  190. _FORCE_INLINE_ bool is_ain(char32_t p_chr) {
  191. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_AIN;
  192. }
  193. _FORCE_INLINE_ bool is_alef(char32_t p_chr) {
  194. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_ALEF;
  195. }
  196. _FORCE_INLINE_ bool is_beh(char32_t p_chr) {
  197. int32_t prop = u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP);
  198. return (prop == U_JG_BEH) || (prop == U_JG_NOON) || (prop == U_JG_AFRICAN_NOON) || (prop == U_JG_NYA) || (prop == U_JG_YEH) || (prop == U_JG_FARSI_YEH);
  199. }
  200. _FORCE_INLINE_ bool is_dal(char32_t p_chr) {
  201. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_DAL;
  202. }
  203. _FORCE_INLINE_ bool is_feh(char32_t p_chr) {
  204. return (u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_FEH) || (u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_AFRICAN_FEH);
  205. }
  206. _FORCE_INLINE_ bool is_gaf(char32_t p_chr) {
  207. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_GAF;
  208. }
  209. _FORCE_INLINE_ bool is_heh(char32_t p_chr) {
  210. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_HEH;
  211. }
  212. _FORCE_INLINE_ bool is_kaf(char32_t p_chr) {
  213. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_KAF;
  214. }
  215. _FORCE_INLINE_ bool is_lam(char32_t p_chr) {
  216. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_LAM;
  217. }
  218. _FORCE_INLINE_ bool is_qaf(char32_t p_chr) {
  219. return (u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_QAF) || (u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_AFRICAN_QAF);
  220. }
  221. _FORCE_INLINE_ bool is_reh(char32_t p_chr) {
  222. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_REH;
  223. }
  224. _FORCE_INLINE_ bool is_seen_sad(char32_t p_chr) {
  225. return (u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_SAD) || (u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_SEEN);
  226. }
  227. _FORCE_INLINE_ bool is_tah(char32_t p_chr) {
  228. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_TAH;
  229. }
  230. _FORCE_INLINE_ bool is_teh_marbuta(char32_t p_chr) {
  231. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_TEH_MARBUTA;
  232. }
  233. _FORCE_INLINE_ bool is_yeh(char32_t p_chr) {
  234. int32_t prop = u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP);
  235. return (prop == U_JG_YEH) || (prop == U_JG_FARSI_YEH) || (prop == U_JG_YEH_BARREE) || (prop == U_JG_BURUSHASKI_YEH_BARREE) || (prop == U_JG_YEH_WITH_TAIL);
  236. }
  237. _FORCE_INLINE_ bool is_waw(char32_t p_chr) {
  238. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_GROUP) == U_JG_WAW;
  239. }
  240. _FORCE_INLINE_ bool is_transparent(char32_t p_chr) {
  241. return u_getIntPropertyValue(p_chr, UCHAR_JOINING_TYPE) == U_JT_TRANSPARENT;
  242. }
  243. _FORCE_INLINE_ bool is_ligature(char32_t p_chr, char32_t p_nchr) {
  244. return (is_lam(p_chr) && is_alef(p_nchr));
  245. }
  246. _FORCE_INLINE_ bool is_connected_to_prev(char32_t p_chr, char32_t p_pchr) {
  247. int32_t prop = u_getIntPropertyValue(p_pchr, UCHAR_JOINING_TYPE);
  248. return (prop != U_JT_RIGHT_JOINING) && (prop != U_JT_NON_JOINING) ? !is_ligature(p_pchr, p_chr) : false;
  249. }
  250. /*************************************************************************/
  251. bool TextServerAdvanced::has_feature(Feature p_feature) const {
  252. switch (p_feature) {
  253. case FEATURE_SIMPLE_LAYOUT:
  254. case FEATURE_BIDI_LAYOUT:
  255. case FEATURE_VERTICAL_LAYOUT:
  256. case FEATURE_SHAPING:
  257. case FEATURE_KASHIDA_JUSTIFICATION:
  258. case FEATURE_BREAK_ITERATORS:
  259. case FEATURE_FONT_BITMAP:
  260. #ifdef MODULE_FREETYPE_ENABLED
  261. case FEATURE_FONT_DYNAMIC:
  262. #endif
  263. #ifdef MODULE_MSDFGEN_ENABLED
  264. case FEATURE_FONT_MSDF:
  265. #endif
  266. case FEATURE_FONT_VARIABLE:
  267. case FEATURE_CONTEXT_SENSITIVE_CASE_CONVERSION:
  268. case FEATURE_USE_SUPPORT_DATA:
  269. return true;
  270. default: {
  271. }
  272. }
  273. return false;
  274. }
  275. String TextServerAdvanced::get_name() const {
  276. #ifdef GDEXTENSION
  277. return "ICU / HarfBuzz / Graphite (GDExtension)";
  278. #else
  279. return "ICU / HarfBuzz / Graphite (Built-in)";
  280. #endif
  281. }
  282. int64_t TextServerAdvanced::get_features() const {
  283. int64_t interface_features = FEATURE_SIMPLE_LAYOUT | FEATURE_BIDI_LAYOUT | FEATURE_VERTICAL_LAYOUT | FEATURE_SHAPING | FEATURE_KASHIDA_JUSTIFICATION | FEATURE_BREAK_ITERATORS | FEATURE_FONT_BITMAP | FEATURE_FONT_VARIABLE | FEATURE_CONTEXT_SENSITIVE_CASE_CONVERSION | FEATURE_USE_SUPPORT_DATA;
  284. #ifdef MODULE_FREETYPE_ENABLED
  285. interface_features |= FEATURE_FONT_DYNAMIC;
  286. #endif
  287. #ifdef MODULE_MSDFGEN_ENABLED
  288. interface_features |= FEATURE_FONT_MSDF;
  289. #endif
  290. return interface_features;
  291. }
  292. void TextServerAdvanced::free_rid(const RID &p_rid) {
  293. _THREAD_SAFE_METHOD_
  294. if (font_owner.owns(p_rid)) {
  295. FontDataAdvanced *fd = font_owner.get_or_null(p_rid);
  296. font_owner.free(p_rid);
  297. memdelete(fd);
  298. } else if (shaped_owner.owns(p_rid)) {
  299. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_rid);
  300. shaped_owner.free(p_rid);
  301. memdelete(sd);
  302. }
  303. }
  304. bool TextServerAdvanced::has(const RID &p_rid) {
  305. _THREAD_SAFE_METHOD_
  306. return font_owner.owns(p_rid) || shaped_owner.owns(p_rid);
  307. }
  308. bool TextServerAdvanced::load_support_data(const String &p_filename) {
  309. _THREAD_SAFE_METHOD_
  310. #ifdef ICU_STATIC_DATA
  311. if (!icu_data_loaded) {
  312. UErrorCode err = U_ZERO_ERROR;
  313. u_init(&err); // Do not check for errors, since we only load part of the data.
  314. icu_data_loaded = true;
  315. }
  316. #else
  317. if (!icu_data_loaded) {
  318. String filename = (p_filename.is_empty()) ? String("res://") + _MKSTR(ICU_DATA_NAME) : p_filename;
  319. Ref<File> f;
  320. f.instantiate();
  321. if (f->open(filename, File::READ) != OK) {
  322. return false;
  323. }
  324. uint64_t len = f->get_length();
  325. PackedByteArray icu_data = f->get_buffer(len);
  326. f->close();
  327. UErrorCode err = U_ZERO_ERROR;
  328. udata_setCommonData(icu_data.ptr(), &err);
  329. if (U_FAILURE(err)) {
  330. ERR_FAIL_V_MSG(false, u_errorName(err));
  331. }
  332. err = U_ZERO_ERROR;
  333. u_init(&err);
  334. if (U_FAILURE(err)) {
  335. ERR_FAIL_V_MSG(false, u_errorName(err));
  336. }
  337. icu_data_loaded = true;
  338. }
  339. #endif
  340. return true;
  341. }
  342. String TextServerAdvanced::get_support_data_filename() const {
  343. #ifdef ICU_STATIC_DATA
  344. return _MKSTR(ICU_DATA_NAME);
  345. #else
  346. return String();
  347. #endif
  348. }
  349. String TextServerAdvanced::get_support_data_info() const {
  350. #ifdef ICU_STATIC_DATA
  351. return String("ICU break iteration data (") + _MKSTR(ICU_DATA_NAME) + String(").");
  352. #else
  353. return String();
  354. #endif
  355. }
  356. bool TextServerAdvanced::save_support_data(const String &p_filename) const {
  357. _THREAD_SAFE_METHOD_
  358. #ifdef ICU_STATIC_DATA
  359. // Store data to the res file if it's available.
  360. Ref<File> f;
  361. f.instantiate();
  362. if (f->open(p_filename, File::WRITE) != OK) {
  363. return false;
  364. }
  365. PackedByteArray icu_data;
  366. icu_data.resize(U_ICUDATA_SIZE);
  367. memcpy(icu_data.ptrw(), U_ICUDATA_ENTRY_POINT, U_ICUDATA_SIZE);
  368. f->store_buffer(icu_data);
  369. f->close();
  370. return true;
  371. #else
  372. return false;
  373. #endif
  374. }
  375. bool TextServerAdvanced::is_locale_right_to_left(const String &p_locale) const {
  376. String l = p_locale.get_slicec('_', 0);
  377. if ((l == "ar") || (l == "dv") || (l == "he") || (l == "fa") || (l == "ff") || (l == "ku") || (l == "ur")) {
  378. return true;
  379. } else {
  380. return false;
  381. }
  382. }
  383. _FORCE_INLINE_ void TextServerAdvanced::_insert_feature(const StringName &p_name, int32_t p_tag) {
  384. feature_sets.insert(p_name, p_tag);
  385. feature_sets_inv.insert(p_tag, p_name);
  386. }
  387. void TextServerAdvanced::_insert_feature_sets() {
  388. // Registered OpenType feature tags.
  389. _insert_feature("access_all_alternates", HB_TAG('a', 'a', 'l', 't'));
  390. _insert_feature("above_base_forms", HB_TAG('a', 'b', 'v', 'f'));
  391. _insert_feature("above_base_mark_positioning", HB_TAG('a', 'b', 'v', 'm'));
  392. _insert_feature("above_base_substitutions", HB_TAG('a', 'b', 'v', 's'));
  393. _insert_feature("alternative_fractions", HB_TAG('a', 'f', 'r', 'c'));
  394. _insert_feature("akhands", HB_TAG('a', 'k', 'h', 'n'));
  395. _insert_feature("below_base_forms", HB_TAG('b', 'l', 'w', 'f'));
  396. _insert_feature("below_base_mark_positioning", HB_TAG('b', 'l', 'w', 'm'));
  397. _insert_feature("below_base_substitutions", HB_TAG('b', 'l', 'w', 's'));
  398. _insert_feature("contextual_alternates", HB_TAG('c', 'a', 'l', 't'));
  399. _insert_feature("case_sensitive_forms", HB_TAG('c', 'a', 's', 'e'));
  400. _insert_feature("glyph_composition", HB_TAG('c', 'c', 'm', 'p'));
  401. _insert_feature("conjunct_form_after_ro", HB_TAG('c', 'f', 'a', 'r'));
  402. _insert_feature("conjunct_forms", HB_TAG('c', 'j', 'c', 't'));
  403. _insert_feature("contextual_ligatures", HB_TAG('c', 'l', 'i', 'g'));
  404. _insert_feature("centered_cjk_punctuation", HB_TAG('c', 'p', 'c', 't'));
  405. _insert_feature("capital_spacing", HB_TAG('c', 'p', 's', 'p'));
  406. _insert_feature("contextual_swash", HB_TAG('c', 's', 'w', 'h'));
  407. _insert_feature("cursive_positioning", HB_TAG('c', 'u', 'r', 's'));
  408. _insert_feature("character_variant_01", HB_TAG('c', 'v', '0', '1'));
  409. _insert_feature("character_variant_02", HB_TAG('c', 'v', '0', '2'));
  410. _insert_feature("character_variant_03", HB_TAG('c', 'v', '0', '3'));
  411. _insert_feature("character_variant_04", HB_TAG('c', 'v', '0', '4'));
  412. _insert_feature("character_variant_05", HB_TAG('c', 'v', '0', '5'));
  413. _insert_feature("character_variant_06", HB_TAG('c', 'v', '0', '6'));
  414. _insert_feature("character_variant_07", HB_TAG('c', 'v', '0', '7'));
  415. _insert_feature("character_variant_08", HB_TAG('c', 'v', '0', '8'));
  416. _insert_feature("character_variant_09", HB_TAG('c', 'v', '0', '9'));
  417. _insert_feature("character_variant_10", HB_TAG('c', 'v', '1', '0'));
  418. _insert_feature("character_variant_11", HB_TAG('c', 'v', '1', '1'));
  419. _insert_feature("character_variant_12", HB_TAG('c', 'v', '1', '2'));
  420. _insert_feature("character_variant_13", HB_TAG('c', 'v', '1', '3'));
  421. _insert_feature("character_variant_14", HB_TAG('c', 'v', '1', '4'));
  422. _insert_feature("character_variant_15", HB_TAG('c', 'v', '1', '5'));
  423. _insert_feature("character_variant_16", HB_TAG('c', 'v', '1', '6'));
  424. _insert_feature("character_variant_17", HB_TAG('c', 'v', '1', '7'));
  425. _insert_feature("character_variant_18", HB_TAG('c', 'v', '1', '8'));
  426. _insert_feature("character_variant_19", HB_TAG('c', 'v', '1', '9'));
  427. _insert_feature("character_variant_20", HB_TAG('c', 'v', '2', '0'));
  428. _insert_feature("character_variant_21", HB_TAG('c', 'v', '2', '1'));
  429. _insert_feature("character_variant_22", HB_TAG('c', 'v', '2', '2'));
  430. _insert_feature("character_variant_23", HB_TAG('c', 'v', '2', '3'));
  431. _insert_feature("character_variant_24", HB_TAG('c', 'v', '2', '4'));
  432. _insert_feature("character_variant_25", HB_TAG('c', 'v', '2', '5'));
  433. _insert_feature("character_variant_26", HB_TAG('c', 'v', '2', '6'));
  434. _insert_feature("character_variant_27", HB_TAG('c', 'v', '2', '7'));
  435. _insert_feature("character_variant_28", HB_TAG('c', 'v', '2', '8'));
  436. _insert_feature("character_variant_29", HB_TAG('c', 'v', '2', '9'));
  437. _insert_feature("character_variant_30", HB_TAG('c', 'v', '3', '0'));
  438. _insert_feature("character_variant_31", HB_TAG('c', 'v', '3', '1'));
  439. _insert_feature("character_variant_32", HB_TAG('c', 'v', '3', '2'));
  440. _insert_feature("character_variant_33", HB_TAG('c', 'v', '3', '3'));
  441. _insert_feature("character_variant_34", HB_TAG('c', 'v', '3', '4'));
  442. _insert_feature("character_variant_35", HB_TAG('c', 'v', '3', '5'));
  443. _insert_feature("character_variant_36", HB_TAG('c', 'v', '3', '6'));
  444. _insert_feature("character_variant_37", HB_TAG('c', 'v', '3', '7'));
  445. _insert_feature("character_variant_38", HB_TAG('c', 'v', '3', '8'));
  446. _insert_feature("character_variant_39", HB_TAG('c', 'v', '3', '9'));
  447. _insert_feature("character_variant_40", HB_TAG('c', 'v', '4', '0'));
  448. _insert_feature("character_variant_41", HB_TAG('c', 'v', '4', '1'));
  449. _insert_feature("character_variant_42", HB_TAG('c', 'v', '4', '2'));
  450. _insert_feature("character_variant_43", HB_TAG('c', 'v', '4', '3'));
  451. _insert_feature("character_variant_44", HB_TAG('c', 'v', '4', '4'));
  452. _insert_feature("character_variant_45", HB_TAG('c', 'v', '4', '5'));
  453. _insert_feature("character_variant_46", HB_TAG('c', 'v', '4', '6'));
  454. _insert_feature("character_variant_47", HB_TAG('c', 'v', '4', '7'));
  455. _insert_feature("character_variant_48", HB_TAG('c', 'v', '4', '8'));
  456. _insert_feature("character_variant_49", HB_TAG('c', 'v', '4', '9'));
  457. _insert_feature("character_variant_50", HB_TAG('c', 'v', '5', '0'));
  458. _insert_feature("character_variant_51", HB_TAG('c', 'v', '5', '1'));
  459. _insert_feature("character_variant_52", HB_TAG('c', 'v', '5', '2'));
  460. _insert_feature("character_variant_53", HB_TAG('c', 'v', '5', '3'));
  461. _insert_feature("character_variant_54", HB_TAG('c', 'v', '5', '4'));
  462. _insert_feature("character_variant_55", HB_TAG('c', 'v', '5', '5'));
  463. _insert_feature("character_variant_56", HB_TAG('c', 'v', '5', '6'));
  464. _insert_feature("character_variant_57", HB_TAG('c', 'v', '5', '7'));
  465. _insert_feature("character_variant_58", HB_TAG('c', 'v', '5', '8'));
  466. _insert_feature("character_variant_59", HB_TAG('c', 'v', '5', '9'));
  467. _insert_feature("character_variant_60", HB_TAG('c', 'v', '6', '0'));
  468. _insert_feature("character_variant_61", HB_TAG('c', 'v', '6', '1'));
  469. _insert_feature("character_variant_62", HB_TAG('c', 'v', '6', '2'));
  470. _insert_feature("character_variant_63", HB_TAG('c', 'v', '6', '3'));
  471. _insert_feature("character_variant_64", HB_TAG('c', 'v', '6', '4'));
  472. _insert_feature("character_variant_65", HB_TAG('c', 'v', '6', '5'));
  473. _insert_feature("character_variant_66", HB_TAG('c', 'v', '6', '6'));
  474. _insert_feature("character_variant_67", HB_TAG('c', 'v', '6', '7'));
  475. _insert_feature("character_variant_68", HB_TAG('c', 'v', '6', '8'));
  476. _insert_feature("character_variant_69", HB_TAG('c', 'v', '6', '9'));
  477. _insert_feature("character_variant_70", HB_TAG('c', 'v', '7', '0'));
  478. _insert_feature("character_variant_71", HB_TAG('c', 'v', '7', '1'));
  479. _insert_feature("character_variant_72", HB_TAG('c', 'v', '7', '2'));
  480. _insert_feature("character_variant_73", HB_TAG('c', 'v', '7', '3'));
  481. _insert_feature("character_variant_74", HB_TAG('c', 'v', '7', '4'));
  482. _insert_feature("character_variant_75", HB_TAG('c', 'v', '7', '5'));
  483. _insert_feature("character_variant_76", HB_TAG('c', 'v', '7', '6'));
  484. _insert_feature("character_variant_77", HB_TAG('c', 'v', '7', '7'));
  485. _insert_feature("character_variant_78", HB_TAG('c', 'v', '7', '8'));
  486. _insert_feature("character_variant_79", HB_TAG('c', 'v', '7', '9'));
  487. _insert_feature("character_variant_80", HB_TAG('c', 'v', '8', '0'));
  488. _insert_feature("character_variant_81", HB_TAG('c', 'v', '8', '1'));
  489. _insert_feature("character_variant_82", HB_TAG('c', 'v', '8', '2'));
  490. _insert_feature("character_variant_83", HB_TAG('c', 'v', '8', '3'));
  491. _insert_feature("character_variant_84", HB_TAG('c', 'v', '8', '4'));
  492. _insert_feature("character_variant_85", HB_TAG('c', 'v', '8', '5'));
  493. _insert_feature("character_variant_86", HB_TAG('c', 'v', '8', '6'));
  494. _insert_feature("character_variant_87", HB_TAG('c', 'v', '8', '7'));
  495. _insert_feature("character_variant_88", HB_TAG('c', 'v', '8', '8'));
  496. _insert_feature("character_variant_89", HB_TAG('c', 'v', '8', '9'));
  497. _insert_feature("character_variant_90", HB_TAG('c', 'v', '9', '0'));
  498. _insert_feature("character_variant_91", HB_TAG('c', 'v', '9', '1'));
  499. _insert_feature("character_variant_92", HB_TAG('c', 'v', '9', '2'));
  500. _insert_feature("character_variant_93", HB_TAG('c', 'v', '9', '3'));
  501. _insert_feature("character_variant_94", HB_TAG('c', 'v', '9', '4'));
  502. _insert_feature("character_variant_95", HB_TAG('c', 'v', '9', '5'));
  503. _insert_feature("character_variant_96", HB_TAG('c', 'v', '9', '6'));
  504. _insert_feature("character_variant_97", HB_TAG('c', 'v', '9', '7'));
  505. _insert_feature("character_variant_98", HB_TAG('c', 'v', '9', '8'));
  506. _insert_feature("character_variant_99", HB_TAG('c', 'v', '9', '9'));
  507. _insert_feature("petite_capitals_from_capitals", HB_TAG('c', '2', 'p', 'c'));
  508. _insert_feature("small_capitals_from_capitals", HB_TAG('c', '2', 's', 'c'));
  509. _insert_feature("distances", HB_TAG('d', 'i', 's', 't'));
  510. _insert_feature("discretionary_ligatures", HB_TAG('d', 'l', 'i', 'g'));
  511. _insert_feature("denominators", HB_TAG('d', 'n', 'o', 'm'));
  512. _insert_feature("dotless_forms", HB_TAG('d', 't', 'l', 's'));
  513. _insert_feature("expert_forms", HB_TAG('e', 'x', 'p', 't'));
  514. _insert_feature("final_glyph_on_line_alternates", HB_TAG('f', 'a', 'l', 't'));
  515. _insert_feature("terminal_forms_2", HB_TAG('f', 'i', 'n', '2'));
  516. _insert_feature("terminal_forms_3", HB_TAG('f', 'i', 'n', '3'));
  517. _insert_feature("terminal_forms", HB_TAG('f', 'i', 'n', 'a'));
  518. _insert_feature("flattened_accent_forms", HB_TAG('f', 'l', 'a', 'c'));
  519. _insert_feature("fractions", HB_TAG('f', 'r', 'a', 'c'));
  520. _insert_feature("full_widths", HB_TAG('f', 'w', 'i', 'd'));
  521. _insert_feature("half_forms", HB_TAG('h', 'a', 'l', 'f'));
  522. _insert_feature("halant_forms", HB_TAG('h', 'a', 'l', 'n'));
  523. _insert_feature("alternate_half_widths", HB_TAG('h', 'a', 'l', 't'));
  524. _insert_feature("historical_forms", HB_TAG('h', 'i', 's', 't'));
  525. _insert_feature("horizontal_kana_alternates", HB_TAG('h', 'k', 'n', 'a'));
  526. _insert_feature("historical_ligatures", HB_TAG('h', 'l', 'i', 'g'));
  527. _insert_feature("hangul", HB_TAG('h', 'n', 'g', 'l'));
  528. _insert_feature("hojo_kanji_forms", HB_TAG('h', 'o', 'j', 'o'));
  529. _insert_feature("half_widths", HB_TAG('h', 'w', 'i', 'd'));
  530. _insert_feature("initial_forms", HB_TAG('i', 'n', 'i', 't'));
  531. _insert_feature("isolated_forms", HB_TAG('i', 's', 'o', 'l'));
  532. _insert_feature("italics", HB_TAG('i', 't', 'a', 'l'));
  533. _insert_feature("justification_alternates", HB_TAG('j', 'a', 'l', 't'));
  534. _insert_feature("jis78_forms", HB_TAG('j', 'p', '7', '8'));
  535. _insert_feature("jis83_forms", HB_TAG('j', 'p', '8', '3'));
  536. _insert_feature("jis90_forms", HB_TAG('j', 'p', '9', '0'));
  537. _insert_feature("jis2004_forms", HB_TAG('j', 'p', '0', '4'));
  538. _insert_feature("kerning", HB_TAG('k', 'e', 'r', 'n'));
  539. _insert_feature("left_bounds", HB_TAG('l', 'f', 'b', 'd'));
  540. _insert_feature("standard_ligatures", HB_TAG('l', 'i', 'g', 'a'));
  541. _insert_feature("leading_jamo_forms", HB_TAG('l', 'j', 'm', 'o'));
  542. _insert_feature("lining_figures", HB_TAG('l', 'n', 'u', 'm'));
  543. _insert_feature("localized_forms", HB_TAG('l', 'o', 'c', 'l'));
  544. _insert_feature("left_to_right_alternates", HB_TAG('l', 't', 'r', 'a'));
  545. _insert_feature("left_to_right_mirrored_forms", HB_TAG('l', 't', 'r', 'm'));
  546. _insert_feature("mark_positioning", HB_TAG('m', 'a', 'r', 'k'));
  547. _insert_feature("medial_forms_2", HB_TAG('m', 'e', 'd', '2'));
  548. _insert_feature("medial_forms", HB_TAG('m', 'e', 'd', 'i'));
  549. _insert_feature("mathematical_greek", HB_TAG('m', 'g', 'r', 'k'));
  550. _insert_feature("mark_to_mark_positioning", HB_TAG('m', 'k', 'm', 'k'));
  551. _insert_feature("mark_positioning_via_substitution", HB_TAG('m', 's', 'e', 't'));
  552. _insert_feature("alternate_annotation_forms", HB_TAG('n', 'a', 'l', 't'));
  553. _insert_feature("nlc_kanji_forms", HB_TAG('n', 'l', 'c', 'k'));
  554. _insert_feature("nukta_forms", HB_TAG('n', 'u', 'k', 't'));
  555. _insert_feature("numerators", HB_TAG('n', 'u', 'm', 'r'));
  556. _insert_feature("oldstyle_figures", HB_TAG('o', 'n', 'u', 'm'));
  557. _insert_feature("optical_bounds", HB_TAG('o', 'p', 'b', 'd'));
  558. _insert_feature("ordinals", HB_TAG('o', 'r', 'd', 'n'));
  559. _insert_feature("ornaments", HB_TAG('o', 'r', 'n', 'm'));
  560. _insert_feature("proportional_alternate_widths", HB_TAG('p', 'a', 'l', 't'));
  561. _insert_feature("petite_capitals", HB_TAG('p', 'c', 'a', 'p'));
  562. _insert_feature("proportional_kana", HB_TAG('p', 'k', 'n', 'a'));
  563. _insert_feature("proportional_figures", HB_TAG('p', 'n', 'u', 'm'));
  564. _insert_feature("pre_base_forms", HB_TAG('p', 'r', 'e', 'f'));
  565. _insert_feature("pre_base_substitutions", HB_TAG('p', 'r', 'e', 's'));
  566. _insert_feature("post_base_forms", HB_TAG('p', 's', 't', 'f'));
  567. _insert_feature("post_base_substitutions", HB_TAG('p', 's', 't', 's'));
  568. _insert_feature("proportional_widths", HB_TAG('p', 'w', 'i', 'd'));
  569. _insert_feature("quarter_widths", HB_TAG('q', 'w', 'i', 'd'));
  570. _insert_feature("randomize", HB_TAG('r', 'a', 'n', 'd'));
  571. _insert_feature("required_contextual_alternates", HB_TAG('r', 'c', 'l', 't'));
  572. _insert_feature("rakar_forms", HB_TAG('r', 'k', 'r', 'f'));
  573. _insert_feature("required_ligatures", HB_TAG('r', 'l', 'i', 'g'));
  574. _insert_feature("reph_forms", HB_TAG('r', 'p', 'h', 'f'));
  575. _insert_feature("right_bounds", HB_TAG('r', 't', 'b', 'd'));
  576. _insert_feature("right_to_left_alternates", HB_TAG('r', 't', 'l', 'a'));
  577. _insert_feature("right_to_left_mirrored_forms", HB_TAG('r', 't', 'l', 'm'));
  578. _insert_feature("ruby_notation_forms", HB_TAG('r', 'u', 'b', 'y'));
  579. _insert_feature("required_variation_alternates", HB_TAG('r', 'v', 'r', 'n'));
  580. _insert_feature("stylistic_alternates", HB_TAG('s', 'a', 'l', 't'));
  581. _insert_feature("scientific_inferiors", HB_TAG('s', 'i', 'n', 'f'));
  582. _insert_feature("optical_size", HB_TAG('s', 'i', 'z', 'e'));
  583. _insert_feature("small_capitals", HB_TAG('s', 'm', 'c', 'p'));
  584. _insert_feature("simplified_forms", HB_TAG('s', 'm', 'p', 'l'));
  585. _insert_feature("stylistic_set_01", HB_TAG('s', 's', '0', '1'));
  586. _insert_feature("stylistic_set_02", HB_TAG('s', 's', '0', '2'));
  587. _insert_feature("stylistic_set_03", HB_TAG('s', 's', '0', '3'));
  588. _insert_feature("stylistic_set_04", HB_TAG('s', 's', '0', '4'));
  589. _insert_feature("stylistic_set_05", HB_TAG('s', 's', '0', '5'));
  590. _insert_feature("stylistic_set_06", HB_TAG('s', 's', '0', '6'));
  591. _insert_feature("stylistic_set_07", HB_TAG('s', 's', '0', '7'));
  592. _insert_feature("stylistic_set_08", HB_TAG('s', 's', '0', '8'));
  593. _insert_feature("stylistic_set_09", HB_TAG('s', 's', '0', '9'));
  594. _insert_feature("stylistic_set_10", HB_TAG('s', 's', '1', '0'));
  595. _insert_feature("stylistic_set_11", HB_TAG('s', 's', '1', '1'));
  596. _insert_feature("stylistic_set_12", HB_TAG('s', 's', '1', '2'));
  597. _insert_feature("stylistic_set_13", HB_TAG('s', 's', '1', '3'));
  598. _insert_feature("stylistic_set_14", HB_TAG('s', 's', '1', '4'));
  599. _insert_feature("stylistic_set_15", HB_TAG('s', 's', '1', '5'));
  600. _insert_feature("stylistic_set_16", HB_TAG('s', 's', '1', '6'));
  601. _insert_feature("stylistic_set_17", HB_TAG('s', 's', '1', '7'));
  602. _insert_feature("stylistic_set_18", HB_TAG('s', 's', '1', '8'));
  603. _insert_feature("stylistic_set_19", HB_TAG('s', 's', '1', '9'));
  604. _insert_feature("stylistic_set_20", HB_TAG('s', 's', '2', '0'));
  605. _insert_feature("math_script_style_alternates", HB_TAG('s', 's', 't', 'y'));
  606. _insert_feature("stretching_glyph_decomposition", HB_TAG('s', 't', 'c', 'h'));
  607. _insert_feature("subscript", HB_TAG('s', 'u', 'b', 's'));
  608. _insert_feature("superscript", HB_TAG('s', 'u', 'p', 's'));
  609. _insert_feature("swash", HB_TAG('s', 'w', 's', 'h'));
  610. _insert_feature("titling", HB_TAG('t', 'i', 't', 'l'));
  611. _insert_feature("trailing_jamo_forms", HB_TAG('t', 'j', 'm', 'o'));
  612. _insert_feature("traditional_name_forms", HB_TAG('t', 'n', 'a', 'm'));
  613. _insert_feature("tabular_figures", HB_TAG('t', 'n', 'u', 'm'));
  614. _insert_feature("traditional_forms", HB_TAG('t', 'r', 'a', 'd'));
  615. _insert_feature("third_widths", HB_TAG('t', 'w', 'i', 'd'));
  616. _insert_feature("unicase", HB_TAG('u', 'n', 'i', 'c'));
  617. _insert_feature("alternate_vertical_metrics", HB_TAG('v', 'a', 'l', 't'));
  618. _insert_feature("vattu_variants", HB_TAG('v', 'a', 't', 'u'));
  619. _insert_feature("vertical_writing", HB_TAG('v', 'e', 'r', 't'));
  620. _insert_feature("alternate_vertical_half_metrics", HB_TAG('v', 'h', 'a', 'l'));
  621. _insert_feature("vowel_jamo_forms", HB_TAG('v', 'j', 'm', 'o'));
  622. _insert_feature("vertical_kana_alternates", HB_TAG('v', 'k', 'n', 'a'));
  623. _insert_feature("vertical_kerning", HB_TAG('v', 'k', 'r', 'n'));
  624. _insert_feature("proportional_alternate_vertical_metrics", HB_TAG('v', 'p', 'a', 'l'));
  625. _insert_feature("vertical_alternates_and_rotation", HB_TAG('v', 'r', 't', '2'));
  626. _insert_feature("vertical_alternates_for_rotation", HB_TAG('v', 'r', 't', 'r'));
  627. _insert_feature("slashed_zero", HB_TAG('z', 'e', 'r', 'o'));
  628. // Registered OpenType variation tag.
  629. _insert_feature("italic", HB_TAG('i', 't', 'a', 'l'));
  630. _insert_feature("optical_size", HB_TAG('o', 'p', 's', 'z'));
  631. _insert_feature("slant", HB_TAG('s', 'l', 'n', 't'));
  632. _insert_feature("width", HB_TAG('w', 'd', 't', 'h'));
  633. _insert_feature("weight", HB_TAG('w', 'g', 'h', 't'));
  634. }
  635. int64_t TextServerAdvanced::name_to_tag(const String &p_name) const {
  636. if (feature_sets.has(p_name)) {
  637. return feature_sets[p_name];
  638. }
  639. // No readable name, use tag string.
  640. return hb_tag_from_string(p_name.replace("custom_", "").ascii().get_data(), -1);
  641. }
  642. String TextServerAdvanced::tag_to_name(int64_t p_tag) const {
  643. if (feature_sets_inv.has(p_tag)) {
  644. return feature_sets_inv[p_tag];
  645. }
  646. // No readable name, use tag string.
  647. char name[5];
  648. memset(name, 0, 5);
  649. hb_tag_to_string(p_tag, name);
  650. return String("custom_") + String(name);
  651. }
  652. /*************************************************************************/
  653. /* Font Glyph Rendering */
  654. /*************************************************************************/
  655. _FORCE_INLINE_ TextServerAdvanced::FontTexturePosition TextServerAdvanced::find_texture_pos_for_glyph(FontDataForSizeAdvanced *p_data, int p_color_size, Image::Format p_image_format, int p_width, int p_height, bool p_msdf) const {
  656. FontTexturePosition ret;
  657. ret.index = -1;
  658. int mw = p_width;
  659. int mh = p_height;
  660. for (int i = 0; i < p_data->textures.size(); i++) {
  661. const FontTexture &ct = p_data->textures[i];
  662. if (RenderingServer::get_singleton() != nullptr) {
  663. if (ct.texture->get_format() != p_image_format) {
  664. continue;
  665. }
  666. }
  667. if (mw > ct.texture_w || mh > ct.texture_h) { // Too big for this texture.
  668. continue;
  669. }
  670. if (ct.offsets.size() < ct.texture_w) {
  671. continue;
  672. }
  673. ret.y = 0x7fffffff;
  674. ret.x = 0;
  675. for (int j = 0; j < ct.texture_w - mw; j++) {
  676. int max_y = 0;
  677. for (int k = j; k < j + mw; k++) {
  678. int y = ct.offsets[k];
  679. if (y > max_y) {
  680. max_y = y;
  681. }
  682. }
  683. if (max_y < ret.y) {
  684. ret.y = max_y;
  685. ret.x = j;
  686. }
  687. }
  688. if (ret.y == 0x7fffffff || ret.y + mh > ct.texture_h) {
  689. continue; // Fail, could not fit it here.
  690. }
  691. ret.index = i;
  692. break;
  693. }
  694. if (ret.index == -1) {
  695. // Could not find texture to fit, create one.
  696. ret.x = 0;
  697. ret.y = 0;
  698. int texsize = MAX(p_data->size.x * p_data->oversampling * 8, 256);
  699. if (mw > texsize) {
  700. texsize = mw; // Special case, adapt to it?
  701. }
  702. if (mh > texsize) {
  703. texsize = mh; // Special case, adapt to it?
  704. }
  705. #ifdef GDEXTENSION
  706. texsize = Math::next_power_of_2(texsize);
  707. #else
  708. texsize = next_power_of_2(texsize);
  709. #endif
  710. if (p_msdf) {
  711. texsize = MIN(texsize, 2048);
  712. } else {
  713. texsize = MIN(texsize, 1024);
  714. }
  715. FontTexture tex;
  716. tex.texture_w = texsize;
  717. tex.texture_h = texsize;
  718. tex.format = p_image_format;
  719. tex.imgdata.resize(texsize * texsize * p_color_size);
  720. {
  721. // Zero texture.
  722. uint8_t *w = tex.imgdata.ptrw();
  723. ERR_FAIL_COND_V(texsize * texsize * p_color_size > tex.imgdata.size(), ret);
  724. // Initialize the texture to all-white pixels to prevent artifacts when the
  725. // font is displayed at a non-default scale with filtering enabled.
  726. if (p_color_size == 2) {
  727. for (int i = 0; i < texsize * texsize * p_color_size; i += 2) { // FORMAT_LA8, BW font.
  728. w[i + 0] = 255;
  729. w[i + 1] = 0;
  730. }
  731. } else if (p_color_size == 4) {
  732. for (int i = 0; i < texsize * texsize * p_color_size; i += 4) { // FORMAT_RGBA8, Color font, Multichannel(+True) SDF.
  733. w[i + 0] = 255;
  734. w[i + 1] = 255;
  735. w[i + 2] = 255;
  736. w[i + 3] = 0;
  737. }
  738. } else {
  739. ERR_FAIL_V(ret);
  740. }
  741. }
  742. tex.offsets.resize(texsize);
  743. int32_t *offw = tex.offsets.ptrw();
  744. for (int i = 0; i < texsize; i++) { // Zero offsets.
  745. offw[i] = 0;
  746. }
  747. p_data->textures.push_back(tex);
  748. ret.index = p_data->textures.size() - 1;
  749. }
  750. return ret;
  751. }
  752. #ifdef MODULE_MSDFGEN_ENABLED
  753. struct MSContext {
  754. msdfgen::Point2 position;
  755. msdfgen::Shape *shape;
  756. msdfgen::Contour *contour;
  757. };
  758. class DistancePixelConversion {
  759. double invRange;
  760. public:
  761. _FORCE_INLINE_ explicit DistancePixelConversion(double range) :
  762. invRange(1 / range) {}
  763. _FORCE_INLINE_ void operator()(float *pixels, const msdfgen::MultiAndTrueDistance &distance) const {
  764. pixels[0] = float(invRange * distance.r + .5);
  765. pixels[1] = float(invRange * distance.g + .5);
  766. pixels[2] = float(invRange * distance.b + .5);
  767. pixels[3] = float(invRange * distance.a + .5);
  768. }
  769. };
  770. struct MSDFThreadData {
  771. msdfgen::Bitmap<float, 4> *output;
  772. msdfgen::Shape *shape;
  773. msdfgen::Projection *projection;
  774. DistancePixelConversion *distancePixelConversion;
  775. };
  776. static msdfgen::Point2 ft_point2(const FT_Vector &vector) {
  777. return msdfgen::Point2(vector.x / 60.0f, vector.y / 60.0f);
  778. }
  779. static int ft_move_to(const FT_Vector *to, void *user) {
  780. MSContext *context = reinterpret_cast<MSContext *>(user);
  781. if (!(context->contour && context->contour->edges.empty())) {
  782. context->contour = &context->shape->addContour();
  783. }
  784. context->position = ft_point2(*to);
  785. return 0;
  786. }
  787. static int ft_line_to(const FT_Vector *to, void *user) {
  788. MSContext *context = reinterpret_cast<MSContext *>(user);
  789. msdfgen::Point2 endpoint = ft_point2(*to);
  790. if (endpoint != context->position) {
  791. context->contour->addEdge(new msdfgen::LinearSegment(context->position, endpoint));
  792. context->position = endpoint;
  793. }
  794. return 0;
  795. }
  796. static int ft_conic_to(const FT_Vector *control, const FT_Vector *to, void *user) {
  797. MSContext *context = reinterpret_cast<MSContext *>(user);
  798. context->contour->addEdge(new msdfgen::QuadraticSegment(context->position, ft_point2(*control), ft_point2(*to)));
  799. context->position = ft_point2(*to);
  800. return 0;
  801. }
  802. static int ft_cubic_to(const FT_Vector *control1, const FT_Vector *control2, const FT_Vector *to, void *user) {
  803. MSContext *context = reinterpret_cast<MSContext *>(user);
  804. context->contour->addEdge(new msdfgen::CubicSegment(context->position, ft_point2(*control1), ft_point2(*control2), ft_point2(*to)));
  805. context->position = ft_point2(*to);
  806. return 0;
  807. }
  808. void TextServerAdvanced::_generateMTSDF_threaded(uint32_t y, void *p_td) const {
  809. MSDFThreadData *td = (MSDFThreadData *)p_td;
  810. msdfgen::ShapeDistanceFinder<msdfgen::OverlappingContourCombiner<msdfgen::MultiAndTrueDistanceSelector>> distanceFinder(*td->shape);
  811. int row = td->shape->inverseYAxis ? td->output->height() - y - 1 : y;
  812. for (int col = 0; col < td->output->width(); ++col) {
  813. int x = (y % 2) ? td->output->width() - col - 1 : col;
  814. msdfgen::Point2 p = td->projection->unproject(msdfgen::Point2(x + .5, y + .5));
  815. msdfgen::MultiAndTrueDistance distance = distanceFinder.distance(p);
  816. td->distancePixelConversion->operator()(td->output->operator()(x, row), distance);
  817. }
  818. }
  819. _FORCE_INLINE_ TextServerAdvanced::FontGlyph TextServerAdvanced::rasterize_msdf(FontDataAdvanced *p_font_data, FontDataForSizeAdvanced *p_data, int p_pixel_range, int p_rect_margin, FT_Outline *outline, const Vector2 &advance) const {
  820. msdfgen::Shape shape;
  821. shape.contours.clear();
  822. shape.inverseYAxis = false;
  823. MSContext context = {};
  824. context.shape = &shape;
  825. FT_Outline_Funcs ft_functions;
  826. ft_functions.move_to = &ft_move_to;
  827. ft_functions.line_to = &ft_line_to;
  828. ft_functions.conic_to = &ft_conic_to;
  829. ft_functions.cubic_to = &ft_cubic_to;
  830. ft_functions.shift = 0;
  831. ft_functions.delta = 0;
  832. int error = FT_Outline_Decompose(outline, &ft_functions, &context);
  833. ERR_FAIL_COND_V_MSG(error, FontGlyph(), "FreeType: Outline decomposition error: '" + String(FT_Error_String(error)) + "'.");
  834. if (!shape.contours.empty() && shape.contours.back().edges.empty()) {
  835. shape.contours.pop_back();
  836. }
  837. if (FT_Outline_Get_Orientation(outline) == 1) {
  838. for (int i = 0; i < (int)shape.contours.size(); ++i) {
  839. shape.contours[i].reverse();
  840. }
  841. }
  842. shape.inverseYAxis = true;
  843. shape.normalize();
  844. msdfgen::Shape::Bounds bounds = shape.getBounds(p_pixel_range);
  845. FontGlyph chr;
  846. chr.found = true;
  847. chr.advance = advance;
  848. if (shape.validate() && shape.contours.size() > 0) {
  849. int w = (bounds.r - bounds.l);
  850. int h = (bounds.t - bounds.b);
  851. int mw = w + p_rect_margin * 2;
  852. int mh = h + p_rect_margin * 2;
  853. ERR_FAIL_COND_V(mw > 1024, FontGlyph());
  854. ERR_FAIL_COND_V(mh > 1024, FontGlyph());
  855. FontTexturePosition tex_pos = find_texture_pos_for_glyph(p_data, 4, Image::FORMAT_RGBA8, mw, mh, true);
  856. ERR_FAIL_COND_V(tex_pos.index < 0, FontGlyph());
  857. FontTexture &tex = p_data->textures.write[tex_pos.index];
  858. edgeColoringSimple(shape, 3.0); // Max. angle.
  859. msdfgen::Bitmap<float, 4> image(w, h); // Texture size.
  860. DistancePixelConversion distancePixelConversion(p_pixel_range);
  861. msdfgen::Projection projection(msdfgen::Vector2(1.0, 1.0), msdfgen::Vector2(-bounds.l, -bounds.b));
  862. msdfgen::MSDFGeneratorConfig config(true, msdfgen::ErrorCorrectionConfig());
  863. MSDFThreadData td;
  864. td.output = &image;
  865. td.shape = &shape;
  866. td.projection = &projection;
  867. td.distancePixelConversion = &distancePixelConversion;
  868. if (p_font_data->work_pool.get_thread_count() == 0) {
  869. p_font_data->work_pool.init();
  870. }
  871. p_font_data->work_pool.do_work(h, this, &TextServerAdvanced::_generateMTSDF_threaded, &td);
  872. msdfgen::msdfErrorCorrection(image, shape, projection, p_pixel_range, config);
  873. {
  874. uint8_t *wr = tex.imgdata.ptrw();
  875. for (int i = 0; i < h; i++) {
  876. for (int j = 0; j < w; j++) {
  877. int ofs = ((i + tex_pos.y + p_rect_margin) * tex.texture_w + j + tex_pos.x + p_rect_margin) * 4;
  878. ERR_FAIL_COND_V(ofs >= tex.imgdata.size(), FontGlyph());
  879. wr[ofs + 0] = (uint8_t)(CLAMP(image(j, i)[0] * 256.f, 0.f, 255.f));
  880. wr[ofs + 1] = (uint8_t)(CLAMP(image(j, i)[1] * 256.f, 0.f, 255.f));
  881. wr[ofs + 2] = (uint8_t)(CLAMP(image(j, i)[2] * 256.f, 0.f, 255.f));
  882. wr[ofs + 3] = (uint8_t)(CLAMP(image(j, i)[3] * 256.f, 0.f, 255.f));
  883. }
  884. }
  885. }
  886. // Blit to image and texture.
  887. {
  888. if (RenderingServer::get_singleton() != nullptr) {
  889. Ref<Image> img;
  890. img.instantiate();
  891. img->create_from_data(tex.texture_w, tex.texture_h, false, Image::FORMAT_RGBA8, tex.imgdata);
  892. if (tex.texture.is_null()) {
  893. tex.texture.instantiate();
  894. tex.texture->create_from_image(img);
  895. } else {
  896. tex.texture->update(img);
  897. }
  898. }
  899. }
  900. // Update height array.
  901. int32_t *offw = tex.offsets.ptrw();
  902. for (int k = tex_pos.x; k < tex_pos.x + mw; k++) {
  903. offw[k] = tex_pos.y + mh;
  904. }
  905. chr.texture_idx = tex_pos.index;
  906. chr.uv_rect = Rect2(tex_pos.x + p_rect_margin, tex_pos.y + p_rect_margin, w, h);
  907. chr.rect.position = Vector2(bounds.l, -bounds.t);
  908. chr.rect.size = chr.uv_rect.size;
  909. }
  910. return chr;
  911. }
  912. #endif
  913. #ifdef MODULE_FREETYPE_ENABLED
  914. _FORCE_INLINE_ TextServerAdvanced::FontGlyph TextServerAdvanced::rasterize_bitmap(FontDataForSizeAdvanced *p_data, int p_rect_margin, FT_Bitmap bitmap, int yofs, int xofs, const Vector2 &advance) const {
  915. int w = bitmap.width;
  916. int h = bitmap.rows;
  917. int mw = w + p_rect_margin * 2;
  918. int mh = h + p_rect_margin * 2;
  919. ERR_FAIL_COND_V(mw > 1024, FontGlyph());
  920. ERR_FAIL_COND_V(mh > 1024, FontGlyph());
  921. int color_size = bitmap.pixel_mode == FT_PIXEL_MODE_BGRA ? 4 : 2;
  922. Image::Format require_format = color_size == 4 ? Image::FORMAT_RGBA8 : Image::FORMAT_LA8;
  923. FontTexturePosition tex_pos = find_texture_pos_for_glyph(p_data, color_size, require_format, mw, mh, false);
  924. ERR_FAIL_COND_V(tex_pos.index < 0, FontGlyph());
  925. // Fit character in char texture.
  926. FontTexture &tex = p_data->textures.write[tex_pos.index];
  927. {
  928. uint8_t *wr = tex.imgdata.ptrw();
  929. for (int i = 0; i < h; i++) {
  930. for (int j = 0; j < w; j++) {
  931. int ofs = ((i + tex_pos.y + p_rect_margin) * tex.texture_w + j + tex_pos.x + p_rect_margin) * color_size;
  932. ERR_FAIL_COND_V(ofs >= tex.imgdata.size(), FontGlyph());
  933. switch (bitmap.pixel_mode) {
  934. case FT_PIXEL_MODE_MONO: {
  935. int byte = i * bitmap.pitch + (j >> 3);
  936. int bit = 1 << (7 - (j % 8));
  937. wr[ofs + 0] = 255; // grayscale as 1
  938. wr[ofs + 1] = (bitmap.buffer[byte] & bit) ? 255 : 0;
  939. } break;
  940. case FT_PIXEL_MODE_GRAY:
  941. wr[ofs + 0] = 255; // grayscale as 1
  942. wr[ofs + 1] = bitmap.buffer[i * bitmap.pitch + j];
  943. break;
  944. case FT_PIXEL_MODE_BGRA: {
  945. int ofs_color = i * bitmap.pitch + (j << 2);
  946. wr[ofs + 2] = bitmap.buffer[ofs_color + 0];
  947. wr[ofs + 1] = bitmap.buffer[ofs_color + 1];
  948. wr[ofs + 0] = bitmap.buffer[ofs_color + 2];
  949. wr[ofs + 3] = bitmap.buffer[ofs_color + 3];
  950. } break;
  951. default:
  952. ERR_FAIL_V_MSG(FontGlyph(), "Font uses unsupported pixel format: " + String::num_int64(bitmap.pixel_mode) + ".");
  953. break;
  954. }
  955. }
  956. }
  957. }
  958. // Blit to image and texture.
  959. {
  960. if (RenderingServer::get_singleton() != nullptr) {
  961. Ref<Image> img;
  962. img.instantiate();
  963. img->create_from_data(tex.texture_w, tex.texture_h, false, require_format, tex.imgdata);
  964. if (tex.texture.is_null()) {
  965. tex.texture.instantiate();
  966. tex.texture->create_from_image(img);
  967. } else {
  968. tex.texture->update(img);
  969. }
  970. }
  971. }
  972. // Update height array.
  973. int32_t *offw = tex.offsets.ptrw();
  974. for (int k = tex_pos.x; k < tex_pos.x + mw; k++) {
  975. offw[k] = tex_pos.y + mh;
  976. }
  977. FontGlyph chr;
  978. chr.advance = advance * p_data->scale / p_data->oversampling;
  979. chr.texture_idx = tex_pos.index;
  980. chr.found = true;
  981. chr.uv_rect = Rect2(tex_pos.x + p_rect_margin, tex_pos.y + p_rect_margin, w, h);
  982. chr.rect.position = Vector2(xofs, -yofs) * p_data->scale / p_data->oversampling;
  983. chr.rect.size = chr.uv_rect.size * p_data->scale / p_data->oversampling;
  984. return chr;
  985. }
  986. #endif
  987. /*************************************************************************/
  988. /* Font Cache */
  989. /*************************************************************************/
  990. _FORCE_INLINE_ bool TextServerAdvanced::_ensure_glyph(FontDataAdvanced *p_font_data, const Vector2i &p_size, int32_t p_glyph) const {
  991. ERR_FAIL_COND_V(!_ensure_cache_for_size(p_font_data, p_size), false);
  992. int32_t glyph_index = p_glyph & 0xffffff; // Remove subpixel shifts.
  993. FontDataForSizeAdvanced *fd = p_font_data->cache[p_size];
  994. if (fd->glyph_map.has(p_glyph)) {
  995. return fd->glyph_map[p_glyph].found;
  996. }
  997. if (glyph_index == 0) { // Non graphical or invalid glyph, do not render.
  998. fd->glyph_map[p_glyph] = FontGlyph();
  999. return true;
  1000. }
  1001. #ifdef MODULE_FREETYPE_ENABLED
  1002. FontGlyph gl;
  1003. if (fd->face) {
  1004. FT_Int32 flags = FT_LOAD_DEFAULT;
  1005. bool outline = p_size.y > 0;
  1006. switch (p_font_data->hinting) {
  1007. case TextServer::HINTING_NONE:
  1008. flags |= FT_LOAD_NO_HINTING;
  1009. break;
  1010. case TextServer::HINTING_LIGHT:
  1011. flags |= FT_LOAD_TARGET_LIGHT;
  1012. break;
  1013. default:
  1014. flags |= FT_LOAD_TARGET_NORMAL;
  1015. break;
  1016. }
  1017. if (p_font_data->force_autohinter) {
  1018. flags |= FT_LOAD_FORCE_AUTOHINT;
  1019. }
  1020. if (outline) {
  1021. flags |= FT_LOAD_NO_BITMAP;
  1022. } else if (FT_HAS_COLOR(fd->face)) {
  1023. flags |= FT_LOAD_COLOR;
  1024. }
  1025. FT_Fixed v, h;
  1026. FT_Get_Advance(fd->face, glyph_index, flags, &h);
  1027. FT_Get_Advance(fd->face, glyph_index, flags | FT_LOAD_VERTICAL_LAYOUT, &v);
  1028. int error = FT_Load_Glyph(fd->face, glyph_index, flags);
  1029. if (error) {
  1030. fd->glyph_map[p_glyph] = FontGlyph();
  1031. return false;
  1032. }
  1033. if (!p_font_data->msdf) {
  1034. if ((p_font_data->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_QUARTER) || (p_font_data->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && p_size.x <= SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE)) {
  1035. FT_Pos xshift = (int)((p_glyph >> 27) & 3) << 4;
  1036. FT_Outline_Translate(&fd->face->glyph->outline, xshift, 0);
  1037. } else if ((p_font_data->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_HALF) || (p_font_data->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && p_size.x <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  1038. FT_Pos xshift = (int)((p_glyph >> 27) & 3) << 5;
  1039. FT_Outline_Translate(&fd->face->glyph->outline, xshift, 0);
  1040. }
  1041. }
  1042. if (p_font_data->embolden != 0.f) {
  1043. FT_Pos strength = p_font_data->embolden * p_size.x * 4; // 26.6 fractional units (1 / 64).
  1044. FT_Outline_Embolden(&fd->face->glyph->outline, strength);
  1045. }
  1046. if (p_font_data->transform != Transform2D()) {
  1047. FT_Matrix mat = { FT_Fixed(p_font_data->transform[0][0] * 65536), FT_Fixed(p_font_data->transform[0][1] * 65536), FT_Fixed(p_font_data->transform[1][0] * 65536), FT_Fixed(p_font_data->transform[1][1] * 65536) }; // 16.16 fractional units (1 / 65536).
  1048. FT_Outline_Transform(&fd->face->glyph->outline, &mat);
  1049. }
  1050. if (!outline) {
  1051. if (!p_font_data->msdf) {
  1052. error = FT_Render_Glyph(fd->face->glyph, p_font_data->antialiased ? FT_RENDER_MODE_NORMAL : FT_RENDER_MODE_MONO);
  1053. }
  1054. FT_GlyphSlot slot = fd->face->glyph;
  1055. if (!error) {
  1056. if (p_font_data->msdf) {
  1057. #ifdef MODULE_MSDFGEN_ENABLED
  1058. gl = rasterize_msdf(p_font_data, fd, p_font_data->msdf_range, rect_range, &slot->outline, Vector2((h + (1 << 9)) >> 10, (v + (1 << 9)) >> 10) / 64.0);
  1059. #else
  1060. fd->glyph_map[p_glyph] = FontGlyph();
  1061. ERR_FAIL_V_MSG(false, "Compiled without MSDFGEN support!");
  1062. #endif
  1063. } else {
  1064. gl = rasterize_bitmap(fd, rect_range, slot->bitmap, slot->bitmap_top, slot->bitmap_left, Vector2((h + (1 << 9)) >> 10, (v + (1 << 9)) >> 10) / 64.0);
  1065. }
  1066. }
  1067. } else {
  1068. FT_Stroker stroker;
  1069. if (FT_Stroker_New(ft_library, &stroker) != 0) {
  1070. fd->glyph_map[p_glyph] = FontGlyph();
  1071. ERR_FAIL_V_MSG(false, "FreeType: Failed to load glyph stroker.");
  1072. }
  1073. FT_Stroker_Set(stroker, (int)(fd->size.y * fd->oversampling * 16.0), FT_STROKER_LINECAP_BUTT, FT_STROKER_LINEJOIN_ROUND, 0);
  1074. FT_Glyph glyph;
  1075. FT_BitmapGlyph glyph_bitmap;
  1076. if (FT_Get_Glyph(fd->face->glyph, &glyph) != 0) {
  1077. goto cleanup_stroker;
  1078. }
  1079. if (FT_Glyph_Stroke(&glyph, stroker, 1) != 0) {
  1080. goto cleanup_glyph;
  1081. }
  1082. if (FT_Glyph_To_Bitmap(&glyph, p_font_data->antialiased ? FT_RENDER_MODE_NORMAL : FT_RENDER_MODE_MONO, nullptr, 1) != 0) {
  1083. goto cleanup_glyph;
  1084. }
  1085. glyph_bitmap = (FT_BitmapGlyph)glyph;
  1086. gl = rasterize_bitmap(fd, rect_range, glyph_bitmap->bitmap, glyph_bitmap->top, glyph_bitmap->left, Vector2());
  1087. cleanup_glyph:
  1088. FT_Done_Glyph(glyph);
  1089. cleanup_stroker:
  1090. FT_Stroker_Done(stroker);
  1091. }
  1092. fd->glyph_map[p_glyph] = gl;
  1093. return gl.found;
  1094. }
  1095. #endif
  1096. fd->glyph_map[p_glyph] = FontGlyph();
  1097. return false;
  1098. }
  1099. _FORCE_INLINE_ bool TextServerAdvanced::_ensure_cache_for_size(FontDataAdvanced *p_font_data, const Vector2i &p_size) const {
  1100. ERR_FAIL_COND_V(p_size.x <= 0, false);
  1101. if (p_font_data->cache.has(p_size)) {
  1102. return true;
  1103. }
  1104. FontDataForSizeAdvanced *fd = memnew(FontDataForSizeAdvanced);
  1105. fd->size = p_size;
  1106. if (p_font_data->data_ptr && (p_font_data->data_size > 0)) {
  1107. // Init dynamic font.
  1108. #ifdef MODULE_FREETYPE_ENABLED
  1109. int error = 0;
  1110. if (!ft_library) {
  1111. error = FT_Init_FreeType(&ft_library);
  1112. ERR_FAIL_COND_V_MSG(error != 0, false, "FreeType: Error initializing library: '" + String(FT_Error_String(error)) + "'.");
  1113. }
  1114. memset(&fd->stream, 0, sizeof(FT_StreamRec));
  1115. fd->stream.base = (unsigned char *)p_font_data->data_ptr;
  1116. fd->stream.size = p_font_data->data_size;
  1117. fd->stream.pos = 0;
  1118. FT_Open_Args fargs;
  1119. memset(&fargs, 0, sizeof(FT_Open_Args));
  1120. fargs.memory_base = (unsigned char *)p_font_data->data_ptr;
  1121. fargs.memory_size = p_font_data->data_size;
  1122. fargs.flags = FT_OPEN_MEMORY;
  1123. fargs.stream = &fd->stream;
  1124. error = FT_Open_Face(ft_library, &fargs, 0, &fd->face);
  1125. if (error) {
  1126. FT_Done_Face(fd->face);
  1127. fd->face = nullptr;
  1128. ERR_FAIL_V_MSG(false, "FreeType: Error loading font: '" + String(FT_Error_String(error)) + "'.");
  1129. }
  1130. if (p_font_data->msdf) {
  1131. fd->oversampling = 1.0;
  1132. fd->size.x = p_font_data->msdf_source_size;
  1133. } else if (p_font_data->oversampling <= 0.0) {
  1134. fd->oversampling = font_get_global_oversampling();
  1135. } else {
  1136. fd->oversampling = p_font_data->oversampling;
  1137. }
  1138. if (FT_HAS_COLOR(fd->face) && fd->face->num_fixed_sizes > 0) {
  1139. int best_match = 0;
  1140. int diff = ABS(fd->size.x - ((int64_t)fd->face->available_sizes[0].width));
  1141. fd->scale = double(fd->size.x * fd->oversampling) / fd->face->available_sizes[0].width;
  1142. for (int i = 1; i < fd->face->num_fixed_sizes; i++) {
  1143. int ndiff = ABS(fd->size.x - ((int64_t)fd->face->available_sizes[i].width));
  1144. if (ndiff < diff) {
  1145. best_match = i;
  1146. diff = ndiff;
  1147. fd->scale = double(fd->size.x * fd->oversampling) / fd->face->available_sizes[i].width;
  1148. }
  1149. }
  1150. FT_Select_Size(fd->face, best_match);
  1151. } else {
  1152. FT_Set_Pixel_Sizes(fd->face, 0, double(fd->size.x * fd->oversampling));
  1153. fd->scale = ((double)fd->size.x * fd->oversampling) / (double)fd->face->size->metrics.y_ppem;
  1154. }
  1155. fd->hb_handle = hb_ft_font_create(fd->face, nullptr);
  1156. fd->ascent = (fd->face->size->metrics.ascender / 64.0) / fd->oversampling * fd->scale;
  1157. fd->descent = (-fd->face->size->metrics.descender / 64.0) / fd->oversampling * fd->scale;
  1158. fd->underline_position = (-FT_MulFix(fd->face->underline_position, fd->face->size->metrics.y_scale) / 64.0) / fd->oversampling * fd->scale;
  1159. fd->underline_thickness = (FT_MulFix(fd->face->underline_thickness, fd->face->size->metrics.y_scale) / 64.0) / fd->oversampling * fd->scale;
  1160. hb_font_set_synthetic_slant(fd->hb_handle, p_font_data->transform.elements[0][1]);
  1161. if (!p_font_data->face_init) {
  1162. // Get style flags and name.
  1163. if (fd->face->family_name != nullptr) {
  1164. p_font_data->font_name = String::utf8((const char *)fd->face->family_name);
  1165. }
  1166. if (fd->face->style_name != nullptr) {
  1167. p_font_data->style_name = String::utf8((const char *)fd->face->style_name);
  1168. }
  1169. p_font_data->style_flags = 0;
  1170. if (fd->face->style_flags & FT_STYLE_FLAG_BOLD) {
  1171. p_font_data->style_flags |= FONT_BOLD;
  1172. }
  1173. if (fd->face->style_flags & FT_STYLE_FLAG_ITALIC) {
  1174. p_font_data->style_flags |= FONT_ITALIC;
  1175. }
  1176. if (fd->face->face_flags & FT_FACE_FLAG_FIXED_WIDTH) {
  1177. p_font_data->style_flags |= FONT_FIXED_WIDTH;
  1178. }
  1179. // Get supported scripts from OpenType font data.
  1180. p_font_data->supported_scripts.clear();
  1181. unsigned int count = hb_ot_layout_table_get_script_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GSUB, 0, nullptr, nullptr);
  1182. if (count != 0) {
  1183. hb_tag_t *script_tags = (hb_tag_t *)memalloc(count * sizeof(hb_tag_t));
  1184. hb_ot_layout_table_get_script_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GSUB, 0, &count, script_tags);
  1185. for (unsigned int i = 0; i < count; i++) {
  1186. p_font_data->supported_scripts.insert(script_tags[i]);
  1187. }
  1188. memfree(script_tags);
  1189. }
  1190. count = hb_ot_layout_table_get_script_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GPOS, 0, nullptr, nullptr);
  1191. if (count != 0) {
  1192. hb_tag_t *script_tags = (hb_tag_t *)memalloc(count * sizeof(hb_tag_t));
  1193. hb_ot_layout_table_get_script_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GPOS, 0, &count, script_tags);
  1194. for (unsigned int i = 0; i < count; i++) {
  1195. p_font_data->supported_scripts.insert(script_tags[i]);
  1196. }
  1197. memfree(script_tags);
  1198. }
  1199. // Get supported scripts from OS2 table.
  1200. TT_OS2 *os2 = (TT_OS2 *)FT_Get_Sfnt_Table(fd->face, FT_SFNT_OS2);
  1201. if (os2) {
  1202. if ((os2->ulUnicodeRange1 & 1L << 4) || (os2->ulUnicodeRange1 & 1L << 5) || (os2->ulUnicodeRange1 & 1L << 6) || (os2->ulUnicodeRange1 & 1L << 31) || (os2->ulUnicodeRange2 & 1L << 0) || (os2->ulUnicodeRange2 & 1L << 1) || (os2->ulUnicodeRange2 & 1L << 2) || (os2->ulUnicodeRange2 & 1L << 3) || (os2->ulUnicodeRange2 & 1L << 4) || (os2->ulUnicodeRange2 & 1L << 5) || (os2->ulUnicodeRange2 & 1L << 6) || (os2->ulUnicodeRange2 & 1L << 7) || (os2->ulUnicodeRange2 & 1L << 8) || (os2->ulUnicodeRange2 & 1L << 9) || (os2->ulUnicodeRange2 & 1L << 10) || (os2->ulUnicodeRange2 & 1L << 11) || (os2->ulUnicodeRange2 & 1L << 12) || (os2->ulUnicodeRange2 & 1L << 13) || (os2->ulUnicodeRange2 & 1L << 14) || (os2->ulUnicodeRange2 & 1L << 15) || (os2->ulUnicodeRange2 & 1L << 30) || (os2->ulUnicodeRange3 & 1L << 0) || (os2->ulUnicodeRange3 & 1L << 1) || (os2->ulUnicodeRange3 & 1L << 2) || (os2->ulUnicodeRange3 & 1L << 4) || (os2->ulUnicodeRange3 & 1L << 5) || (os2->ulUnicodeRange3 & 1L << 18) || (os2->ulUnicodeRange3 & 1L << 24) || (os2->ulUnicodeRange3 & 1L << 25) || (os2->ulUnicodeRange3 & 1L << 26) || (os2->ulUnicodeRange3 & 1L << 27) || (os2->ulUnicodeRange3 & 1L << 28) || (os2->ulUnicodeRange4 & 1L << 3) || (os2->ulUnicodeRange4 & 1L << 6) || (os2->ulUnicodeRange4 & 1L << 15) || (os2->ulUnicodeRange4 & 1L << 23) || (os2->ulUnicodeRange4 & 1L << 24) || (os2->ulUnicodeRange4 & 1L << 26)) {
  1203. p_font_data->supported_scripts.insert(HB_SCRIPT_COMMON);
  1204. }
  1205. if ((os2->ulUnicodeRange1 & 1L << 0) || (os2->ulUnicodeRange1 & 1L << 1) || (os2->ulUnicodeRange1 & 1L << 2) || (os2->ulUnicodeRange1 & 1L << 3) || (os2->ulUnicodeRange1 & 1L << 29)) {
  1206. p_font_data->supported_scripts.insert(HB_SCRIPT_LATIN);
  1207. }
  1208. if ((os2->ulUnicodeRange1 & 1L << 7) || (os2->ulUnicodeRange1 & 1L << 30)) {
  1209. p_font_data->supported_scripts.insert(HB_SCRIPT_GREEK);
  1210. }
  1211. if (os2->ulUnicodeRange1 & 1L << 8) {
  1212. p_font_data->supported_scripts.insert(HB_SCRIPT_COPTIC);
  1213. }
  1214. if (os2->ulUnicodeRange1 & 1L << 9) {
  1215. p_font_data->supported_scripts.insert(HB_SCRIPT_CYRILLIC);
  1216. }
  1217. if (os2->ulUnicodeRange1 & 1L << 10) {
  1218. p_font_data->supported_scripts.insert(HB_SCRIPT_ARMENIAN);
  1219. }
  1220. if (os2->ulUnicodeRange1 & 1L << 11) {
  1221. p_font_data->supported_scripts.insert(HB_SCRIPT_HEBREW);
  1222. }
  1223. if (os2->ulUnicodeRange1 & 1L << 12) {
  1224. p_font_data->supported_scripts.insert(HB_SCRIPT_VAI);
  1225. }
  1226. if ((os2->ulUnicodeRange1 & 1L << 13) || (os2->ulUnicodeRange2 & 1L << 31) || (os2->ulUnicodeRange3 & 1L << 3)) {
  1227. p_font_data->supported_scripts.insert(HB_SCRIPT_ARABIC);
  1228. }
  1229. if (os2->ulUnicodeRange1 & 1L << 14) {
  1230. p_font_data->supported_scripts.insert(HB_SCRIPT_NKO);
  1231. }
  1232. if (os2->ulUnicodeRange1 & 1L << 15) {
  1233. p_font_data->supported_scripts.insert(HB_SCRIPT_DEVANAGARI);
  1234. }
  1235. if (os2->ulUnicodeRange1 & 1L << 16) {
  1236. p_font_data->supported_scripts.insert(HB_SCRIPT_BENGALI);
  1237. }
  1238. if (os2->ulUnicodeRange1 & 1L << 17) {
  1239. p_font_data->supported_scripts.insert(HB_SCRIPT_GURMUKHI);
  1240. }
  1241. if (os2->ulUnicodeRange1 & 1L << 18) {
  1242. p_font_data->supported_scripts.insert(HB_SCRIPT_GUJARATI);
  1243. }
  1244. if (os2->ulUnicodeRange1 & 1L << 19) {
  1245. p_font_data->supported_scripts.insert(HB_SCRIPT_ORIYA);
  1246. }
  1247. if (os2->ulUnicodeRange1 & 1L << 20) {
  1248. p_font_data->supported_scripts.insert(HB_SCRIPT_TAMIL);
  1249. }
  1250. if (os2->ulUnicodeRange1 & 1L << 21) {
  1251. p_font_data->supported_scripts.insert(HB_SCRIPT_TELUGU);
  1252. }
  1253. if (os2->ulUnicodeRange1 & 1L << 22) {
  1254. p_font_data->supported_scripts.insert(HB_SCRIPT_KANNADA);
  1255. }
  1256. if (os2->ulUnicodeRange1 & 1L << 23) {
  1257. p_font_data->supported_scripts.insert(HB_SCRIPT_MALAYALAM);
  1258. }
  1259. if (os2->ulUnicodeRange1 & 1L << 24) {
  1260. p_font_data->supported_scripts.insert(HB_SCRIPT_THAI);
  1261. }
  1262. if (os2->ulUnicodeRange1 & 1L << 25) {
  1263. p_font_data->supported_scripts.insert(HB_SCRIPT_LAO);
  1264. }
  1265. if (os2->ulUnicodeRange1 & 1L << 26) {
  1266. p_font_data->supported_scripts.insert(HB_SCRIPT_GEORGIAN);
  1267. }
  1268. if (os2->ulUnicodeRange1 & 1L << 27) {
  1269. p_font_data->supported_scripts.insert(HB_SCRIPT_BALINESE);
  1270. }
  1271. if ((os2->ulUnicodeRange1 & 1L << 28) || (os2->ulUnicodeRange2 & 1L << 20) || (os2->ulUnicodeRange2 & 1L << 24)) {
  1272. p_font_data->supported_scripts.insert(HB_SCRIPT_HANGUL);
  1273. }
  1274. if ((os2->ulUnicodeRange2 & 1L << 21) || (os2->ulUnicodeRange2 & 1L << 22) || (os2->ulUnicodeRange2 & 1L << 23) || (os2->ulUnicodeRange2 & 1L << 26) || (os2->ulUnicodeRange2 & 1L << 27) || (os2->ulUnicodeRange2 & 1L << 29)) {
  1275. p_font_data->supported_scripts.insert(HB_SCRIPT_HAN);
  1276. }
  1277. if (os2->ulUnicodeRange2 & 1L << 17) {
  1278. p_font_data->supported_scripts.insert(HB_SCRIPT_HIRAGANA);
  1279. }
  1280. if (os2->ulUnicodeRange2 & 1L << 18) {
  1281. p_font_data->supported_scripts.insert(HB_SCRIPT_KATAKANA);
  1282. }
  1283. if (os2->ulUnicodeRange2 & 1L << 19) {
  1284. p_font_data->supported_scripts.insert(HB_SCRIPT_BOPOMOFO);
  1285. }
  1286. if (os2->ulUnicodeRange3 & 1L << 6) {
  1287. p_font_data->supported_scripts.insert(HB_SCRIPT_TIBETAN);
  1288. }
  1289. if (os2->ulUnicodeRange3 & 1L << 7) {
  1290. p_font_data->supported_scripts.insert(HB_SCRIPT_SYRIAC);
  1291. }
  1292. if (os2->ulUnicodeRange3 & 1L << 8) {
  1293. p_font_data->supported_scripts.insert(HB_SCRIPT_THAANA);
  1294. }
  1295. if (os2->ulUnicodeRange3 & 1L << 9) {
  1296. p_font_data->supported_scripts.insert(HB_SCRIPT_SINHALA);
  1297. }
  1298. if (os2->ulUnicodeRange3 & 1L << 10) {
  1299. p_font_data->supported_scripts.insert(HB_SCRIPT_MYANMAR);
  1300. }
  1301. if (os2->ulUnicodeRange3 & 1L << 11) {
  1302. p_font_data->supported_scripts.insert(HB_SCRIPT_ETHIOPIC);
  1303. }
  1304. if (os2->ulUnicodeRange3 & 1L << 12) {
  1305. p_font_data->supported_scripts.insert(HB_SCRIPT_CHEROKEE);
  1306. }
  1307. if (os2->ulUnicodeRange3 & 1L << 13) {
  1308. p_font_data->supported_scripts.insert(HB_SCRIPT_CANADIAN_SYLLABICS);
  1309. }
  1310. if (os2->ulUnicodeRange3 & 1L << 14) {
  1311. p_font_data->supported_scripts.insert(HB_SCRIPT_OGHAM);
  1312. }
  1313. if (os2->ulUnicodeRange3 & 1L << 15) {
  1314. p_font_data->supported_scripts.insert(HB_SCRIPT_RUNIC);
  1315. }
  1316. if (os2->ulUnicodeRange3 & 1L << 16) {
  1317. p_font_data->supported_scripts.insert(HB_SCRIPT_KHMER);
  1318. }
  1319. if (os2->ulUnicodeRange3 & 1L << 17) {
  1320. p_font_data->supported_scripts.insert(HB_SCRIPT_MONGOLIAN);
  1321. }
  1322. if (os2->ulUnicodeRange3 & 1L << 19) {
  1323. p_font_data->supported_scripts.insert(HB_SCRIPT_YI);
  1324. }
  1325. if (os2->ulUnicodeRange3 & 1L << 20) {
  1326. p_font_data->supported_scripts.insert(HB_SCRIPT_HANUNOO);
  1327. p_font_data->supported_scripts.insert(HB_SCRIPT_TAGBANWA);
  1328. p_font_data->supported_scripts.insert(HB_SCRIPT_BUHID);
  1329. p_font_data->supported_scripts.insert(HB_SCRIPT_TAGALOG);
  1330. }
  1331. if (os2->ulUnicodeRange3 & 1L << 21) {
  1332. p_font_data->supported_scripts.insert(HB_SCRIPT_OLD_ITALIC);
  1333. }
  1334. if (os2->ulUnicodeRange3 & 1L << 22) {
  1335. p_font_data->supported_scripts.insert(HB_SCRIPT_GOTHIC);
  1336. }
  1337. if (os2->ulUnicodeRange3 & 1L << 23) {
  1338. p_font_data->supported_scripts.insert(HB_SCRIPT_DESERET);
  1339. }
  1340. if (os2->ulUnicodeRange3 & 1L << 29) {
  1341. p_font_data->supported_scripts.insert(HB_SCRIPT_LIMBU);
  1342. }
  1343. if (os2->ulUnicodeRange3 & 1L << 30) {
  1344. p_font_data->supported_scripts.insert(HB_SCRIPT_TAI_LE);
  1345. }
  1346. if (os2->ulUnicodeRange3 & 1L << 31) {
  1347. p_font_data->supported_scripts.insert(HB_SCRIPT_NEW_TAI_LUE);
  1348. }
  1349. if (os2->ulUnicodeRange4 & 1L << 0) {
  1350. p_font_data->supported_scripts.insert(HB_SCRIPT_BUGINESE);
  1351. }
  1352. if (os2->ulUnicodeRange4 & 1L << 1) {
  1353. p_font_data->supported_scripts.insert(HB_SCRIPT_GLAGOLITIC);
  1354. }
  1355. if (os2->ulUnicodeRange4 & 1L << 2) {
  1356. p_font_data->supported_scripts.insert(HB_SCRIPT_TIFINAGH);
  1357. }
  1358. if (os2->ulUnicodeRange4 & 1L << 4) {
  1359. p_font_data->supported_scripts.insert(HB_SCRIPT_SYLOTI_NAGRI);
  1360. }
  1361. if (os2->ulUnicodeRange4 & 1L << 5) {
  1362. p_font_data->supported_scripts.insert(HB_SCRIPT_LINEAR_B);
  1363. }
  1364. if (os2->ulUnicodeRange4 & 1L << 7) {
  1365. p_font_data->supported_scripts.insert(HB_SCRIPT_UGARITIC);
  1366. }
  1367. if (os2->ulUnicodeRange4 & 1L << 8) {
  1368. p_font_data->supported_scripts.insert(HB_SCRIPT_OLD_PERSIAN);
  1369. }
  1370. if (os2->ulUnicodeRange4 & 1L << 9) {
  1371. p_font_data->supported_scripts.insert(HB_SCRIPT_SHAVIAN);
  1372. }
  1373. if (os2->ulUnicodeRange4 & 1L << 10) {
  1374. p_font_data->supported_scripts.insert(HB_SCRIPT_OSMANYA);
  1375. }
  1376. if (os2->ulUnicodeRange4 & 1L << 11) {
  1377. p_font_data->supported_scripts.insert(HB_SCRIPT_CYPRIOT);
  1378. }
  1379. if (os2->ulUnicodeRange4 & 1L << 12) {
  1380. p_font_data->supported_scripts.insert(HB_SCRIPT_KHAROSHTHI);
  1381. }
  1382. if (os2->ulUnicodeRange4 & 1L << 13) {
  1383. p_font_data->supported_scripts.insert(HB_SCRIPT_TAI_VIET);
  1384. }
  1385. if (os2->ulUnicodeRange4 & 1L << 14) {
  1386. p_font_data->supported_scripts.insert(HB_SCRIPT_CUNEIFORM);
  1387. }
  1388. if (os2->ulUnicodeRange4 & 1L << 16) {
  1389. p_font_data->supported_scripts.insert(HB_SCRIPT_SUNDANESE);
  1390. }
  1391. if (os2->ulUnicodeRange4 & 1L << 17) {
  1392. p_font_data->supported_scripts.insert(HB_SCRIPT_LEPCHA);
  1393. }
  1394. if (os2->ulUnicodeRange4 & 1L << 18) {
  1395. p_font_data->supported_scripts.insert(HB_SCRIPT_OL_CHIKI);
  1396. }
  1397. if (os2->ulUnicodeRange4 & 1L << 19) {
  1398. p_font_data->supported_scripts.insert(HB_SCRIPT_SAURASHTRA);
  1399. }
  1400. if (os2->ulUnicodeRange4 & 1L << 20) {
  1401. p_font_data->supported_scripts.insert(HB_SCRIPT_KAYAH_LI);
  1402. }
  1403. if (os2->ulUnicodeRange4 & 1L << 21) {
  1404. p_font_data->supported_scripts.insert(HB_SCRIPT_REJANG);
  1405. }
  1406. if (os2->ulUnicodeRange4 & 1L << 22) {
  1407. p_font_data->supported_scripts.insert(HB_SCRIPT_CHAM);
  1408. }
  1409. if (os2->ulUnicodeRange4 & 1L << 25) {
  1410. p_font_data->supported_scripts.insert(HB_SCRIPT_ANATOLIAN_HIEROGLYPHS);
  1411. }
  1412. }
  1413. // Read OpenType feature tags.
  1414. p_font_data->supported_features.clear();
  1415. count = hb_ot_layout_table_get_feature_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GSUB, 0, nullptr, nullptr);
  1416. if (count != 0) {
  1417. hb_tag_t *feature_tags = (hb_tag_t *)memalloc(count * sizeof(hb_tag_t));
  1418. hb_ot_layout_table_get_feature_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GSUB, 0, &count, feature_tags);
  1419. for (unsigned int i = 0; i < count; i++) {
  1420. p_font_data->supported_features[feature_tags[i]] = 1;
  1421. }
  1422. memfree(feature_tags);
  1423. }
  1424. count = hb_ot_layout_table_get_feature_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GPOS, 0, nullptr, nullptr);
  1425. if (count != 0) {
  1426. hb_tag_t *feature_tags = (hb_tag_t *)memalloc(count * sizeof(hb_tag_t));
  1427. hb_ot_layout_table_get_feature_tags(hb_font_get_face(fd->hb_handle), HB_OT_TAG_GPOS, 0, &count, feature_tags);
  1428. for (unsigned int i = 0; i < count; i++) {
  1429. p_font_data->supported_features[feature_tags[i]] = 1;
  1430. }
  1431. memfree(feature_tags);
  1432. }
  1433. // Read OpenType variations.
  1434. p_font_data->supported_varaitions.clear();
  1435. if (fd->face->face_flags & FT_FACE_FLAG_MULTIPLE_MASTERS) {
  1436. FT_MM_Var *amaster;
  1437. FT_Get_MM_Var(fd->face, &amaster);
  1438. for (FT_UInt i = 0; i < amaster->num_axis; i++) {
  1439. p_font_data->supported_varaitions[(int32_t)amaster->axis[i].tag] = Vector3i(amaster->axis[i].minimum / 65536, amaster->axis[i].maximum / 65536, amaster->axis[i].def / 65536);
  1440. }
  1441. FT_Done_MM_Var(ft_library, amaster);
  1442. }
  1443. p_font_data->face_init = true;
  1444. }
  1445. // Write variations.
  1446. if (fd->face->face_flags & FT_FACE_FLAG_MULTIPLE_MASTERS) {
  1447. FT_MM_Var *amaster;
  1448. FT_Get_MM_Var(fd->face, &amaster);
  1449. Vector<hb_variation_t> hb_vars;
  1450. Vector<FT_Fixed> coords;
  1451. coords.resize(amaster->num_axis);
  1452. FT_Get_Var_Design_Coordinates(fd->face, coords.size(), coords.ptrw());
  1453. for (FT_UInt i = 0; i < amaster->num_axis; i++) {
  1454. hb_variation_t var;
  1455. // Reset to default.
  1456. var.tag = amaster->axis[i].tag;
  1457. var.value = (double)amaster->axis[i].def / 65536.0;
  1458. coords.write[i] = amaster->axis[i].def;
  1459. if (p_font_data->variation_coordinates.has(var.tag)) {
  1460. var.value = p_font_data->variation_coordinates[var.tag];
  1461. coords.write[i] = CLAMP(var.value * 65536.0, amaster->axis[i].minimum, amaster->axis[i].maximum);
  1462. }
  1463. if (p_font_data->variation_coordinates.has(tag_to_name(var.tag))) {
  1464. var.value = p_font_data->variation_coordinates[tag_to_name(var.tag)];
  1465. coords.write[i] = CLAMP(var.value * 65536.0, amaster->axis[i].minimum, amaster->axis[i].maximum);
  1466. }
  1467. hb_vars.push_back(var);
  1468. }
  1469. FT_Set_Var_Design_Coordinates(fd->face, coords.size(), coords.ptrw());
  1470. hb_font_set_variations(fd->hb_handle, hb_vars.is_empty() ? nullptr : &hb_vars[0], hb_vars.size());
  1471. FT_Done_MM_Var(ft_library, amaster);
  1472. }
  1473. #else
  1474. ERR_FAIL_V_MSG(false, "FreeType: Can't load dynamic font, engine is compiled without FreeType support!");
  1475. #endif
  1476. } else {
  1477. // Init bitmap font.
  1478. fd->hb_handle = _bmp_font_create(fd, nullptr);
  1479. }
  1480. p_font_data->cache[p_size] = fd;
  1481. return true;
  1482. }
  1483. _FORCE_INLINE_ void TextServerAdvanced::_font_clear_cache(FontDataAdvanced *p_font_data) {
  1484. for (const KeyValue<Vector2i, FontDataForSizeAdvanced *> &E : p_font_data->cache) {
  1485. memdelete(E.value);
  1486. }
  1487. p_font_data->cache.clear();
  1488. p_font_data->face_init = false;
  1489. p_font_data->supported_features.clear();
  1490. p_font_data->supported_varaitions.clear();
  1491. p_font_data->supported_scripts.clear();
  1492. }
  1493. hb_font_t *TextServerAdvanced::_font_get_hb_handle(const RID &p_font_rid, int64_t p_size) const {
  1494. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1495. ERR_FAIL_COND_V(!fd, nullptr);
  1496. MutexLock lock(fd->mutex);
  1497. Vector2i size = _get_size(fd, p_size);
  1498. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), nullptr);
  1499. return fd->cache[size]->hb_handle;
  1500. }
  1501. RID TextServerAdvanced::create_font() {
  1502. FontDataAdvanced *fd = memnew(FontDataAdvanced);
  1503. return font_owner.make_rid(fd);
  1504. }
  1505. void TextServerAdvanced::font_set_data(const RID &p_font_rid, const PackedByteArray &p_data) {
  1506. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1507. ERR_FAIL_COND(!fd);
  1508. MutexLock lock(fd->mutex);
  1509. _font_clear_cache(fd);
  1510. fd->data = p_data;
  1511. fd->data_ptr = fd->data.ptr();
  1512. fd->data_size = fd->data.size();
  1513. }
  1514. void TextServerAdvanced::font_set_data_ptr(const RID &p_font_rid, const uint8_t *p_data_ptr, int64_t p_data_size) {
  1515. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1516. ERR_FAIL_COND(!fd);
  1517. MutexLock lock(fd->mutex);
  1518. _font_clear_cache(fd);
  1519. fd->data.resize(0);
  1520. fd->data_ptr = p_data_ptr;
  1521. fd->data_size = p_data_size;
  1522. }
  1523. void TextServerAdvanced::font_set_style(const RID &p_font_rid, int64_t /*FontStyle*/ p_style) {
  1524. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1525. ERR_FAIL_COND(!fd);
  1526. MutexLock lock(fd->mutex);
  1527. Vector2i size = _get_size(fd, 16);
  1528. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1529. fd->style_flags = p_style;
  1530. }
  1531. int64_t /*FontStyle*/ TextServerAdvanced::font_get_style(const RID &p_font_rid) const {
  1532. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1533. ERR_FAIL_COND_V(!fd, 0);
  1534. MutexLock lock(fd->mutex);
  1535. Vector2i size = _get_size(fd, 16);
  1536. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0);
  1537. return fd->style_flags;
  1538. }
  1539. void TextServerAdvanced::font_set_style_name(const RID &p_font_rid, const String &p_name) {
  1540. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1541. ERR_FAIL_COND(!fd);
  1542. MutexLock lock(fd->mutex);
  1543. Vector2i size = _get_size(fd, 16);
  1544. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1545. fd->style_name = p_name;
  1546. }
  1547. String TextServerAdvanced::font_get_style_name(const RID &p_font_rid) const {
  1548. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1549. ERR_FAIL_COND_V(!fd, String());
  1550. MutexLock lock(fd->mutex);
  1551. Vector2i size = _get_size(fd, 16);
  1552. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), String());
  1553. return fd->style_name;
  1554. }
  1555. void TextServerAdvanced::font_set_name(const RID &p_font_rid, const String &p_name) {
  1556. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1557. ERR_FAIL_COND(!fd);
  1558. MutexLock lock(fd->mutex);
  1559. Vector2i size = _get_size(fd, 16);
  1560. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1561. fd->font_name = p_name;
  1562. }
  1563. String TextServerAdvanced::font_get_name(const RID &p_font_rid) const {
  1564. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1565. ERR_FAIL_COND_V(!fd, String());
  1566. MutexLock lock(fd->mutex);
  1567. Vector2i size = _get_size(fd, 16);
  1568. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), String());
  1569. return fd->font_name;
  1570. }
  1571. void TextServerAdvanced::font_set_antialiased(const RID &p_font_rid, bool p_antialiased) {
  1572. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1573. ERR_FAIL_COND(!fd);
  1574. MutexLock lock(fd->mutex);
  1575. if (fd->antialiased != p_antialiased) {
  1576. _font_clear_cache(fd);
  1577. fd->antialiased = p_antialiased;
  1578. }
  1579. }
  1580. bool TextServerAdvanced::font_is_antialiased(const RID &p_font_rid) const {
  1581. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1582. ERR_FAIL_COND_V(!fd, false);
  1583. MutexLock lock(fd->mutex);
  1584. return fd->antialiased;
  1585. }
  1586. void TextServerAdvanced::font_set_multichannel_signed_distance_field(const RID &p_font_rid, bool p_msdf) {
  1587. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1588. ERR_FAIL_COND(!fd);
  1589. MutexLock lock(fd->mutex);
  1590. if (fd->msdf != p_msdf) {
  1591. _font_clear_cache(fd);
  1592. fd->msdf = p_msdf;
  1593. }
  1594. }
  1595. bool TextServerAdvanced::font_is_multichannel_signed_distance_field(const RID &p_font_rid) const {
  1596. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1597. ERR_FAIL_COND_V(!fd, false);
  1598. MutexLock lock(fd->mutex);
  1599. return fd->msdf;
  1600. }
  1601. void TextServerAdvanced::font_set_msdf_pixel_range(const RID &p_font_rid, int64_t p_msdf_pixel_range) {
  1602. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1603. ERR_FAIL_COND(!fd);
  1604. MutexLock lock(fd->mutex);
  1605. if (fd->msdf_range != p_msdf_pixel_range) {
  1606. _font_clear_cache(fd);
  1607. fd->msdf_range = p_msdf_pixel_range;
  1608. }
  1609. }
  1610. int64_t TextServerAdvanced::font_get_msdf_pixel_range(const RID &p_font_rid) const {
  1611. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1612. ERR_FAIL_COND_V(!fd, false);
  1613. MutexLock lock(fd->mutex);
  1614. return fd->msdf_range;
  1615. }
  1616. void TextServerAdvanced::font_set_msdf_size(const RID &p_font_rid, int64_t p_msdf_size) {
  1617. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1618. ERR_FAIL_COND(!fd);
  1619. MutexLock lock(fd->mutex);
  1620. if (fd->msdf_source_size != p_msdf_size) {
  1621. _font_clear_cache(fd);
  1622. fd->msdf_source_size = p_msdf_size;
  1623. }
  1624. }
  1625. int64_t TextServerAdvanced::font_get_msdf_size(const RID &p_font_rid) const {
  1626. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1627. ERR_FAIL_COND_V(!fd, false);
  1628. MutexLock lock(fd->mutex);
  1629. return fd->msdf_source_size;
  1630. }
  1631. void TextServerAdvanced::font_set_fixed_size(const RID &p_font_rid, int64_t p_fixed_size) {
  1632. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1633. ERR_FAIL_COND(!fd);
  1634. MutexLock lock(fd->mutex);
  1635. if (fd->fixed_size != p_fixed_size) {
  1636. fd->fixed_size = p_fixed_size;
  1637. }
  1638. }
  1639. int64_t TextServerAdvanced::font_get_fixed_size(const RID &p_font_rid) const {
  1640. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1641. ERR_FAIL_COND_V(!fd, false);
  1642. MutexLock lock(fd->mutex);
  1643. return fd->fixed_size;
  1644. }
  1645. void TextServerAdvanced::font_set_force_autohinter(const RID &p_font_rid, bool p_force_autohinter) {
  1646. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1647. ERR_FAIL_COND(!fd);
  1648. MutexLock lock(fd->mutex);
  1649. if (fd->force_autohinter != p_force_autohinter) {
  1650. _font_clear_cache(fd);
  1651. fd->force_autohinter = p_force_autohinter;
  1652. }
  1653. }
  1654. bool TextServerAdvanced::font_is_force_autohinter(const RID &p_font_rid) const {
  1655. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1656. ERR_FAIL_COND_V(!fd, false);
  1657. MutexLock lock(fd->mutex);
  1658. return fd->force_autohinter;
  1659. }
  1660. void TextServerAdvanced::font_set_hinting(const RID &p_font_rid, TextServer::Hinting p_hinting) {
  1661. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1662. ERR_FAIL_COND(!fd);
  1663. MutexLock lock(fd->mutex);
  1664. if (fd->hinting != p_hinting) {
  1665. _font_clear_cache(fd);
  1666. fd->hinting = p_hinting;
  1667. }
  1668. }
  1669. TextServer::Hinting TextServerAdvanced::font_get_hinting(const RID &p_font_rid) const {
  1670. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1671. ERR_FAIL_COND_V(!fd, HINTING_NONE);
  1672. MutexLock lock(fd->mutex);
  1673. return fd->hinting;
  1674. }
  1675. void TextServerAdvanced::font_set_subpixel_positioning(const RID &p_font_rid, TextServer::SubpixelPositioning p_subpixel) {
  1676. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1677. ERR_FAIL_COND(!fd);
  1678. MutexLock lock(fd->mutex);
  1679. if (fd->subpixel_positioning != p_subpixel) {
  1680. fd->subpixel_positioning = p_subpixel;
  1681. }
  1682. }
  1683. TextServer::SubpixelPositioning TextServerAdvanced::font_get_subpixel_positioning(const RID &p_font_rid) const {
  1684. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1685. ERR_FAIL_COND_V(!fd, SUBPIXEL_POSITIONING_DISABLED);
  1686. MutexLock lock(fd->mutex);
  1687. return fd->subpixel_positioning;
  1688. }
  1689. void TextServerAdvanced::font_set_embolden(const RID &p_font_rid, double p_strength) {
  1690. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1691. ERR_FAIL_COND(!fd);
  1692. MutexLock lock(fd->mutex);
  1693. if (fd->embolden != p_strength) {
  1694. _font_clear_cache(fd);
  1695. fd->embolden = p_strength;
  1696. }
  1697. }
  1698. double TextServerAdvanced::font_get_embolden(const RID &p_font_rid) const {
  1699. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1700. ERR_FAIL_COND_V(!fd, 0.0);
  1701. MutexLock lock(fd->mutex);
  1702. return fd->embolden;
  1703. }
  1704. void TextServerAdvanced::font_set_transform(const RID &p_font_rid, const Transform2D &p_transform) {
  1705. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1706. ERR_FAIL_COND(!fd);
  1707. MutexLock lock(fd->mutex);
  1708. if (fd->transform != p_transform) {
  1709. _font_clear_cache(fd);
  1710. fd->transform = p_transform;
  1711. }
  1712. }
  1713. Transform2D TextServerAdvanced::font_get_transform(const RID &p_font_rid) const {
  1714. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1715. ERR_FAIL_COND_V(!fd, Transform2D());
  1716. MutexLock lock(fd->mutex);
  1717. return fd->transform;
  1718. }
  1719. void TextServerAdvanced::font_set_variation_coordinates(const RID &p_font_rid, const Dictionary &p_variation_coordinates) {
  1720. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1721. ERR_FAIL_COND(!fd);
  1722. MutexLock lock(fd->mutex);
  1723. if (fd->variation_coordinates != p_variation_coordinates) {
  1724. _font_clear_cache(fd);
  1725. fd->variation_coordinates = p_variation_coordinates;
  1726. }
  1727. }
  1728. Dictionary TextServerAdvanced::font_get_variation_coordinates(const RID &p_font_rid) const {
  1729. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1730. ERR_FAIL_COND_V(!fd, Dictionary());
  1731. MutexLock lock(fd->mutex);
  1732. return fd->variation_coordinates;
  1733. }
  1734. void TextServerAdvanced::font_set_oversampling(const RID &p_font_rid, double p_oversampling) {
  1735. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1736. ERR_FAIL_COND(!fd);
  1737. MutexLock lock(fd->mutex);
  1738. if (fd->oversampling != p_oversampling) {
  1739. _font_clear_cache(fd);
  1740. fd->oversampling = p_oversampling;
  1741. }
  1742. }
  1743. double TextServerAdvanced::font_get_oversampling(const RID &p_font_rid) const {
  1744. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1745. ERR_FAIL_COND_V(!fd, 0.0);
  1746. MutexLock lock(fd->mutex);
  1747. return fd->oversampling;
  1748. }
  1749. Array TextServerAdvanced::font_get_size_cache_list(const RID &p_font_rid) const {
  1750. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1751. ERR_FAIL_COND_V(!fd, Array());
  1752. MutexLock lock(fd->mutex);
  1753. Array ret;
  1754. for (const KeyValue<Vector2i, FontDataForSizeAdvanced *> &E : fd->cache) {
  1755. ret.push_back(E.key);
  1756. }
  1757. return ret;
  1758. }
  1759. void TextServerAdvanced::font_clear_size_cache(const RID &p_font_rid) {
  1760. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1761. ERR_FAIL_COND(!fd);
  1762. MutexLock lock(fd->mutex);
  1763. for (const KeyValue<Vector2i, FontDataForSizeAdvanced *> &E : fd->cache) {
  1764. memdelete(E.value);
  1765. }
  1766. fd->cache.clear();
  1767. }
  1768. void TextServerAdvanced::font_remove_size_cache(const RID &p_font_rid, const Vector2i &p_size) {
  1769. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1770. ERR_FAIL_COND(!fd);
  1771. MutexLock lock(fd->mutex);
  1772. if (fd->cache.has(p_size)) {
  1773. memdelete(fd->cache[p_size]);
  1774. fd->cache.erase(p_size);
  1775. }
  1776. }
  1777. void TextServerAdvanced::font_set_ascent(const RID &p_font_rid, int64_t p_size, double p_ascent) {
  1778. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1779. ERR_FAIL_COND(!fd);
  1780. MutexLock lock(fd->mutex);
  1781. Vector2i size = _get_size(fd, p_size);
  1782. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1783. fd->cache[size]->ascent = p_ascent;
  1784. }
  1785. double TextServerAdvanced::font_get_ascent(const RID &p_font_rid, int64_t p_size) const {
  1786. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1787. ERR_FAIL_COND_V(!fd, 0.0);
  1788. MutexLock lock(fd->mutex);
  1789. Vector2i size = _get_size(fd, p_size);
  1790. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0.0);
  1791. if (fd->msdf) {
  1792. return fd->cache[size]->ascent * (double)p_size / (double)fd->msdf_source_size;
  1793. } else {
  1794. return fd->cache[size]->ascent;
  1795. }
  1796. }
  1797. void TextServerAdvanced::font_set_descent(const RID &p_font_rid, int64_t p_size, double p_descent) {
  1798. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1799. ERR_FAIL_COND(!fd);
  1800. Vector2i size = _get_size(fd, p_size);
  1801. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1802. fd->cache[size]->descent = p_descent;
  1803. }
  1804. double TextServerAdvanced::font_get_descent(const RID &p_font_rid, int64_t p_size) const {
  1805. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1806. ERR_FAIL_COND_V(!fd, 0.0);
  1807. MutexLock lock(fd->mutex);
  1808. Vector2i size = _get_size(fd, p_size);
  1809. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0.0);
  1810. if (fd->msdf) {
  1811. return fd->cache[size]->descent * (double)p_size / (double)fd->msdf_source_size;
  1812. } else {
  1813. return fd->cache[size]->descent;
  1814. }
  1815. }
  1816. void TextServerAdvanced::font_set_underline_position(const RID &p_font_rid, int64_t p_size, double p_underline_position) {
  1817. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1818. ERR_FAIL_COND(!fd);
  1819. MutexLock lock(fd->mutex);
  1820. Vector2i size = _get_size(fd, p_size);
  1821. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1822. fd->cache[size]->underline_position = p_underline_position;
  1823. }
  1824. double TextServerAdvanced::font_get_underline_position(const RID &p_font_rid, int64_t p_size) const {
  1825. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1826. ERR_FAIL_COND_V(!fd, 0.0);
  1827. MutexLock lock(fd->mutex);
  1828. Vector2i size = _get_size(fd, p_size);
  1829. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0.0);
  1830. if (fd->msdf) {
  1831. return fd->cache[size]->underline_position * (double)p_size / (double)fd->msdf_source_size;
  1832. } else {
  1833. return fd->cache[size]->underline_position;
  1834. }
  1835. }
  1836. void TextServerAdvanced::font_set_underline_thickness(const RID &p_font_rid, int64_t p_size, double p_underline_thickness) {
  1837. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1838. ERR_FAIL_COND(!fd);
  1839. MutexLock lock(fd->mutex);
  1840. Vector2i size = _get_size(fd, p_size);
  1841. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1842. fd->cache[size]->underline_thickness = p_underline_thickness;
  1843. }
  1844. double TextServerAdvanced::font_get_underline_thickness(const RID &p_font_rid, int64_t p_size) const {
  1845. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1846. ERR_FAIL_COND_V(!fd, 0.0);
  1847. MutexLock lock(fd->mutex);
  1848. Vector2i size = _get_size(fd, p_size);
  1849. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0.0);
  1850. if (fd->msdf) {
  1851. return fd->cache[size]->underline_thickness * (double)p_size / (double)fd->msdf_source_size;
  1852. } else {
  1853. return fd->cache[size]->underline_thickness;
  1854. }
  1855. }
  1856. void TextServerAdvanced::font_set_scale(const RID &p_font_rid, int64_t p_size, double p_scale) {
  1857. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1858. ERR_FAIL_COND(!fd);
  1859. MutexLock lock(fd->mutex);
  1860. Vector2i size = _get_size(fd, p_size);
  1861. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1862. fd->cache[size]->scale = p_scale;
  1863. }
  1864. double TextServerAdvanced::font_get_scale(const RID &p_font_rid, int64_t p_size) const {
  1865. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1866. ERR_FAIL_COND_V(!fd, 0.0);
  1867. MutexLock lock(fd->mutex);
  1868. Vector2i size = _get_size(fd, p_size);
  1869. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0.0);
  1870. if (fd->msdf) {
  1871. return fd->cache[size]->scale * (double)p_size / (double)fd->msdf_source_size;
  1872. } else {
  1873. return fd->cache[size]->scale / fd->cache[size]->oversampling;
  1874. }
  1875. }
  1876. void TextServerAdvanced::font_set_spacing(const RID &p_font_rid, int64_t p_size, TextServer::SpacingType p_spacing, int64_t p_value) {
  1877. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1878. ERR_FAIL_COND(!fd);
  1879. MutexLock lock(fd->mutex);
  1880. Vector2i size = _get_size(fd, p_size);
  1881. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1882. switch (p_spacing) {
  1883. case TextServer::SPACING_GLYPH: {
  1884. fd->cache[size]->spacing_glyph = p_value;
  1885. } break;
  1886. case TextServer::SPACING_SPACE: {
  1887. fd->cache[size]->spacing_space = p_value;
  1888. } break;
  1889. default: {
  1890. ERR_FAIL_MSG("Invalid spacing type: " + String::num_int64(p_spacing));
  1891. } break;
  1892. }
  1893. }
  1894. int64_t TextServerAdvanced::font_get_spacing(const RID &p_font_rid, int64_t p_size, TextServer::SpacingType p_spacing) const {
  1895. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1896. ERR_FAIL_COND_V(!fd, 0);
  1897. MutexLock lock(fd->mutex);
  1898. Vector2i size = _get_size(fd, p_size);
  1899. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0);
  1900. switch (p_spacing) {
  1901. case TextServer::SPACING_GLYPH: {
  1902. if (fd->msdf) {
  1903. return fd->cache[size]->spacing_glyph * (double)p_size / (double)fd->msdf_source_size;
  1904. } else {
  1905. return fd->cache[size]->spacing_glyph;
  1906. }
  1907. } break;
  1908. case TextServer::SPACING_SPACE: {
  1909. if (fd->msdf) {
  1910. return fd->cache[size]->spacing_space * (double)p_size / (double)fd->msdf_source_size;
  1911. } else {
  1912. return fd->cache[size]->spacing_space;
  1913. }
  1914. } break;
  1915. default: {
  1916. ERR_FAIL_V_MSG(0, "Invalid spacing type: " + String::num_int64(p_spacing));
  1917. } break;
  1918. }
  1919. return 0;
  1920. }
  1921. int64_t TextServerAdvanced::font_get_texture_count(const RID &p_font_rid, const Vector2i &p_size) const {
  1922. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1923. ERR_FAIL_COND_V(!fd, 0);
  1924. MutexLock lock(fd->mutex);
  1925. Vector2i size = _get_size_outline(fd, p_size);
  1926. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0);
  1927. return fd->cache[size]->textures.size();
  1928. }
  1929. void TextServerAdvanced::font_clear_textures(const RID &p_font_rid, const Vector2i &p_size) {
  1930. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1931. ERR_FAIL_COND(!fd);
  1932. MutexLock lock(fd->mutex);
  1933. Vector2i size = _get_size_outline(fd, p_size);
  1934. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1935. fd->cache[size]->textures.clear();
  1936. }
  1937. void TextServerAdvanced::font_remove_texture(const RID &p_font_rid, const Vector2i &p_size, int64_t p_texture_index) {
  1938. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1939. ERR_FAIL_COND(!fd);
  1940. MutexLock lock(fd->mutex);
  1941. Vector2i size = _get_size_outline(fd, p_size);
  1942. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1943. ERR_FAIL_INDEX(p_texture_index, fd->cache[size]->textures.size());
  1944. fd->cache[size]->textures.remove_at(p_texture_index);
  1945. }
  1946. void TextServerAdvanced::font_set_texture_image(const RID &p_font_rid, const Vector2i &p_size, int64_t p_texture_index, const Ref<Image> &p_image) {
  1947. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1948. ERR_FAIL_COND(!fd);
  1949. ERR_FAIL_COND(p_image.is_null());
  1950. MutexLock lock(fd->mutex);
  1951. Vector2i size = _get_size_outline(fd, p_size);
  1952. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1953. ERR_FAIL_COND(p_texture_index < 0);
  1954. if (p_texture_index >= fd->cache[size]->textures.size()) {
  1955. fd->cache[size]->textures.resize(p_texture_index + 1);
  1956. }
  1957. FontTexture &tex = fd->cache[size]->textures.write[p_texture_index];
  1958. tex.imgdata = p_image->get_data();
  1959. tex.texture_w = p_image->get_width();
  1960. tex.texture_h = p_image->get_height();
  1961. tex.format = p_image->get_format();
  1962. Ref<Image> img;
  1963. img.instantiate();
  1964. img->create_from_data(tex.texture_w, tex.texture_h, false, tex.format, tex.imgdata);
  1965. tex.texture = Ref<ImageTexture>();
  1966. tex.texture.instantiate();
  1967. tex.texture->create_from_image(img);
  1968. }
  1969. Ref<Image> TextServerAdvanced::font_get_texture_image(const RID &p_font_rid, const Vector2i &p_size, int64_t p_texture_index) const {
  1970. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1971. ERR_FAIL_COND_V(!fd, Ref<Image>());
  1972. MutexLock lock(fd->mutex);
  1973. Vector2i size = _get_size_outline(fd, p_size);
  1974. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Ref<Image>());
  1975. ERR_FAIL_INDEX_V(p_texture_index, fd->cache[size]->textures.size(), Ref<Image>());
  1976. const FontTexture &tex = fd->cache[size]->textures[p_texture_index];
  1977. Ref<Image> img;
  1978. img.instantiate();
  1979. img->create_from_data(tex.texture_w, tex.texture_h, false, tex.format, tex.imgdata);
  1980. return img;
  1981. }
  1982. void TextServerAdvanced::font_set_texture_offsets(const RID &p_font_rid, const Vector2i &p_size, int64_t p_texture_index, const PackedInt32Array &p_offset) {
  1983. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1984. ERR_FAIL_COND(!fd);
  1985. MutexLock lock(fd->mutex);
  1986. Vector2i size = _get_size_outline(fd, p_size);
  1987. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  1988. ERR_FAIL_COND(p_texture_index < 0);
  1989. if (p_texture_index >= fd->cache[size]->textures.size()) {
  1990. fd->cache[size]->textures.resize(p_texture_index + 1);
  1991. }
  1992. FontTexture &tex = fd->cache[size]->textures.write[p_texture_index];
  1993. tex.offsets = p_offset;
  1994. }
  1995. PackedInt32Array TextServerAdvanced::font_get_texture_offsets(const RID &p_font_rid, const Vector2i &p_size, int64_t p_texture_index) const {
  1996. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  1997. ERR_FAIL_COND_V(!fd, PackedInt32Array());
  1998. MutexLock lock(fd->mutex);
  1999. Vector2i size = _get_size_outline(fd, p_size);
  2000. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), PackedInt32Array());
  2001. ERR_FAIL_INDEX_V(p_texture_index, fd->cache[size]->textures.size(), PackedInt32Array());
  2002. const FontTexture &tex = fd->cache[size]->textures[p_texture_index];
  2003. return tex.offsets;
  2004. }
  2005. Array TextServerAdvanced::font_get_glyph_list(const RID &p_font_rid, const Vector2i &p_size) const {
  2006. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2007. ERR_FAIL_COND_V(!fd, Array());
  2008. MutexLock lock(fd->mutex);
  2009. Vector2i size = _get_size_outline(fd, p_size);
  2010. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Array());
  2011. Array ret;
  2012. const HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2013. const int32_t *E = nullptr;
  2014. while ((E = gl.next(E))) {
  2015. ret.push_back(*E);
  2016. }
  2017. return ret;
  2018. }
  2019. void TextServerAdvanced::font_clear_glyphs(const RID &p_font_rid, const Vector2i &p_size) {
  2020. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2021. ERR_FAIL_COND(!fd);
  2022. MutexLock lock(fd->mutex);
  2023. Vector2i size = _get_size_outline(fd, p_size);
  2024. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2025. fd->cache[size]->glyph_map.clear();
  2026. }
  2027. void TextServerAdvanced::font_remove_glyph(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph) {
  2028. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2029. ERR_FAIL_COND(!fd);
  2030. MutexLock lock(fd->mutex);
  2031. Vector2i size = _get_size_outline(fd, p_size);
  2032. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2033. fd->cache[size]->glyph_map.erase(p_glyph);
  2034. }
  2035. double TextServerAdvanced::_get_extra_advance(RID p_font_rid, int p_font_size) const {
  2036. const FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2037. ERR_FAIL_COND_V(!fd, 0.0);
  2038. MutexLock lock(fd->mutex);
  2039. Vector2i size = _get_size(fd, p_font_size);
  2040. if (fd->embolden != 0.0) {
  2041. return fd->embolden * double(size.x) / 64.0;
  2042. } else {
  2043. return 0.0;
  2044. }
  2045. }
  2046. Vector2 TextServerAdvanced::font_get_glyph_advance(const RID &p_font_rid, int64_t p_size, int64_t p_glyph) const {
  2047. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2048. ERR_FAIL_COND_V(!fd, Vector2());
  2049. MutexLock lock(fd->mutex);
  2050. Vector2i size = _get_size(fd, p_size);
  2051. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Vector2());
  2052. if (!_ensure_glyph(fd, size, p_glyph)) {
  2053. return Vector2(); // Invalid or non graphicl glyph, do not display errors.
  2054. }
  2055. const HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2056. Vector2 ea;
  2057. if (fd->embolden != 0.0) {
  2058. ea.x = fd->embolden * double(size.x) / 64.0;
  2059. }
  2060. if (fd->msdf) {
  2061. return (gl[p_glyph].advance + ea) * (double)p_size / (double)fd->msdf_source_size;
  2062. } else if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_DISABLED) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x > SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  2063. return (gl[p_glyph].advance + ea).round();
  2064. } else {
  2065. return gl[p_glyph].advance + ea;
  2066. }
  2067. }
  2068. void TextServerAdvanced::font_set_glyph_advance(const RID &p_font_rid, int64_t p_size, int64_t p_glyph, const Vector2 &p_advance) {
  2069. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2070. ERR_FAIL_COND(!fd);
  2071. MutexLock lock(fd->mutex);
  2072. Vector2i size = _get_size(fd, p_size);
  2073. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2074. HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2075. gl[p_glyph].advance = p_advance;
  2076. gl[p_glyph].found = true;
  2077. }
  2078. Vector2 TextServerAdvanced::font_get_glyph_offset(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph) const {
  2079. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2080. ERR_FAIL_COND_V(!fd, Vector2());
  2081. MutexLock lock(fd->mutex);
  2082. Vector2i size = _get_size_outline(fd, p_size);
  2083. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Vector2());
  2084. if (!_ensure_glyph(fd, size, p_glyph)) {
  2085. return Vector2(); // Invalid or non graphicl glyph, do not display errors.
  2086. }
  2087. const HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2088. if (fd->msdf) {
  2089. return gl[p_glyph].rect.position * (double)p_size.x / (double)fd->msdf_source_size;
  2090. } else {
  2091. return gl[p_glyph].rect.position;
  2092. }
  2093. }
  2094. void TextServerAdvanced::font_set_glyph_offset(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph, const Vector2 &p_offset) {
  2095. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2096. ERR_FAIL_COND(!fd);
  2097. MutexLock lock(fd->mutex);
  2098. Vector2i size = _get_size_outline(fd, p_size);
  2099. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2100. HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2101. gl[p_glyph].rect.position = p_offset;
  2102. gl[p_glyph].found = true;
  2103. }
  2104. Vector2 TextServerAdvanced::font_get_glyph_size(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph) const {
  2105. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2106. ERR_FAIL_COND_V(!fd, Vector2());
  2107. MutexLock lock(fd->mutex);
  2108. Vector2i size = _get_size_outline(fd, p_size);
  2109. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Vector2());
  2110. if (!_ensure_glyph(fd, size, p_glyph)) {
  2111. return Vector2(); // Invalid or non graphicl glyph, do not display errors.
  2112. }
  2113. const HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2114. if (fd->msdf) {
  2115. return gl[p_glyph].rect.size * (double)p_size.x / (double)fd->msdf_source_size;
  2116. } else {
  2117. return gl[p_glyph].rect.size;
  2118. }
  2119. }
  2120. void TextServerAdvanced::font_set_glyph_size(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph, const Vector2 &p_gl_size) {
  2121. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2122. ERR_FAIL_COND(!fd);
  2123. MutexLock lock(fd->mutex);
  2124. Vector2i size = _get_size_outline(fd, p_size);
  2125. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2126. HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2127. gl[p_glyph].rect.size = p_gl_size;
  2128. gl[p_glyph].found = true;
  2129. }
  2130. Rect2 TextServerAdvanced::font_get_glyph_uv_rect(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph) const {
  2131. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2132. ERR_FAIL_COND_V(!fd, Rect2());
  2133. MutexLock lock(fd->mutex);
  2134. Vector2i size = _get_size_outline(fd, p_size);
  2135. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Rect2());
  2136. if (!_ensure_glyph(fd, size, p_glyph)) {
  2137. return Rect2(); // Invalid or non graphicl glyph, do not display errors.
  2138. }
  2139. const HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2140. return gl[p_glyph].uv_rect;
  2141. }
  2142. void TextServerAdvanced::font_set_glyph_uv_rect(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph, const Rect2 &p_uv_rect) {
  2143. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2144. ERR_FAIL_COND(!fd);
  2145. MutexLock lock(fd->mutex);
  2146. Vector2i size = _get_size_outline(fd, p_size);
  2147. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2148. HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2149. gl[p_glyph].uv_rect = p_uv_rect;
  2150. gl[p_glyph].found = true;
  2151. }
  2152. int64_t TextServerAdvanced::font_get_glyph_texture_idx(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph) const {
  2153. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2154. ERR_FAIL_COND_V(!fd, -1);
  2155. MutexLock lock(fd->mutex);
  2156. Vector2i size = _get_size_outline(fd, p_size);
  2157. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), -1);
  2158. if (!_ensure_glyph(fd, size, p_glyph)) {
  2159. return -1; // Invalid or non graphicl glyph, do not display errors.
  2160. }
  2161. const HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2162. return gl[p_glyph].texture_idx;
  2163. }
  2164. void TextServerAdvanced::font_set_glyph_texture_idx(const RID &p_font_rid, const Vector2i &p_size, int64_t p_glyph, int64_t p_texture_idx) {
  2165. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2166. ERR_FAIL_COND(!fd);
  2167. MutexLock lock(fd->mutex);
  2168. Vector2i size = _get_size_outline(fd, p_size);
  2169. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2170. HashMap<int32_t, FontGlyph> &gl = fd->cache[size]->glyph_map;
  2171. gl[p_glyph].texture_idx = p_texture_idx;
  2172. gl[p_glyph].found = true;
  2173. }
  2174. Dictionary TextServerAdvanced::font_get_glyph_contours(const RID &p_font_rid, int64_t p_size, int64_t p_index) const {
  2175. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2176. ERR_FAIL_COND_V(!fd, Dictionary());
  2177. MutexLock lock(fd->mutex);
  2178. Vector2i size = _get_size(fd, p_size);
  2179. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Dictionary());
  2180. PackedVector3Array points;
  2181. PackedInt32Array contours;
  2182. bool orientation;
  2183. #ifdef MODULE_FREETYPE_ENABLED
  2184. int32_t index = p_index & 0xffffff; // Remove subpixel shifts.
  2185. int error = FT_Load_Glyph(fd->cache[size]->face, index, FT_LOAD_NO_BITMAP | (fd->force_autohinter ? FT_LOAD_FORCE_AUTOHINT : 0));
  2186. ERR_FAIL_COND_V(error, Dictionary());
  2187. double h = fd->cache[size]->ascent;
  2188. double scale = (1.0 / 64.0) / fd->cache[size]->oversampling * fd->cache[size]->scale;
  2189. if (fd->msdf) {
  2190. scale = scale * (double)p_size / (double)fd->msdf_source_size;
  2191. }
  2192. for (short i = 0; i < fd->cache[size]->face->glyph->outline.n_points; i++) {
  2193. points.push_back(Vector3(fd->cache[size]->face->glyph->outline.points[i].x * scale, h - fd->cache[size]->face->glyph->outline.points[i].y * scale, FT_CURVE_TAG(fd->cache[size]->face->glyph->outline.tags[i])));
  2194. }
  2195. for (short i = 0; i < fd->cache[size]->face->glyph->outline.n_contours; i++) {
  2196. contours.push_back(fd->cache[size]->face->glyph->outline.contours[i]);
  2197. }
  2198. orientation = (FT_Outline_Get_Orientation(&fd->cache[size]->face->glyph->outline) == FT_ORIENTATION_FILL_RIGHT);
  2199. #else
  2200. return Dictionary();
  2201. #endif
  2202. Dictionary out;
  2203. out["points"] = points;
  2204. out["contours"] = contours;
  2205. out["orientation"] = orientation;
  2206. return out;
  2207. }
  2208. Array TextServerAdvanced::font_get_kerning_list(const RID &p_font_rid, int64_t p_size) const {
  2209. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2210. ERR_FAIL_COND_V(!fd, Array());
  2211. MutexLock lock(fd->mutex);
  2212. Vector2i size = _get_size(fd, p_size);
  2213. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Array());
  2214. Array ret;
  2215. for (const KeyValue<Vector2i, FontDataForSizeAdvanced *> &E : fd->cache) {
  2216. ret.push_back(E.key);
  2217. }
  2218. return ret;
  2219. }
  2220. void TextServerAdvanced::font_clear_kerning_map(const RID &p_font_rid, int64_t p_size) {
  2221. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2222. ERR_FAIL_COND(!fd);
  2223. MutexLock lock(fd->mutex);
  2224. Vector2i size = _get_size(fd, p_size);
  2225. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2226. fd->cache[size]->kerning_map.clear();
  2227. }
  2228. void TextServerAdvanced::font_remove_kerning(const RID &p_font_rid, int64_t p_size, const Vector2i &p_glyph_pair) {
  2229. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2230. ERR_FAIL_COND(!fd);
  2231. MutexLock lock(fd->mutex);
  2232. Vector2i size = _get_size(fd, p_size);
  2233. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2234. fd->cache[size]->kerning_map.erase(p_glyph_pair);
  2235. }
  2236. void TextServerAdvanced::font_set_kerning(const RID &p_font_rid, int64_t p_size, const Vector2i &p_glyph_pair, const Vector2 &p_kerning) {
  2237. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2238. ERR_FAIL_COND(!fd);
  2239. MutexLock lock(fd->mutex);
  2240. Vector2i size = _get_size(fd, p_size);
  2241. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2242. fd->cache[size]->kerning_map[p_glyph_pair] = p_kerning;
  2243. }
  2244. Vector2 TextServerAdvanced::font_get_kerning(const RID &p_font_rid, int64_t p_size, const Vector2i &p_glyph_pair) const {
  2245. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2246. ERR_FAIL_COND_V(!fd, Vector2());
  2247. MutexLock lock(fd->mutex);
  2248. Vector2i size = _get_size(fd, p_size);
  2249. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Vector2());
  2250. const Map<Vector2i, Vector2> &kern = fd->cache[size]->kerning_map;
  2251. if (kern.has(p_glyph_pair)) {
  2252. if (fd->msdf) {
  2253. return kern[p_glyph_pair] * (double)p_size / (double)fd->msdf_source_size;
  2254. } else {
  2255. return kern[p_glyph_pair];
  2256. }
  2257. } else {
  2258. #ifdef MODULE_FREETYPE_ENABLED
  2259. if (fd->cache[size]->face) {
  2260. FT_Vector delta;
  2261. FT_Get_Kerning(fd->cache[size]->face, p_glyph_pair.x, p_glyph_pair.y, FT_KERNING_DEFAULT, &delta);
  2262. if (fd->msdf) {
  2263. return Vector2(delta.x, delta.y) * (double)p_size / (double)fd->msdf_source_size;
  2264. } else {
  2265. return Vector2(delta.x, delta.y);
  2266. }
  2267. }
  2268. #endif
  2269. }
  2270. return Vector2();
  2271. }
  2272. int64_t TextServerAdvanced::font_get_glyph_index(const RID &p_font_rid, int64_t p_size, int64_t p_char, int64_t p_variation_selector) const {
  2273. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2274. ERR_FAIL_COND_V(!fd, 0);
  2275. ERR_FAIL_COND_V_MSG((p_char >= 0xd800 && p_char <= 0xdfff) || (p_char > 0x10ffff), 0, "Unicode parsing error: Invalid unicode codepoint " + String::num_int64(p_char, 16) + ".");
  2276. ERR_FAIL_COND_V_MSG((p_variation_selector >= 0xd800 && p_variation_selector <= 0xdfff) || (p_variation_selector > 0x10ffff), 0, "Unicode parsing error: Invalid unicode codepoint " + String::num_int64(p_variation_selector, 16) + ".");
  2277. MutexLock lock(fd->mutex);
  2278. Vector2i size = _get_size(fd, p_size);
  2279. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), 0);
  2280. #ifdef MODULE_FREETYPE_ENABLED
  2281. if (fd->cache[size]->face) {
  2282. if (p_variation_selector) {
  2283. return FT_Face_GetCharVariantIndex(fd->cache[size]->face, p_char, p_variation_selector);
  2284. } else {
  2285. return FT_Get_Char_Index(fd->cache[size]->face, p_char);
  2286. }
  2287. } else {
  2288. return (int64_t)p_char;
  2289. }
  2290. #else
  2291. return (int64_t)p_char;
  2292. #endif
  2293. }
  2294. bool TextServerAdvanced::font_has_char(const RID &p_font_rid, int64_t p_char) const {
  2295. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2296. ERR_FAIL_COND_V(!fd, false);
  2297. ERR_FAIL_COND_V_MSG((p_char >= 0xd800 && p_char <= 0xdfff) || (p_char > 0x10ffff), false, "Unicode parsing error: Invalid unicode codepoint " + String::num_int64(p_char, 16) + ".");
  2298. MutexLock lock(fd->mutex);
  2299. if (fd->cache.is_empty()) {
  2300. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, fd->msdf ? Vector2i(fd->msdf_source_size, 0) : Vector2i(16, 0)), false);
  2301. }
  2302. FontDataForSizeAdvanced *at_size = fd->cache.front()->get();
  2303. #ifdef MODULE_FREETYPE_ENABLED
  2304. if (at_size && at_size->face) {
  2305. return FT_Get_Char_Index(at_size->face, p_char) != 0;
  2306. }
  2307. #endif
  2308. return (at_size) ? at_size->glyph_map.has((int32_t)p_char) : false;
  2309. }
  2310. String TextServerAdvanced::font_get_supported_chars(const RID &p_font_rid) const {
  2311. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2312. ERR_FAIL_COND_V(!fd, String());
  2313. MutexLock lock(fd->mutex);
  2314. if (fd->cache.is_empty()) {
  2315. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, fd->msdf ? Vector2i(fd->msdf_source_size, 0) : Vector2i(16, 0)), String());
  2316. }
  2317. FontDataForSizeAdvanced *at_size = fd->cache.front()->get();
  2318. String chars;
  2319. #ifdef MODULE_FREETYPE_ENABLED
  2320. if (at_size && at_size->face) {
  2321. FT_UInt gindex;
  2322. FT_ULong charcode = FT_Get_First_Char(at_size->face, &gindex);
  2323. while (gindex != 0) {
  2324. if (charcode != 0) {
  2325. chars = chars + String::chr(charcode);
  2326. }
  2327. charcode = FT_Get_Next_Char(at_size->face, charcode, &gindex);
  2328. }
  2329. return chars;
  2330. }
  2331. #endif
  2332. if (at_size) {
  2333. const HashMap<int32_t, FontGlyph> &gl = at_size->glyph_map;
  2334. const int32_t *E = nullptr;
  2335. while ((E = gl.next(E))) {
  2336. chars = chars + String::chr(*E);
  2337. }
  2338. }
  2339. return chars;
  2340. }
  2341. void TextServerAdvanced::font_render_range(const RID &p_font_rid, const Vector2i &p_size, int64_t p_start, int64_t p_end) {
  2342. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2343. ERR_FAIL_COND(!fd);
  2344. ERR_FAIL_COND_MSG((p_start >= 0xd800 && p_start <= 0xdfff) || (p_start > 0x10ffff), "Unicode parsing error: Invalid unicode codepoint " + String::num_int64(p_start, 16) + ".");
  2345. ERR_FAIL_COND_MSG((p_end >= 0xd800 && p_end <= 0xdfff) || (p_end > 0x10ffff), "Unicode parsing error: Invalid unicode codepoint " + String::num_int64(p_end, 16) + ".");
  2346. MutexLock lock(fd->mutex);
  2347. Vector2i size = _get_size_outline(fd, p_size);
  2348. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2349. for (int64_t i = p_start; i <= p_end; i++) {
  2350. #ifdef MODULE_FREETYPE_ENABLED
  2351. int32_t idx = FT_Get_Char_Index(fd->cache[size]->face, i);
  2352. if (fd->cache[size]->face) {
  2353. if (fd->msdf) {
  2354. _ensure_glyph(fd, size, (int32_t)idx);
  2355. } else {
  2356. if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_QUARTER) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE)) {
  2357. _ensure_glyph(fd, size, (int32_t)idx | (0 << 27));
  2358. _ensure_glyph(fd, size, (int32_t)idx | (1 << 27));
  2359. _ensure_glyph(fd, size, (int32_t)idx | (2 << 27));
  2360. _ensure_glyph(fd, size, (int32_t)idx | (3 << 27));
  2361. } else if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_HALF) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  2362. _ensure_glyph(fd, size, (int32_t)idx | (1 << 27));
  2363. _ensure_glyph(fd, size, (int32_t)idx | (0 << 27));
  2364. } else {
  2365. _ensure_glyph(fd, size, (int32_t)idx);
  2366. }
  2367. }
  2368. }
  2369. #endif
  2370. }
  2371. }
  2372. void TextServerAdvanced::font_render_glyph(const RID &p_font_rid, const Vector2i &p_size, int64_t p_index) {
  2373. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2374. ERR_FAIL_COND(!fd);
  2375. MutexLock lock(fd->mutex);
  2376. Vector2i size = _get_size_outline(fd, p_size);
  2377. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2378. #ifdef MODULE_FREETYPE_ENABLED
  2379. int32_t idx = p_index & 0xffffff; // Remove subpixel shifts.
  2380. if (fd->cache[size]->face) {
  2381. if (fd->msdf) {
  2382. _ensure_glyph(fd, size, (int32_t)idx);
  2383. } else {
  2384. if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_QUARTER) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE)) {
  2385. _ensure_glyph(fd, size, (int32_t)idx | (0 << 27));
  2386. _ensure_glyph(fd, size, (int32_t)idx | (1 << 27));
  2387. _ensure_glyph(fd, size, (int32_t)idx | (2 << 27));
  2388. _ensure_glyph(fd, size, (int32_t)idx | (3 << 27));
  2389. } else if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_HALF) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  2390. _ensure_glyph(fd, size, (int32_t)idx | (1 << 27));
  2391. _ensure_glyph(fd, size, (int32_t)idx | (0 << 27));
  2392. } else {
  2393. _ensure_glyph(fd, size, (int32_t)idx);
  2394. }
  2395. }
  2396. }
  2397. #endif
  2398. }
  2399. void TextServerAdvanced::font_draw_glyph(const RID &p_font_rid, const RID &p_canvas, int64_t p_size, const Vector2 &p_pos, int64_t p_index, const Color &p_color) const {
  2400. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2401. ERR_FAIL_COND(!fd);
  2402. MutexLock lock(fd->mutex);
  2403. Vector2i size = _get_size(fd, p_size);
  2404. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2405. int32_t index = p_index & 0xffffff; // Remove subpixel shifts.
  2406. #ifdef MODULE_FREETYPE_ENABLED
  2407. if (!fd->msdf && fd->cache[size]->face) {
  2408. if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_QUARTER) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE)) {
  2409. int xshift = (int)(Math::floor(4 * (p_pos.x + 0.125)) - 4 * Math::floor(p_pos.x + 0.125));
  2410. index = index | (xshift << 27);
  2411. } else if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_HALF) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  2412. int xshift = (int)(Math::floor(2 * (p_pos.x + 0.25)) - 2 * Math::floor(p_pos.x + 0.25));
  2413. index = index | (xshift << 27);
  2414. }
  2415. }
  2416. #endif
  2417. if (!_ensure_glyph(fd, size, index)) {
  2418. return; // Invalid or non-graphical glyph, do not display errors, nothing to draw.
  2419. }
  2420. const FontGlyph &gl = fd->cache[size]->glyph_map[index];
  2421. if (gl.found) {
  2422. ERR_FAIL_COND(gl.texture_idx < -1 || gl.texture_idx >= fd->cache[size]->textures.size());
  2423. if (gl.texture_idx != -1) {
  2424. Color modulate = p_color;
  2425. #ifdef MODULE_FREETYPE_ENABLED
  2426. if (fd->cache[size]->face && FT_HAS_COLOR(fd->cache[size]->face)) {
  2427. modulate.r = modulate.g = modulate.b = 1.0;
  2428. }
  2429. #endif
  2430. if (RenderingServer::get_singleton() != nullptr) {
  2431. RID texture = fd->cache[size]->textures[gl.texture_idx].texture->get_rid();
  2432. if (fd->msdf) {
  2433. Point2 cpos = p_pos;
  2434. cpos += gl.rect.position * (double)p_size / (double)fd->msdf_source_size;
  2435. Size2 csize = gl.rect.size * (double)p_size / (double)fd->msdf_source_size;
  2436. RenderingServer::get_singleton()->canvas_item_add_msdf_texture_rect_region(p_canvas, Rect2(cpos, csize), texture, gl.uv_rect, modulate, 0, fd->msdf_range);
  2437. } else {
  2438. Point2 cpos = p_pos;
  2439. cpos.y = Math::floor(cpos.y);
  2440. if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_QUARTER) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE)) {
  2441. cpos.x = ((int)Math::floor(cpos.x + 0.125));
  2442. } else if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_HALF) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  2443. cpos.x = ((int)Math::floor(cpos.x + 0.25));
  2444. } else {
  2445. cpos.x = Math::floor(cpos.x);
  2446. }
  2447. cpos += gl.rect.position;
  2448. Size2 csize = gl.rect.size;
  2449. RenderingServer::get_singleton()->canvas_item_add_texture_rect_region(p_canvas, Rect2(cpos, csize), texture, gl.uv_rect, modulate, false, false);
  2450. }
  2451. }
  2452. }
  2453. }
  2454. }
  2455. void TextServerAdvanced::font_draw_glyph_outline(const RID &p_font_rid, const RID &p_canvas, int64_t p_size, int64_t p_outline_size, const Vector2 &p_pos, int64_t p_index, const Color &p_color) const {
  2456. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2457. ERR_FAIL_COND(!fd);
  2458. MutexLock lock(fd->mutex);
  2459. Vector2i size = _get_size_outline(fd, Vector2i(p_size, p_outline_size));
  2460. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2461. int32_t index = p_index & 0xffffff; // Remove subpixel shifts.
  2462. #ifdef MODULE_FREETYPE_ENABLED
  2463. if (!fd->msdf && fd->cache[size]->face) {
  2464. if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_QUARTER) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE)) {
  2465. int xshift = (int)(Math::floor(4 * (p_pos.x + 0.125)) - 4 * Math::floor(p_pos.x + 0.125));
  2466. index = index | (xshift << 27);
  2467. } else if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_HALF) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  2468. int xshift = (int)(Math::floor(2 * (p_pos.x + 0.25)) - 2 * Math::floor(p_pos.x + 0.25));
  2469. index = index | (xshift << 27);
  2470. }
  2471. }
  2472. #endif
  2473. if (!_ensure_glyph(fd, size, index)) {
  2474. return; // Invalid or non-graphical glyph, do not display errors, nothing to draw.
  2475. }
  2476. const FontGlyph &gl = fd->cache[size]->glyph_map[index];
  2477. if (gl.found) {
  2478. ERR_FAIL_COND(gl.texture_idx < -1 || gl.texture_idx >= fd->cache[size]->textures.size());
  2479. if (gl.texture_idx != -1) {
  2480. Color modulate = p_color;
  2481. #ifdef MODULE_FREETYPE_ENABLED
  2482. if (fd->cache[size]->face && FT_HAS_COLOR(fd->cache[size]->face)) {
  2483. modulate.r = modulate.g = modulate.b = 1.0;
  2484. }
  2485. #endif
  2486. if (RenderingServer::get_singleton() != nullptr) {
  2487. RID texture = fd->cache[size]->textures[gl.texture_idx].texture->get_rid();
  2488. if (fd->msdf) {
  2489. Point2 cpos = p_pos;
  2490. cpos += gl.rect.position * (double)p_size / (double)fd->msdf_source_size;
  2491. Size2 csize = gl.rect.size * (double)p_size / (double)fd->msdf_source_size;
  2492. RenderingServer::get_singleton()->canvas_item_add_msdf_texture_rect_region(p_canvas, Rect2(cpos, csize), texture, gl.uv_rect, modulate, p_outline_size * 2, fd->msdf_range);
  2493. } else {
  2494. Point2 cpos = p_pos;
  2495. cpos.y = Math::floor(cpos.y);
  2496. if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_QUARTER) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE)) {
  2497. cpos.x = ((int)Math::floor(cpos.x + 0.125));
  2498. } else if ((fd->subpixel_positioning == SUBPIXEL_POSITIONING_ONE_HALF) || (fd->subpixel_positioning == SUBPIXEL_POSITIONING_AUTO && size.x <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE)) {
  2499. cpos.x = ((int)Math::floor(cpos.x + 0.25));
  2500. } else {
  2501. cpos.x = Math::floor(cpos.x);
  2502. }
  2503. cpos += gl.rect.position;
  2504. Size2 csize = gl.rect.size;
  2505. RenderingServer::get_singleton()->canvas_item_add_texture_rect_region(p_canvas, Rect2(cpos, csize), texture, gl.uv_rect, modulate, false, false);
  2506. }
  2507. }
  2508. }
  2509. }
  2510. }
  2511. bool TextServerAdvanced::font_is_language_supported(const RID &p_font_rid, const String &p_language) const {
  2512. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2513. ERR_FAIL_COND_V(!fd, false);
  2514. MutexLock lock(fd->mutex);
  2515. if (fd->language_support_overrides.has(p_language)) {
  2516. return fd->language_support_overrides[p_language];
  2517. } else {
  2518. return true;
  2519. }
  2520. }
  2521. void TextServerAdvanced::font_set_language_support_override(const RID &p_font_rid, const String &p_language, bool p_supported) {
  2522. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2523. ERR_FAIL_COND(!fd);
  2524. MutexLock lock(fd->mutex);
  2525. fd->language_support_overrides[p_language] = p_supported;
  2526. }
  2527. bool TextServerAdvanced::font_get_language_support_override(const RID &p_font_rid, const String &p_language) {
  2528. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2529. ERR_FAIL_COND_V(!fd, false);
  2530. MutexLock lock(fd->mutex);
  2531. return fd->language_support_overrides[p_language];
  2532. }
  2533. void TextServerAdvanced::font_remove_language_support_override(const RID &p_font_rid, const String &p_language) {
  2534. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2535. ERR_FAIL_COND(!fd);
  2536. MutexLock lock(fd->mutex);
  2537. fd->language_support_overrides.erase(p_language);
  2538. }
  2539. PackedStringArray TextServerAdvanced::font_get_language_support_overrides(const RID &p_font_rid) {
  2540. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2541. ERR_FAIL_COND_V(!fd, PackedStringArray());
  2542. MutexLock lock(fd->mutex);
  2543. PackedStringArray out;
  2544. for (const KeyValue<String, bool> &E : fd->language_support_overrides) {
  2545. out.push_back(E.key);
  2546. }
  2547. return out;
  2548. }
  2549. bool TextServerAdvanced::font_is_script_supported(const RID &p_font_rid, const String &p_script) const {
  2550. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2551. ERR_FAIL_COND_V(!fd, false);
  2552. MutexLock lock(fd->mutex);
  2553. if (fd->script_support_overrides.has(p_script)) {
  2554. return fd->script_support_overrides[p_script];
  2555. } else {
  2556. Vector2i size = _get_size(fd, 16);
  2557. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), false);
  2558. return fd->supported_scripts.has(hb_tag_from_string(p_script.ascii().get_data(), -1));
  2559. }
  2560. }
  2561. void TextServerAdvanced::font_set_script_support_override(const RID &p_font_rid, const String &p_script, bool p_supported) {
  2562. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2563. ERR_FAIL_COND(!fd);
  2564. MutexLock lock(fd->mutex);
  2565. fd->script_support_overrides[p_script] = p_supported;
  2566. }
  2567. bool TextServerAdvanced::font_get_script_support_override(const RID &p_font_rid, const String &p_script) {
  2568. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2569. ERR_FAIL_COND_V(!fd, false);
  2570. MutexLock lock(fd->mutex);
  2571. return fd->script_support_overrides[p_script];
  2572. }
  2573. void TextServerAdvanced::font_remove_script_support_override(const RID &p_font_rid, const String &p_script) {
  2574. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2575. ERR_FAIL_COND(!fd);
  2576. MutexLock lock(fd->mutex);
  2577. fd->script_support_overrides.erase(p_script);
  2578. }
  2579. PackedStringArray TextServerAdvanced::font_get_script_support_overrides(const RID &p_font_rid) {
  2580. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2581. ERR_FAIL_COND_V(!fd, PackedStringArray());
  2582. MutexLock lock(fd->mutex);
  2583. PackedStringArray out;
  2584. for (const KeyValue<String, bool> &E : fd->script_support_overrides) {
  2585. out.push_back(E.key);
  2586. }
  2587. return out;
  2588. }
  2589. void TextServerAdvanced::font_set_opentype_feature_overrides(const RID &p_font_rid, const Dictionary &p_overrides) {
  2590. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2591. ERR_FAIL_COND(!fd);
  2592. MutexLock lock(fd->mutex);
  2593. Vector2i size = _get_size(fd, 16);
  2594. ERR_FAIL_COND(!_ensure_cache_for_size(fd, size));
  2595. fd->feature_overrides = p_overrides;
  2596. }
  2597. Dictionary TextServerAdvanced::font_get_opentype_feature_overrides(const RID &p_font_rid) const {
  2598. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2599. ERR_FAIL_COND_V(!fd, Dictionary());
  2600. MutexLock lock(fd->mutex);
  2601. return fd->feature_overrides;
  2602. }
  2603. Dictionary TextServerAdvanced::font_supported_feature_list(const RID &p_font_rid) const {
  2604. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2605. ERR_FAIL_COND_V(!fd, Dictionary());
  2606. MutexLock lock(fd->mutex);
  2607. Vector2i size = _get_size(fd, 16);
  2608. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Dictionary());
  2609. return fd->supported_features;
  2610. }
  2611. Dictionary TextServerAdvanced::font_supported_variation_list(const RID &p_font_rid) const {
  2612. FontDataAdvanced *fd = font_owner.get_or_null(p_font_rid);
  2613. ERR_FAIL_COND_V(!fd, Dictionary());
  2614. MutexLock lock(fd->mutex);
  2615. Vector2i size = _get_size(fd, 16);
  2616. ERR_FAIL_COND_V(!_ensure_cache_for_size(fd, size), Dictionary());
  2617. return fd->supported_varaitions;
  2618. }
  2619. double TextServerAdvanced::font_get_global_oversampling() const {
  2620. return oversampling;
  2621. }
  2622. void TextServerAdvanced::font_set_global_oversampling(double p_oversampling) {
  2623. _THREAD_SAFE_METHOD_
  2624. if (oversampling != p_oversampling) {
  2625. oversampling = p_oversampling;
  2626. List<RID> fonts;
  2627. font_owner.get_owned_list(&fonts);
  2628. bool font_cleared = false;
  2629. for (const RID &E : fonts) {
  2630. if (!font_is_multichannel_signed_distance_field(E) && font_get_oversampling(E) <= 0) {
  2631. font_clear_size_cache(E);
  2632. font_cleared = true;
  2633. }
  2634. }
  2635. if (font_cleared) {
  2636. List<RID> text_bufs;
  2637. shaped_owner.get_owned_list(&text_bufs);
  2638. for (const RID &E : text_bufs) {
  2639. invalidate(shaped_owner.get_or_null(E), false);
  2640. }
  2641. }
  2642. }
  2643. }
  2644. /*************************************************************************/
  2645. /* Shaped text buffer interface */
  2646. /*************************************************************************/
  2647. int64_t TextServerAdvanced::_convert_pos(const ShapedTextDataAdvanced *p_sd, int64_t p_pos) const {
  2648. int64_t limit = p_pos;
  2649. if (p_sd->text.length() != p_sd->utf16.length()) {
  2650. const UChar *data = p_sd->utf16.get_data();
  2651. for (int i = 0; i < p_pos; i++) {
  2652. if (U16_IS_LEAD(data[i])) {
  2653. limit--;
  2654. }
  2655. }
  2656. }
  2657. return limit;
  2658. }
  2659. int64_t TextServerAdvanced::_convert_pos_inv(const ShapedTextDataAdvanced *p_sd, int64_t p_pos) const {
  2660. int64_t limit = p_pos;
  2661. if (p_sd->text.length() != p_sd->utf16.length()) {
  2662. for (int i = 0; i < p_pos; i++) {
  2663. if (p_sd->text[i] > 0xffff) {
  2664. limit++;
  2665. }
  2666. }
  2667. }
  2668. return limit;
  2669. }
  2670. void TextServerAdvanced::invalidate(TextServerAdvanced::ShapedTextDataAdvanced *p_shaped, bool p_text) {
  2671. p_shaped->valid = false;
  2672. p_shaped->sort_valid = false;
  2673. p_shaped->line_breaks_valid = false;
  2674. p_shaped->justification_ops_valid = false;
  2675. p_shaped->text_trimmed = false;
  2676. p_shaped->ascent = 0.0;
  2677. p_shaped->descent = 0.0;
  2678. p_shaped->width = 0.0;
  2679. p_shaped->upos = 0.0;
  2680. p_shaped->uthk = 0.0;
  2681. p_shaped->glyphs.clear();
  2682. p_shaped->glyphs_logical.clear();
  2683. p_shaped->overrun_trim_data = TrimData();
  2684. p_shaped->utf16 = Char16String();
  2685. for (int i = 0; i < p_shaped->bidi_iter.size(); i++) {
  2686. ubidi_close(p_shaped->bidi_iter[i]);
  2687. }
  2688. p_shaped->bidi_iter.clear();
  2689. if (p_text) {
  2690. if (p_shaped->script_iter != nullptr) {
  2691. memdelete(p_shaped->script_iter);
  2692. p_shaped->script_iter = nullptr;
  2693. }
  2694. p_shaped->break_ops_valid = false;
  2695. p_shaped->js_ops_valid = false;
  2696. }
  2697. }
  2698. void TextServerAdvanced::full_copy(ShapedTextDataAdvanced *p_shaped) {
  2699. ShapedTextDataAdvanced *parent = shaped_owner.get_or_null(p_shaped->parent);
  2700. for (const KeyValue<Variant, ShapedTextDataAdvanced::EmbeddedObject> &E : parent->objects) {
  2701. if (E.value.pos >= p_shaped->start && E.value.pos < p_shaped->end) {
  2702. p_shaped->objects[E.key] = E.value;
  2703. }
  2704. }
  2705. for (int i = 0; i < parent->spans.size(); i++) {
  2706. ShapedTextDataAdvanced::Span span = parent->spans[i];
  2707. if (span.start >= p_shaped->end || span.end <= p_shaped->start) {
  2708. continue;
  2709. }
  2710. span.start = MAX(p_shaped->start, span.start);
  2711. span.end = MIN(p_shaped->end, span.end);
  2712. p_shaped->spans.push_back(span);
  2713. }
  2714. p_shaped->parent = RID();
  2715. }
  2716. RID TextServerAdvanced::create_shaped_text(TextServer::Direction p_direction, TextServer::Orientation p_orientation) {
  2717. _THREAD_SAFE_METHOD_
  2718. ShapedTextDataAdvanced *sd = memnew(ShapedTextDataAdvanced);
  2719. sd->hb_buffer = hb_buffer_create();
  2720. sd->direction = p_direction;
  2721. sd->orientation = p_orientation;
  2722. return shaped_owner.make_rid(sd);
  2723. }
  2724. void TextServerAdvanced::shaped_text_clear(const RID &p_shaped) {
  2725. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2726. ERR_FAIL_COND(!sd);
  2727. MutexLock lock(sd->mutex);
  2728. sd->parent = RID();
  2729. sd->start = 0;
  2730. sd->end = 0;
  2731. sd->text = String();
  2732. sd->spans.clear();
  2733. sd->objects.clear();
  2734. sd->bidi_override.clear();
  2735. invalidate(sd, true);
  2736. }
  2737. void TextServerAdvanced::shaped_text_set_direction(const RID &p_shaped, TextServer::Direction p_direction) {
  2738. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2739. ERR_FAIL_COND(!sd);
  2740. MutexLock lock(sd->mutex);
  2741. if (sd->direction != p_direction) {
  2742. if (sd->parent != RID()) {
  2743. full_copy(sd);
  2744. }
  2745. sd->direction = p_direction;
  2746. invalidate(sd, false);
  2747. }
  2748. }
  2749. TextServer::Direction TextServerAdvanced::shaped_text_get_direction(const RID &p_shaped) const {
  2750. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2751. ERR_FAIL_COND_V(!sd, TextServer::DIRECTION_LTR);
  2752. MutexLock lock(sd->mutex);
  2753. return sd->direction;
  2754. }
  2755. TextServer::Direction TextServerAdvanced::shaped_text_get_inferred_direction(const RID &p_shaped) const {
  2756. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2757. ERR_FAIL_COND_V(!sd, TextServer::DIRECTION_LTR);
  2758. MutexLock lock(sd->mutex);
  2759. return sd->para_direction;
  2760. }
  2761. void TextServerAdvanced::shaped_text_set_custom_punctuation(const RID &p_shaped, const String &p_punct) {
  2762. _THREAD_SAFE_METHOD_
  2763. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2764. ERR_FAIL_COND(!sd);
  2765. if (sd->custom_punct != p_punct) {
  2766. if (sd->parent != RID()) {
  2767. full_copy(sd);
  2768. }
  2769. sd->custom_punct = p_punct;
  2770. invalidate(sd, false);
  2771. }
  2772. }
  2773. String TextServerAdvanced::shaped_text_get_custom_punctuation(const RID &p_shaped) const {
  2774. _THREAD_SAFE_METHOD_
  2775. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2776. ERR_FAIL_COND_V(!sd, String());
  2777. return sd->custom_punct;
  2778. }
  2779. void TextServerAdvanced::shaped_text_set_bidi_override(const RID &p_shaped, const Array &p_override) {
  2780. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2781. ERR_FAIL_COND(!sd);
  2782. MutexLock lock(sd->mutex);
  2783. if (sd->parent != RID()) {
  2784. full_copy(sd);
  2785. }
  2786. sd->bidi_override.clear();
  2787. for (int i = 0; i < p_override.size(); i++) {
  2788. sd->bidi_override.push_back(p_override[i]);
  2789. }
  2790. invalidate(sd, false);
  2791. }
  2792. void TextServerAdvanced::shaped_text_set_orientation(const RID &p_shaped, TextServer::Orientation p_orientation) {
  2793. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2794. ERR_FAIL_COND(!sd);
  2795. MutexLock lock(sd->mutex);
  2796. if (sd->orientation != p_orientation) {
  2797. if (sd->parent != RID()) {
  2798. full_copy(sd);
  2799. }
  2800. sd->orientation = p_orientation;
  2801. invalidate(sd, false);
  2802. }
  2803. }
  2804. void TextServerAdvanced::shaped_text_set_preserve_invalid(const RID &p_shaped, bool p_enabled) {
  2805. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2806. ERR_FAIL_COND(!sd);
  2807. MutexLock lock(sd->mutex);
  2808. ERR_FAIL_COND(sd->parent != RID());
  2809. if (sd->preserve_invalid != p_enabled) {
  2810. sd->preserve_invalid = p_enabled;
  2811. invalidate(sd, false);
  2812. }
  2813. }
  2814. bool TextServerAdvanced::shaped_text_get_preserve_invalid(const RID &p_shaped) const {
  2815. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2816. ERR_FAIL_COND_V(!sd, false);
  2817. MutexLock lock(sd->mutex);
  2818. return sd->preserve_invalid;
  2819. }
  2820. void TextServerAdvanced::shaped_text_set_preserve_control(const RID &p_shaped, bool p_enabled) {
  2821. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2822. ERR_FAIL_COND(!sd);
  2823. MutexLock lock(sd->mutex);
  2824. if (sd->preserve_control != p_enabled) {
  2825. if (sd->parent != RID()) {
  2826. full_copy(sd);
  2827. }
  2828. sd->preserve_control = p_enabled;
  2829. invalidate(sd, false);
  2830. }
  2831. }
  2832. bool TextServerAdvanced::shaped_text_get_preserve_control(const RID &p_shaped) const {
  2833. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2834. ERR_FAIL_COND_V(!sd, false);
  2835. MutexLock lock(sd->mutex);
  2836. return sd->preserve_control;
  2837. }
  2838. TextServer::Orientation TextServerAdvanced::shaped_text_get_orientation(const RID &p_shaped) const {
  2839. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2840. ERR_FAIL_COND_V(!sd, TextServer::ORIENTATION_HORIZONTAL);
  2841. MutexLock lock(sd->mutex);
  2842. return sd->orientation;
  2843. }
  2844. int64_t TextServerAdvanced::shaped_get_span_count(const RID &p_shaped) const {
  2845. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2846. ERR_FAIL_COND_V(!sd, 0);
  2847. return sd->spans.size();
  2848. }
  2849. Variant TextServerAdvanced::shaped_get_span_meta(const RID &p_shaped, int64_t p_index) const {
  2850. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2851. ERR_FAIL_COND_V(!sd, Variant());
  2852. ERR_FAIL_INDEX_V(p_index, sd->spans.size(), Variant());
  2853. return sd->spans[p_index].meta;
  2854. }
  2855. void TextServerAdvanced::shaped_set_span_update_font(const RID &p_shaped, int64_t p_index, const Array &p_fonts, int64_t p_size, const Dictionary &p_opentype_features) {
  2856. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2857. ERR_FAIL_COND(!sd);
  2858. ERR_FAIL_INDEX(p_index, sd->spans.size());
  2859. ShapedTextDataAdvanced::Span &span = sd->spans.ptrw()[p_index];
  2860. bool changed = (span.font_size != p_size) || (span.features != p_opentype_features) || (p_fonts.size() != span.fonts.size());
  2861. if (!changed) {
  2862. for (int i = 0; i < p_fonts.size(); i++) {
  2863. changed = changed || (span.fonts[i] != p_fonts[i]);
  2864. }
  2865. }
  2866. if (changed) {
  2867. span.fonts = p_fonts;
  2868. span.font_size = p_size;
  2869. span.features = p_opentype_features;
  2870. invalidate(sd, false);
  2871. }
  2872. }
  2873. bool TextServerAdvanced::shaped_text_add_string(const RID &p_shaped, const String &p_text, const Array &p_fonts, int64_t p_size, const Dictionary &p_opentype_features, const String &p_language, const Variant &p_meta) {
  2874. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2875. ERR_FAIL_COND_V(!sd, false);
  2876. ERR_FAIL_COND_V(p_size <= 0, false);
  2877. MutexLock lock(sd->mutex);
  2878. for (int i = 0; i < p_fonts.size(); i++) {
  2879. ERR_FAIL_COND_V(!font_owner.get_or_null(p_fonts[i]), false);
  2880. }
  2881. if (p_text.is_empty()) {
  2882. return true;
  2883. }
  2884. if (sd->parent != RID()) {
  2885. full_copy(sd);
  2886. }
  2887. ShapedTextDataAdvanced::Span span;
  2888. span.start = sd->text.length();
  2889. span.end = span.start + p_text.length();
  2890. span.fonts = p_fonts; // Do not pre-sort, spans will be divided to subruns later.
  2891. span.font_size = p_size;
  2892. span.language = p_language;
  2893. span.features = p_opentype_features;
  2894. span.meta = p_meta;
  2895. sd->spans.push_back(span);
  2896. sd->text = sd->text + p_text;
  2897. sd->end += p_text.length();
  2898. invalidate(sd, true);
  2899. return true;
  2900. }
  2901. bool TextServerAdvanced::shaped_text_add_object(const RID &p_shaped, const Variant &p_key, const Size2 &p_size, InlineAlignment p_inline_align, int64_t p_length) {
  2902. _THREAD_SAFE_METHOD_
  2903. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2904. ERR_FAIL_COND_V(!sd, false);
  2905. ERR_FAIL_COND_V(p_key == Variant(), false);
  2906. ERR_FAIL_COND_V(sd->objects.has(p_key), false);
  2907. if (sd->parent != RID()) {
  2908. full_copy(sd);
  2909. }
  2910. ShapedTextDataAdvanced::Span span;
  2911. span.start = sd->start + sd->text.length();
  2912. span.end = span.start + p_length;
  2913. span.embedded_key = p_key;
  2914. ShapedTextDataAdvanced::EmbeddedObject obj;
  2915. obj.inline_align = p_inline_align;
  2916. obj.rect.size = p_size;
  2917. obj.pos = span.start;
  2918. sd->spans.push_back(span);
  2919. sd->text = sd->text + String::chr(0xfffc).repeat(p_length);
  2920. sd->end += p_length;
  2921. sd->objects[p_key] = obj;
  2922. invalidate(sd, true);
  2923. return true;
  2924. }
  2925. bool TextServerAdvanced::shaped_text_resize_object(const RID &p_shaped, const Variant &p_key, const Size2 &p_size, InlineAlignment p_inline_align) {
  2926. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  2927. ERR_FAIL_COND_V(!sd, false);
  2928. MutexLock lock(sd->mutex);
  2929. ERR_FAIL_COND_V(!sd->objects.has(p_key), false);
  2930. sd->objects[p_key].rect.size = p_size;
  2931. sd->objects[p_key].inline_align = p_inline_align;
  2932. if (sd->valid) {
  2933. // Recalc string metrics.
  2934. sd->ascent = 0;
  2935. sd->descent = 0;
  2936. sd->width = 0;
  2937. sd->upos = 0;
  2938. sd->uthk = 0;
  2939. int sd_size = sd->glyphs.size();
  2940. for (int i = 0; i < sd_size; i++) {
  2941. Glyph gl = sd->glyphs[i];
  2942. Variant key;
  2943. if (gl.count == 1) {
  2944. for (const KeyValue<Variant, ShapedTextDataAdvanced::EmbeddedObject> &E : sd->objects) {
  2945. if (E.value.pos == gl.start) {
  2946. key = E.key;
  2947. break;
  2948. }
  2949. }
  2950. }
  2951. if (key != Variant()) {
  2952. if (sd->orientation == ORIENTATION_HORIZONTAL) {
  2953. sd->objects[key].rect.position.x = sd->width;
  2954. sd->width += sd->objects[key].rect.size.x;
  2955. sd->glyphs.write[i].advance = sd->objects[key].rect.size.x;
  2956. } else {
  2957. sd->objects[key].rect.position.y = sd->width;
  2958. sd->width += sd->objects[key].rect.size.y;
  2959. sd->glyphs.write[i].advance = sd->objects[key].rect.size.y;
  2960. }
  2961. } else {
  2962. if (gl.font_rid.is_valid()) {
  2963. if (sd->orientation == ORIENTATION_HORIZONTAL) {
  2964. sd->ascent = MAX(sd->ascent, MAX(font_get_ascent(gl.font_rid, gl.font_size), -gl.y_off));
  2965. sd->descent = MAX(sd->descent, MAX(font_get_descent(gl.font_rid, gl.font_size), gl.y_off));
  2966. } else {
  2967. sd->ascent = MAX(sd->ascent, Math::round(font_get_glyph_advance(gl.font_rid, gl.font_size, gl.index).x * 0.5));
  2968. sd->descent = MAX(sd->descent, Math::round(font_get_glyph_advance(gl.font_rid, gl.font_size, gl.index).x * 0.5));
  2969. }
  2970. sd->upos = MAX(sd->upos, font_get_underline_position(gl.font_rid, gl.font_size));
  2971. sd->uthk = MAX(sd->uthk, font_get_underline_thickness(gl.font_rid, gl.font_size));
  2972. } else if (sd->preserve_invalid || (sd->preserve_control && is_control(gl.index))) {
  2973. // Glyph not found, replace with hex code box.
  2974. if (sd->orientation == ORIENTATION_HORIZONTAL) {
  2975. sd->ascent = MAX(sd->ascent, get_hex_code_box_size(gl.font_size, gl.index).y);
  2976. } else {
  2977. sd->ascent = MAX(sd->ascent, Math::round(get_hex_code_box_size(gl.font_size, gl.index).x * 0.5));
  2978. sd->descent = MAX(sd->descent, Math::round(get_hex_code_box_size(gl.font_size, gl.index).x * 0.5));
  2979. }
  2980. }
  2981. sd->width += gl.advance * gl.repeat;
  2982. }
  2983. }
  2984. _realign(sd);
  2985. }
  2986. return true;
  2987. }
  2988. void TextServerAdvanced::_realign(ShapedTextDataAdvanced *p_sd) const {
  2989. // Align embedded objects to baseline.
  2990. double full_ascent = p_sd->ascent;
  2991. double full_descent = p_sd->descent;
  2992. for (KeyValue<Variant, ShapedTextDataAdvanced::EmbeddedObject> &E : p_sd->objects) {
  2993. if ((E.value.pos >= p_sd->start) && (E.value.pos < p_sd->end)) {
  2994. if (p_sd->orientation == ORIENTATION_HORIZONTAL) {
  2995. switch (E.value.inline_align & INLINE_ALIGNMENT_TEXT_MASK) {
  2996. case INLINE_ALIGNMENT_TO_TOP: {
  2997. E.value.rect.position.y = -p_sd->ascent;
  2998. } break;
  2999. case INLINE_ALIGNMENT_TO_CENTER: {
  3000. E.value.rect.position.y = (-p_sd->ascent + p_sd->descent) / 2;
  3001. } break;
  3002. case INLINE_ALIGNMENT_TO_BASELINE: {
  3003. E.value.rect.position.y = 0;
  3004. } break;
  3005. case INLINE_ALIGNMENT_TO_BOTTOM: {
  3006. E.value.rect.position.y = p_sd->descent;
  3007. } break;
  3008. }
  3009. switch (E.value.inline_align & INLINE_ALIGNMENT_IMAGE_MASK) {
  3010. case INLINE_ALIGNMENT_BOTTOM_TO: {
  3011. E.value.rect.position.y -= E.value.rect.size.y;
  3012. } break;
  3013. case INLINE_ALIGNMENT_CENTER_TO: {
  3014. E.value.rect.position.y -= E.value.rect.size.y / 2;
  3015. } break;
  3016. case INLINE_ALIGNMENT_TOP_TO: {
  3017. // NOP
  3018. } break;
  3019. }
  3020. full_ascent = MAX(full_ascent, -E.value.rect.position.y);
  3021. full_descent = MAX(full_descent, E.value.rect.position.y + E.value.rect.size.y);
  3022. } else {
  3023. switch (E.value.inline_align & INLINE_ALIGNMENT_TEXT_MASK) {
  3024. case INLINE_ALIGNMENT_TO_TOP: {
  3025. E.value.rect.position.x = -p_sd->ascent;
  3026. } break;
  3027. case INLINE_ALIGNMENT_TO_CENTER: {
  3028. E.value.rect.position.x = (-p_sd->ascent + p_sd->descent) / 2;
  3029. } break;
  3030. case INLINE_ALIGNMENT_TO_BASELINE: {
  3031. E.value.rect.position.x = 0;
  3032. } break;
  3033. case INLINE_ALIGNMENT_TO_BOTTOM: {
  3034. E.value.rect.position.x = p_sd->descent;
  3035. } break;
  3036. }
  3037. switch (E.value.inline_align & INLINE_ALIGNMENT_IMAGE_MASK) {
  3038. case INLINE_ALIGNMENT_BOTTOM_TO: {
  3039. E.value.rect.position.x -= E.value.rect.size.x;
  3040. } break;
  3041. case INLINE_ALIGNMENT_CENTER_TO: {
  3042. E.value.rect.position.x -= E.value.rect.size.x / 2;
  3043. } break;
  3044. case INLINE_ALIGNMENT_TOP_TO: {
  3045. // NOP
  3046. } break;
  3047. }
  3048. full_ascent = MAX(full_ascent, -E.value.rect.position.x);
  3049. full_descent = MAX(full_descent, E.value.rect.position.x + E.value.rect.size.x);
  3050. }
  3051. }
  3052. }
  3053. p_sd->ascent = full_ascent;
  3054. p_sd->descent = full_descent;
  3055. }
  3056. RID TextServerAdvanced::shaped_text_substr(const RID &p_shaped, int64_t p_start, int64_t p_length) const {
  3057. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3058. ERR_FAIL_COND_V(!sd, RID());
  3059. MutexLock lock(sd->mutex);
  3060. if (sd->parent != RID()) {
  3061. return shaped_text_substr(sd->parent, p_start, p_length);
  3062. }
  3063. if (!sd->valid) {
  3064. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  3065. }
  3066. ERR_FAIL_COND_V(p_start < 0 || p_length < 0, RID());
  3067. ERR_FAIL_COND_V(sd->start > p_start || sd->end < p_start, RID());
  3068. ERR_FAIL_COND_V(sd->end < p_start + p_length, RID());
  3069. ShapedTextDataAdvanced *new_sd = memnew(ShapedTextDataAdvanced);
  3070. new_sd->parent = p_shaped;
  3071. new_sd->start = p_start;
  3072. new_sd->end = p_start + p_length;
  3073. new_sd->orientation = sd->orientation;
  3074. new_sd->direction = sd->direction;
  3075. new_sd->custom_punct = sd->custom_punct;
  3076. new_sd->para_direction = sd->para_direction;
  3077. if (!_shape_substr(new_sd, sd, p_start, p_length)) {
  3078. memdelete(new_sd);
  3079. return RID();
  3080. }
  3081. return shaped_owner.make_rid(new_sd);
  3082. }
  3083. bool TextServerAdvanced::_shape_substr(ShapedTextDataAdvanced *p_new_sd, const ShapedTextDataAdvanced *p_sd, int64_t p_start, int64_t p_length) const {
  3084. if (p_new_sd->valid) {
  3085. return true;
  3086. }
  3087. p_new_sd->hb_buffer = hb_buffer_create();
  3088. p_new_sd->line_breaks_valid = p_sd->line_breaks_valid;
  3089. p_new_sd->justification_ops_valid = p_sd->justification_ops_valid;
  3090. p_new_sd->sort_valid = false;
  3091. p_new_sd->upos = p_sd->upos;
  3092. p_new_sd->uthk = p_sd->uthk;
  3093. if (p_length > 0) {
  3094. p_new_sd->text = p_sd->text.substr(p_start - p_sd->start, p_length);
  3095. p_new_sd->utf16 = p_new_sd->text.utf16();
  3096. p_new_sd->script_iter = memnew(ScriptIterator(p_new_sd->text, 0, p_new_sd->text.length()));
  3097. int sd_size = p_sd->glyphs.size();
  3098. const Glyph *sd_glyphs = p_sd->glyphs.ptr();
  3099. for (int ov = 0; ov < p_sd->bidi_override.size(); ov++) {
  3100. UErrorCode err = U_ZERO_ERROR;
  3101. if (p_sd->bidi_override[ov].x >= p_start + p_length || p_sd->bidi_override[ov].y <= p_start) {
  3102. continue;
  3103. }
  3104. int start = _convert_pos_inv(p_sd, MAX(0, p_start - p_sd->bidi_override[ov].x));
  3105. int end = _convert_pos_inv(p_sd, MIN(p_start + p_length, p_sd->bidi_override[ov].y) - p_sd->bidi_override[ov].x);
  3106. ERR_FAIL_COND_V_MSG((start < 0 || end - start > p_new_sd->utf16.length()), false, "Invalid BiDi override range.");
  3107. // Create temporary line bidi & shape.
  3108. UBiDi *bidi_iter = ubidi_openSized(end - start, 0, &err);
  3109. ERR_FAIL_COND_V_MSG(U_FAILURE(err), false, u_errorName(err));
  3110. ubidi_setLine(p_sd->bidi_iter[ov], start, end, bidi_iter, &err);
  3111. if (U_FAILURE(err)) {
  3112. ubidi_close(bidi_iter);
  3113. ERR_FAIL_V_MSG(false, u_errorName(err));
  3114. }
  3115. p_new_sd->bidi_iter.push_back(bidi_iter);
  3116. err = U_ZERO_ERROR;
  3117. int bidi_run_count = ubidi_countRuns(bidi_iter, &err);
  3118. ERR_FAIL_COND_V_MSG(U_FAILURE(err), false, u_errorName(err));
  3119. for (int i = 0; i < bidi_run_count; i++) {
  3120. int32_t _bidi_run_start = 0;
  3121. int32_t _bidi_run_length = 0;
  3122. ubidi_getVisualRun(bidi_iter, i, &_bidi_run_start, &_bidi_run_length);
  3123. int32_t bidi_run_start = _convert_pos(p_sd, p_sd->bidi_override[ov].x + start + _bidi_run_start);
  3124. int32_t bidi_run_end = _convert_pos(p_sd, p_sd->bidi_override[ov].x + start + _bidi_run_start + _bidi_run_length);
  3125. for (int j = 0; j < sd_size; j++) {
  3126. if ((sd_glyphs[j].start >= bidi_run_start) && (sd_glyphs[j].end <= bidi_run_end)) {
  3127. // Copy glyphs.
  3128. Glyph gl = sd_glyphs[j];
  3129. Variant key;
  3130. bool find_embedded = false;
  3131. if (gl.count == 1) {
  3132. for (const KeyValue<Variant, ShapedTextDataAdvanced::EmbeddedObject> &E : p_sd->objects) {
  3133. if (E.value.pos == gl.start) {
  3134. find_embedded = true;
  3135. key = E.key;
  3136. p_new_sd->objects[key] = E.value;
  3137. break;
  3138. }
  3139. }
  3140. }
  3141. if (find_embedded) {
  3142. if (p_new_sd->orientation == ORIENTATION_HORIZONTAL) {
  3143. p_new_sd->objects[key].rect.position.x = p_new_sd->width;
  3144. p_new_sd->width += p_new_sd->objects[key].rect.size.x;
  3145. } else {
  3146. p_new_sd->objects[key].rect.position.y = p_new_sd->width;
  3147. p_new_sd->width += p_new_sd->objects[key].rect.size.y;
  3148. }
  3149. } else {
  3150. if (gl.font_rid.is_valid()) {
  3151. if (p_new_sd->orientation == ORIENTATION_HORIZONTAL) {
  3152. p_new_sd->ascent = MAX(p_new_sd->ascent, MAX(font_get_ascent(gl.font_rid, gl.font_size), -gl.y_off));
  3153. p_new_sd->descent = MAX(p_new_sd->descent, MAX(font_get_descent(gl.font_rid, gl.font_size), gl.y_off));
  3154. } else {
  3155. p_new_sd->ascent = MAX(p_new_sd->ascent, Math::round(font_get_glyph_advance(gl.font_rid, gl.font_size, gl.index).x * 0.5));
  3156. p_new_sd->descent = MAX(p_new_sd->descent, Math::round(font_get_glyph_advance(gl.font_rid, gl.font_size, gl.index).x * 0.5));
  3157. }
  3158. } else if (p_new_sd->preserve_invalid || (p_new_sd->preserve_control && is_control(gl.index))) {
  3159. // Glyph not found, replace with hex code box.
  3160. if (p_new_sd->orientation == ORIENTATION_HORIZONTAL) {
  3161. p_new_sd->ascent = MAX(p_new_sd->ascent, get_hex_code_box_size(gl.font_size, gl.index).y);
  3162. } else {
  3163. p_new_sd->ascent = MAX(p_new_sd->ascent, Math::round(get_hex_code_box_size(gl.font_size, gl.index).x * 0.5));
  3164. p_new_sd->descent = MAX(p_new_sd->descent, Math::round(get_hex_code_box_size(gl.font_size, gl.index).x * 0.5));
  3165. }
  3166. }
  3167. p_new_sd->width += gl.advance * gl.repeat;
  3168. }
  3169. p_new_sd->glyphs.push_back(gl);
  3170. }
  3171. }
  3172. }
  3173. }
  3174. _realign(p_new_sd);
  3175. }
  3176. p_new_sd->valid = true;
  3177. return true;
  3178. }
  3179. RID TextServerAdvanced::shaped_text_get_parent(const RID &p_shaped) const {
  3180. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3181. ERR_FAIL_COND_V(!sd, RID());
  3182. MutexLock lock(sd->mutex);
  3183. return sd->parent;
  3184. }
  3185. double TextServerAdvanced::shaped_text_fit_to_width(const RID &p_shaped, double p_width, int64_t /*JustificationFlag*/ p_jst_flags) {
  3186. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3187. ERR_FAIL_COND_V(!sd, 0.0);
  3188. MutexLock lock(sd->mutex);
  3189. if (!sd->valid) {
  3190. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  3191. }
  3192. if (!sd->justification_ops_valid) {
  3193. const_cast<TextServerAdvanced *>(this)->shaped_text_update_justification_ops(p_shaped);
  3194. }
  3195. sd->fit_width_minimum_reached = false;
  3196. int start_pos = 0;
  3197. int end_pos = sd->glyphs.size() - 1;
  3198. if ((p_jst_flags & JUSTIFICATION_AFTER_LAST_TAB) == JUSTIFICATION_AFTER_LAST_TAB) {
  3199. int start, end, delta;
  3200. if (sd->para_direction == DIRECTION_LTR) {
  3201. start = sd->glyphs.size() - 1;
  3202. end = -1;
  3203. delta = -1;
  3204. } else {
  3205. start = 0;
  3206. end = sd->glyphs.size();
  3207. delta = +1;
  3208. }
  3209. for (int i = start; i != end; i += delta) {
  3210. if ((sd->glyphs[i].flags & GRAPHEME_IS_TAB) == GRAPHEME_IS_TAB) {
  3211. if (sd->para_direction == DIRECTION_LTR) {
  3212. start_pos = i;
  3213. break;
  3214. } else {
  3215. end_pos = i;
  3216. break;
  3217. }
  3218. }
  3219. }
  3220. }
  3221. double justification_width;
  3222. if ((p_jst_flags & JUSTIFICATION_CONSTRAIN_ELLIPSIS) == JUSTIFICATION_CONSTRAIN_ELLIPSIS) {
  3223. if (sd->overrun_trim_data.trim_pos >= 0) {
  3224. if (sd->para_direction == DIRECTION_RTL) {
  3225. start_pos = sd->overrun_trim_data.trim_pos;
  3226. } else {
  3227. end_pos = sd->overrun_trim_data.trim_pos;
  3228. }
  3229. justification_width = sd->width_trimmed;
  3230. } else {
  3231. return Math::ceil(sd->width);
  3232. }
  3233. } else {
  3234. justification_width = sd->width;
  3235. }
  3236. if ((p_jst_flags & JUSTIFICATION_TRIM_EDGE_SPACES) == JUSTIFICATION_TRIM_EDGE_SPACES) {
  3237. // Trim spaces.
  3238. while ((start_pos < end_pos) && ((sd->glyphs[start_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (sd->glyphs[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (sd->glyphs[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  3239. justification_width -= sd->glyphs[start_pos].advance * sd->glyphs[start_pos].repeat;
  3240. sd->glyphs.write[start_pos].advance = 0;
  3241. start_pos += sd->glyphs[start_pos].count;
  3242. }
  3243. while ((start_pos < end_pos) && ((sd->glyphs[end_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (sd->glyphs[end_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (sd->glyphs[end_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  3244. justification_width -= sd->glyphs[end_pos].advance * sd->glyphs[end_pos].repeat;
  3245. sd->glyphs.write[end_pos].advance = 0;
  3246. end_pos -= sd->glyphs[end_pos].count;
  3247. }
  3248. } else {
  3249. // Skip breaks, but do not reset size.
  3250. while ((start_pos < end_pos) && ((sd->glyphs[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (sd->glyphs[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  3251. start_pos += sd->glyphs[start_pos].count;
  3252. }
  3253. while ((start_pos < end_pos) && ((sd->glyphs[end_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (sd->glyphs[end_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  3254. end_pos -= sd->glyphs[end_pos].count;
  3255. }
  3256. }
  3257. int space_count = 0;
  3258. int elongation_count = 0;
  3259. for (int i = start_pos; i <= end_pos; i++) {
  3260. const Glyph &gl = sd->glyphs[i];
  3261. if (gl.count > 0) {
  3262. if ((gl.flags & GRAPHEME_IS_ELONGATION) == GRAPHEME_IS_ELONGATION) {
  3263. if ((i > 0) && ((sd->glyphs[i - 1].flags & GRAPHEME_IS_ELONGATION) != GRAPHEME_IS_ELONGATION)) {
  3264. // Expand once per elongation sequence.
  3265. elongation_count++;
  3266. }
  3267. }
  3268. if ((gl.flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE) {
  3269. space_count++;
  3270. }
  3271. }
  3272. }
  3273. if ((elongation_count > 0) && ((p_jst_flags & JUSTIFICATION_KASHIDA) == JUSTIFICATION_KASHIDA)) {
  3274. double delta_width_per_kashida = (p_width - justification_width) / elongation_count;
  3275. for (int i = start_pos; i <= end_pos; i++) {
  3276. Glyph &gl = sd->glyphs.write[i];
  3277. if (gl.count > 0) {
  3278. if (((gl.flags & GRAPHEME_IS_ELONGATION) == GRAPHEME_IS_ELONGATION) && (gl.advance > 0)) {
  3279. if ((i > 0) && ((sd->glyphs[i - 1].flags & GRAPHEME_IS_ELONGATION) != GRAPHEME_IS_ELONGATION)) {
  3280. // Expand once per elongation sequence.
  3281. int count = delta_width_per_kashida / gl.advance;
  3282. int prev_count = gl.repeat;
  3283. if ((gl.flags & GRAPHEME_IS_VIRTUAL) == GRAPHEME_IS_VIRTUAL) {
  3284. gl.repeat = MAX(count, 0);
  3285. } else {
  3286. gl.repeat = MAX(count + 1, 1);
  3287. }
  3288. justification_width += (gl.repeat - prev_count) * gl.advance;
  3289. }
  3290. }
  3291. }
  3292. }
  3293. }
  3294. double adv_remain = 0;
  3295. if ((space_count > 0) && ((p_jst_flags & JUSTIFICATION_WORD_BOUND) == JUSTIFICATION_WORD_BOUND)) {
  3296. double delta_width_per_space = (p_width - justification_width) / space_count;
  3297. for (int i = start_pos; i <= end_pos; i++) {
  3298. Glyph &gl = sd->glyphs.write[i];
  3299. if (gl.count > 0) {
  3300. if ((gl.flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE) {
  3301. double old_adv = gl.advance;
  3302. double new_advance;
  3303. if ((gl.flags & GRAPHEME_IS_VIRTUAL) == GRAPHEME_IS_VIRTUAL) {
  3304. new_advance = MAX(gl.advance + delta_width_per_space, 0.0);
  3305. } else {
  3306. new_advance = MAX(gl.advance + delta_width_per_space, 0.1 * gl.font_size);
  3307. }
  3308. gl.advance = new_advance;
  3309. adv_remain += (new_advance - gl.advance);
  3310. if (adv_remain >= 1.0) {
  3311. gl.advance++;
  3312. adv_remain -= 1.0;
  3313. } else if (adv_remain <= -1.0) {
  3314. gl.advance = MAX(gl.advance - 1, 0);
  3315. adv_remain -= 1.0;
  3316. }
  3317. justification_width += (gl.advance - old_adv);
  3318. }
  3319. }
  3320. }
  3321. }
  3322. if (Math::floor(p_width) < Math::floor(justification_width)) {
  3323. sd->fit_width_minimum_reached = true;
  3324. }
  3325. if ((p_jst_flags & JUSTIFICATION_CONSTRAIN_ELLIPSIS) != JUSTIFICATION_CONSTRAIN_ELLIPSIS) {
  3326. sd->width = justification_width;
  3327. }
  3328. return Math::ceil(justification_width);
  3329. }
  3330. double TextServerAdvanced::shaped_text_tab_align(const RID &p_shaped, const PackedFloat32Array &p_tab_stops) {
  3331. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3332. ERR_FAIL_COND_V(!sd, 0.0);
  3333. MutexLock lock(sd->mutex);
  3334. if (!sd->valid) {
  3335. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  3336. }
  3337. if (!sd->line_breaks_valid) {
  3338. const_cast<TextServerAdvanced *>(this)->shaped_text_update_breaks(p_shaped);
  3339. }
  3340. for (int i = 0; i < p_tab_stops.size(); i++) {
  3341. if (p_tab_stops[i] <= 0) {
  3342. return 0.0;
  3343. }
  3344. }
  3345. int tab_index = 0;
  3346. double off = 0.0;
  3347. int start, end, delta;
  3348. if (sd->para_direction == DIRECTION_LTR) {
  3349. start = 0;
  3350. end = sd->glyphs.size();
  3351. delta = +1;
  3352. } else {
  3353. start = sd->glyphs.size() - 1;
  3354. end = -1;
  3355. delta = -1;
  3356. }
  3357. Glyph *gl = sd->glyphs.ptrw();
  3358. for (int i = start; i != end; i += delta) {
  3359. if ((gl[i].flags & GRAPHEME_IS_TAB) == GRAPHEME_IS_TAB) {
  3360. double tab_off = 0.0;
  3361. while (tab_off <= off) {
  3362. tab_off += p_tab_stops[tab_index];
  3363. tab_index++;
  3364. if (tab_index >= p_tab_stops.size()) {
  3365. tab_index = 0;
  3366. }
  3367. }
  3368. double old_adv = gl[i].advance;
  3369. gl[i].advance = tab_off - off;
  3370. sd->width += gl[i].advance - old_adv;
  3371. off = 0;
  3372. continue;
  3373. }
  3374. off += gl[i].advance * gl[i].repeat;
  3375. }
  3376. return 0.0;
  3377. }
  3378. void TextServerAdvanced::shaped_text_overrun_trim_to_width(const RID &p_shaped_line, double p_width, int64_t p_trim_flags) {
  3379. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped_line);
  3380. ERR_FAIL_COND_MSG(!sd, "ShapedTextDataAdvanced invalid.");
  3381. MutexLock lock(sd->mutex);
  3382. if (!sd->valid) {
  3383. shaped_text_shape(p_shaped_line);
  3384. }
  3385. sd->text_trimmed = false;
  3386. sd->overrun_trim_data.ellipsis_glyph_buf.clear();
  3387. bool add_ellipsis = (p_trim_flags & OVERRUN_ADD_ELLIPSIS) == OVERRUN_ADD_ELLIPSIS;
  3388. bool cut_per_word = (p_trim_flags & OVERRUN_TRIM_WORD_ONLY) == OVERRUN_TRIM_WORD_ONLY;
  3389. bool enforce_ellipsis = (p_trim_flags & OVERRUN_ENFORCE_ELLIPSIS) == OVERRUN_ENFORCE_ELLIPSIS;
  3390. bool justification_aware = (p_trim_flags & OVERRUN_JUSTIFICATION_AWARE) == OVERRUN_JUSTIFICATION_AWARE;
  3391. Glyph *sd_glyphs = sd->glyphs.ptrw();
  3392. if ((p_trim_flags & OVERRUN_TRIM) == OVERRUN_NO_TRIMMING || sd_glyphs == nullptr || p_width <= 0 || !(sd->width > p_width || enforce_ellipsis)) {
  3393. sd->overrun_trim_data.trim_pos = -1;
  3394. sd->overrun_trim_data.ellipsis_pos = -1;
  3395. return;
  3396. }
  3397. if (justification_aware && !sd->fit_width_minimum_reached) {
  3398. return;
  3399. }
  3400. Vector<ShapedTextDataAdvanced::Span> &spans = sd->spans;
  3401. if (sd->parent != RID()) {
  3402. ShapedTextDataAdvanced *parent_sd = shaped_owner.get_or_null(sd->parent);
  3403. ERR_FAIL_COND(!parent_sd->valid);
  3404. spans = parent_sd->spans;
  3405. }
  3406. if (spans.size() == 0) {
  3407. return;
  3408. }
  3409. int sd_size = sd->glyphs.size();
  3410. int last_gl_font_size = sd_glyphs[sd_size - 1].font_size;
  3411. // Find usable fonts, if fonts from the last glyph do not have required chars.
  3412. RID dot_gl_font_rid = sd_glyphs[sd_size - 1].font_rid;
  3413. if (!font_has_char(dot_gl_font_rid, '.')) {
  3414. const Array &fonts = spans[spans.size() - 1].fonts;
  3415. for (int i = 0; i < fonts.size(); i++) {
  3416. if (font_has_char(fonts[i], '.')) {
  3417. dot_gl_font_rid = fonts[i];
  3418. break;
  3419. }
  3420. }
  3421. }
  3422. RID whitespace_gl_font_rid = sd_glyphs[sd_size - 1].font_rid;
  3423. if (!font_has_char(whitespace_gl_font_rid, '.')) {
  3424. const Array &fonts = spans[spans.size() - 1].fonts;
  3425. for (int i = 0; i < fonts.size(); i++) {
  3426. if (font_has_char(fonts[i], ' ')) {
  3427. whitespace_gl_font_rid = fonts[i];
  3428. break;
  3429. }
  3430. }
  3431. }
  3432. int32_t dot_gl_idx = dot_gl_font_rid.is_valid() ? font_get_glyph_index(dot_gl_font_rid, last_gl_font_size, '.') : -10;
  3433. Vector2 dot_adv = dot_gl_font_rid.is_valid() ? font_get_glyph_advance(dot_gl_font_rid, last_gl_font_size, dot_gl_idx) : Vector2();
  3434. int32_t whitespace_gl_idx = whitespace_gl_font_rid.is_valid() ? font_get_glyph_index(whitespace_gl_font_rid, last_gl_font_size, ' ') : -10;
  3435. Vector2 whitespace_adv = whitespace_gl_font_rid.is_valid() ? font_get_glyph_advance(whitespace_gl_font_rid, last_gl_font_size, whitespace_gl_idx) : Vector2();
  3436. int ellipsis_width = 0;
  3437. if (add_ellipsis && whitespace_gl_font_rid.is_valid()) {
  3438. ellipsis_width = 3 * dot_adv.x + font_get_spacing(whitespace_gl_font_rid, last_gl_font_size, SPACING_GLYPH) + (cut_per_word ? whitespace_adv.x : 0);
  3439. }
  3440. int ell_min_characters = 6;
  3441. double width = sd->width;
  3442. bool is_rtl = sd->para_direction == DIRECTION_RTL;
  3443. int trim_pos = (is_rtl) ? sd_size : 0;
  3444. int ellipsis_pos = (enforce_ellipsis) ? 0 : -1;
  3445. int last_valid_cut = 0;
  3446. bool found = false;
  3447. int glyphs_from = (is_rtl) ? 0 : sd_size - 1;
  3448. int glyphs_to = (is_rtl) ? sd_size - 1 : -1;
  3449. int glyphs_delta = (is_rtl) ? +1 : -1;
  3450. for (int i = glyphs_from; i != glyphs_to; i += glyphs_delta) {
  3451. if (!is_rtl) {
  3452. width -= sd_glyphs[i].advance * sd_glyphs[i].repeat;
  3453. }
  3454. if (sd_glyphs[i].count > 0) {
  3455. bool above_min_char_threshold = ((is_rtl) ? sd_size - 1 - i : i) >= ell_min_characters;
  3456. if (width + (((above_min_char_threshold && add_ellipsis) || enforce_ellipsis) ? ellipsis_width : 0) <= p_width) {
  3457. if (cut_per_word && above_min_char_threshold) {
  3458. if ((sd_glyphs[i].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT) {
  3459. last_valid_cut = i;
  3460. found = true;
  3461. }
  3462. } else {
  3463. last_valid_cut = i;
  3464. found = true;
  3465. }
  3466. if (found) {
  3467. trim_pos = last_valid_cut;
  3468. if (add_ellipsis && (above_min_char_threshold || enforce_ellipsis) && width - ellipsis_width <= p_width) {
  3469. ellipsis_pos = trim_pos;
  3470. }
  3471. break;
  3472. }
  3473. }
  3474. }
  3475. if (is_rtl) {
  3476. width -= sd_glyphs[i].advance * sd_glyphs[i].repeat;
  3477. }
  3478. }
  3479. sd->overrun_trim_data.trim_pos = trim_pos;
  3480. sd->overrun_trim_data.ellipsis_pos = ellipsis_pos;
  3481. if (trim_pos == 0 && enforce_ellipsis && add_ellipsis) {
  3482. sd->overrun_trim_data.ellipsis_pos = 0;
  3483. }
  3484. if ((trim_pos >= 0 && sd->width > p_width) || enforce_ellipsis) {
  3485. if (add_ellipsis && (ellipsis_pos > 0 || enforce_ellipsis)) {
  3486. // Insert an additional space when cutting word bound for aesthetics.
  3487. if (cut_per_word && (ellipsis_pos > 0)) {
  3488. Glyph gl;
  3489. gl.count = 1;
  3490. gl.advance = whitespace_adv.x;
  3491. gl.index = whitespace_gl_idx;
  3492. gl.font_rid = whitespace_gl_font_rid;
  3493. gl.font_size = last_gl_font_size;
  3494. gl.flags = GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT | GRAPHEME_IS_VIRTUAL | (is_rtl ? GRAPHEME_IS_RTL : 0);
  3495. sd->overrun_trim_data.ellipsis_glyph_buf.append(gl);
  3496. }
  3497. // Add ellipsis dots.
  3498. if (dot_gl_idx != 0) {
  3499. Glyph gl;
  3500. gl.count = 1;
  3501. gl.repeat = 3;
  3502. gl.advance = dot_adv.x;
  3503. gl.index = dot_gl_idx;
  3504. gl.font_rid = dot_gl_font_rid;
  3505. gl.font_size = last_gl_font_size;
  3506. gl.flags = GRAPHEME_IS_PUNCTUATION | GRAPHEME_IS_VIRTUAL | (is_rtl ? GRAPHEME_IS_RTL : 0);
  3507. sd->overrun_trim_data.ellipsis_glyph_buf.append(gl);
  3508. }
  3509. }
  3510. sd->text_trimmed = true;
  3511. sd->width_trimmed = width + ((ellipsis_pos != -1) ? ellipsis_width : 0);
  3512. }
  3513. }
  3514. int64_t TextServerAdvanced::shaped_text_get_trim_pos(const RID &p_shaped) const {
  3515. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3516. ERR_FAIL_COND_V_MSG(!sd, -1, "ShapedTextDataAdvanced invalid.");
  3517. MutexLock lock(sd->mutex);
  3518. return sd->overrun_trim_data.trim_pos;
  3519. }
  3520. int64_t TextServerAdvanced::shaped_text_get_ellipsis_pos(const RID &p_shaped) const {
  3521. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3522. ERR_FAIL_COND_V_MSG(!sd, -1, "ShapedTextDataAdvanced invalid.");
  3523. MutexLock lock(sd->mutex);
  3524. return sd->overrun_trim_data.ellipsis_pos;
  3525. }
  3526. const Glyph *TextServerAdvanced::shaped_text_get_ellipsis_glyphs(const RID &p_shaped) const {
  3527. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3528. ERR_FAIL_COND_V_MSG(!sd, nullptr, "ShapedTextDataAdvanced invalid.");
  3529. MutexLock lock(sd->mutex);
  3530. return sd->overrun_trim_data.ellipsis_glyph_buf.ptr();
  3531. }
  3532. int64_t TextServerAdvanced::shaped_text_get_ellipsis_glyph_count(const RID &p_shaped) const {
  3533. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3534. ERR_FAIL_COND_V_MSG(!sd, 0, "ShapedTextDataAdvanced invalid.");
  3535. MutexLock lock(sd->mutex);
  3536. return sd->overrun_trim_data.ellipsis_glyph_buf.size();
  3537. }
  3538. bool TextServerAdvanced::shaped_text_update_breaks(const RID &p_shaped) {
  3539. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3540. ERR_FAIL_COND_V(!sd, false);
  3541. MutexLock lock(sd->mutex);
  3542. if (!sd->valid) {
  3543. shaped_text_shape(p_shaped);
  3544. }
  3545. if (sd->line_breaks_valid) {
  3546. return true; // Nothing to do.
  3547. }
  3548. const UChar *data = sd->utf16.get_data();
  3549. if (!sd->break_ops_valid) {
  3550. sd->breaks.clear();
  3551. UErrorCode err = U_ZERO_ERROR;
  3552. int i = 0;
  3553. while (i < sd->spans.size()) {
  3554. String language = sd->spans[i].language;
  3555. int r_start = sd->spans[i].start;
  3556. while (i + 1 < sd->spans.size() && language == sd->spans[i + 1].language) {
  3557. i++;
  3558. }
  3559. int r_end = sd->spans[i].end;
  3560. UBreakIterator *bi = ubrk_open(UBRK_LINE, language.ascii().get_data(), data + _convert_pos_inv(sd, r_start), _convert_pos_inv(sd, r_end - r_start), &err);
  3561. if (U_FAILURE(err)) {
  3562. // No data loaded - use fallback.
  3563. for (int j = r_start; j < r_end; j++) {
  3564. char32_t c = sd->text[j - sd->start];
  3565. if (is_whitespace(c)) {
  3566. sd->breaks[j + 1] = false;
  3567. }
  3568. if (is_linebreak(c)) {
  3569. sd->breaks[j + 1] = true;
  3570. }
  3571. }
  3572. } else {
  3573. while (ubrk_next(bi) != UBRK_DONE) {
  3574. int pos = _convert_pos(sd, ubrk_current(bi)) + r_start;
  3575. if ((ubrk_getRuleStatus(bi) >= UBRK_LINE_HARD) && (ubrk_getRuleStatus(bi) < UBRK_LINE_HARD_LIMIT)) {
  3576. sd->breaks[pos] = true;
  3577. } else if ((ubrk_getRuleStatus(bi) >= UBRK_LINE_SOFT) && (ubrk_getRuleStatus(bi) < UBRK_LINE_SOFT_LIMIT)) {
  3578. sd->breaks[pos] = false;
  3579. }
  3580. }
  3581. }
  3582. ubrk_close(bi);
  3583. i++;
  3584. }
  3585. sd->break_ops_valid = true;
  3586. }
  3587. sd->sort_valid = false;
  3588. sd->glyphs_logical.clear();
  3589. int sd_size = sd->glyphs.size();
  3590. const char32_t *ch = sd->text.ptr();
  3591. Glyph *sd_glyphs = sd->glyphs.ptrw();
  3592. int c_punct_size = sd->custom_punct.length();
  3593. const char32_t *c_punct = sd->custom_punct.ptr();
  3594. for (int i = 0; i < sd_size; i++) {
  3595. if (sd_glyphs[i].count > 0) {
  3596. char32_t c = ch[sd_glyphs[i].start - sd->start];
  3597. if (c == 0xfffc) {
  3598. continue;
  3599. }
  3600. if (c == 0x0009 || c == 0x000b) {
  3601. sd_glyphs[i].flags |= GRAPHEME_IS_TAB;
  3602. }
  3603. if (is_whitespace(c)) {
  3604. sd_glyphs[i].flags |= GRAPHEME_IS_SPACE;
  3605. }
  3606. if (c_punct_size == 0) {
  3607. if (u_ispunct(c) && c != 0x005f) {
  3608. sd_glyphs[i].flags |= GRAPHEME_IS_PUNCTUATION;
  3609. }
  3610. } else {
  3611. for (int j = 0; j < c_punct_size; j++) {
  3612. if (c_punct[j] == c) {
  3613. sd_glyphs[i].flags |= GRAPHEME_IS_PUNCTUATION;
  3614. break;
  3615. }
  3616. }
  3617. }
  3618. if (is_underscore(c)) {
  3619. sd_glyphs[i].flags |= GRAPHEME_IS_UNDERSCORE;
  3620. }
  3621. if (sd->breaks.has(sd_glyphs[i].end)) {
  3622. if (sd->breaks[sd_glyphs[i].end] && (is_linebreak(c))) {
  3623. sd_glyphs[i].flags |= GRAPHEME_IS_BREAK_HARD;
  3624. } else if (is_whitespace(c)) {
  3625. sd_glyphs[i].flags |= GRAPHEME_IS_BREAK_SOFT;
  3626. } else {
  3627. int count = sd_glyphs[i].count;
  3628. // Do not add extra space at the end of the line.
  3629. if (sd_glyphs[i].end == sd->end) {
  3630. continue;
  3631. }
  3632. // Do not add extra space after existing space.
  3633. if (sd_glyphs[i].flags & GRAPHEME_IS_RTL) {
  3634. if ((i + count < sd_size - 1) && ((sd_glyphs[i + count].flags & (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT)) == (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT))) {
  3635. continue;
  3636. }
  3637. } else {
  3638. if ((i > 0) && ((sd_glyphs[i - 1].flags & (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT)) == (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT))) {
  3639. continue;
  3640. }
  3641. }
  3642. Glyph gl;
  3643. gl.start = sd_glyphs[i].start;
  3644. gl.end = sd_glyphs[i].end;
  3645. gl.count = 1;
  3646. gl.font_rid = sd_glyphs[i].font_rid;
  3647. gl.font_size = sd_glyphs[i].font_size;
  3648. gl.flags = GRAPHEME_IS_BREAK_SOFT | GRAPHEME_IS_VIRTUAL | GRAPHEME_IS_SPACE;
  3649. if (sd_glyphs[i].flags & GRAPHEME_IS_RTL) {
  3650. gl.flags |= GRAPHEME_IS_RTL;
  3651. sd->glyphs.insert(i, gl); // Insert before.
  3652. } else {
  3653. sd->glyphs.insert(i + count, gl); // Insert after.
  3654. }
  3655. i += count;
  3656. // Update write pointer and size.
  3657. sd_size = sd->glyphs.size();
  3658. sd_glyphs = sd->glyphs.ptrw();
  3659. continue;
  3660. }
  3661. }
  3662. i += (sd_glyphs[i].count - 1);
  3663. }
  3664. }
  3665. sd->line_breaks_valid = true;
  3666. return sd->line_breaks_valid;
  3667. }
  3668. _FORCE_INLINE_ int64_t _generate_kashida_justification_opportunies(const String &p_data, int64_t p_start, int64_t p_end) {
  3669. int64_t kashida_pos = -1;
  3670. int8_t priority = 100;
  3671. int64_t i = p_start;
  3672. char32_t pc = 0;
  3673. while ((p_end > p_start) && is_transparent(p_data[p_end - 1])) {
  3674. p_end--;
  3675. }
  3676. while (i < p_end) {
  3677. uint32_t c = p_data[i];
  3678. if (c == 0x0640) {
  3679. kashida_pos = i;
  3680. priority = 0;
  3681. }
  3682. if (priority >= 1 && i < p_end - 1) {
  3683. if (is_seen_sad(c) && (p_data[i + 1] != 0x200c)) {
  3684. kashida_pos = i;
  3685. priority = 1;
  3686. }
  3687. }
  3688. if (priority >= 2 && i > p_start) {
  3689. if (is_teh_marbuta(c) || is_dal(c) || (is_heh(c) && i == p_end - 1)) {
  3690. if (is_connected_to_prev(c, pc)) {
  3691. kashida_pos = i - 1;
  3692. priority = 2;
  3693. }
  3694. }
  3695. }
  3696. if (priority >= 3 && i > p_start) {
  3697. if (is_alef(c) || ((is_lam(c) || is_tah(c) || is_kaf(c) || is_gaf(c)) && i == p_end - 1)) {
  3698. if (is_connected_to_prev(c, pc)) {
  3699. kashida_pos = i - 1;
  3700. priority = 3;
  3701. }
  3702. }
  3703. }
  3704. if (priority >= 4 && i > p_start && i < p_end - 1) {
  3705. if (is_beh(c)) {
  3706. if (is_reh(p_data[i + 1]) || is_yeh(p_data[i + 1])) {
  3707. if (is_connected_to_prev(c, pc)) {
  3708. kashida_pos = i - 1;
  3709. priority = 4;
  3710. }
  3711. }
  3712. }
  3713. }
  3714. if (priority >= 5 && i > p_start) {
  3715. if (is_waw(c) || ((is_ain(c) || is_qaf(c) || is_feh(c)) && i == p_end - 1)) {
  3716. if (is_connected_to_prev(c, pc)) {
  3717. kashida_pos = i - 1;
  3718. priority = 5;
  3719. }
  3720. }
  3721. }
  3722. if (priority >= 6 && i > p_start) {
  3723. if (is_reh(c)) {
  3724. if (is_connected_to_prev(c, pc)) {
  3725. kashida_pos = i - 1;
  3726. priority = 6;
  3727. }
  3728. }
  3729. }
  3730. if (!is_transparent(c)) {
  3731. pc = c;
  3732. }
  3733. i++;
  3734. }
  3735. return kashida_pos;
  3736. }
  3737. bool TextServerAdvanced::shaped_text_update_justification_ops(const RID &p_shaped) {
  3738. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  3739. ERR_FAIL_COND_V(!sd, false);
  3740. MutexLock lock(sd->mutex);
  3741. if (!sd->valid) {
  3742. shaped_text_shape(p_shaped);
  3743. }
  3744. if (!sd->line_breaks_valid) {
  3745. shaped_text_update_breaks(p_shaped);
  3746. }
  3747. if (sd->justification_ops_valid) {
  3748. return true; // Nothing to do.
  3749. }
  3750. const UChar *data = sd->utf16.get_data();
  3751. int data_size = sd->utf16.length();
  3752. if (!sd->js_ops_valid) {
  3753. sd->jstops.clear();
  3754. // Use ICU word iterator and custom kashida detection.
  3755. UErrorCode err = U_ZERO_ERROR;
  3756. UBreakIterator *bi = ubrk_open(UBRK_WORD, "", data, data_size, &err);
  3757. if (U_FAILURE(err)) {
  3758. // No data - use fallback.
  3759. int limit = 0;
  3760. for (int i = 0; i < sd->text.length(); i++) {
  3761. if (is_whitespace(data[i])) {
  3762. int ks = _generate_kashida_justification_opportunies(sd->text, limit, i) + sd->start;
  3763. if (ks != -1) {
  3764. sd->jstops[ks] = true;
  3765. }
  3766. limit = i + 1;
  3767. }
  3768. }
  3769. int ks = _generate_kashida_justification_opportunies(sd->text, limit, sd->text.length()) + sd->start;
  3770. if (ks != -1) {
  3771. sd->jstops[ks] = true;
  3772. }
  3773. } else {
  3774. int limit = 0;
  3775. while (ubrk_next(bi) != UBRK_DONE) {
  3776. if (ubrk_getRuleStatus(bi) != UBRK_WORD_NONE) {
  3777. int i = _convert_pos(sd, ubrk_current(bi));
  3778. sd->jstops[i + sd->start] = false;
  3779. int ks = _generate_kashida_justification_opportunies(sd->text, limit, i);
  3780. if (ks != -1) {
  3781. sd->jstops[ks + sd->start] = true;
  3782. }
  3783. limit = i;
  3784. }
  3785. }
  3786. ubrk_close(bi);
  3787. }
  3788. sd->js_ops_valid = true;
  3789. }
  3790. sd->sort_valid = false;
  3791. sd->glyphs_logical.clear();
  3792. Glyph *sd_glyphs = sd->glyphs.ptrw();
  3793. int sd_size = sd->glyphs.size();
  3794. if (sd->jstops.size() > 0) {
  3795. for (int i = 0; i < sd_size; i++) {
  3796. if (sd_glyphs[i].count > 0) {
  3797. char32_t c = sd->text[sd_glyphs[i].start - sd->start];
  3798. if (c == 0x0640) {
  3799. sd_glyphs[i].flags |= GRAPHEME_IS_ELONGATION;
  3800. }
  3801. if (sd->jstops.has(sd_glyphs[i].start)) {
  3802. if (c == 0xfffc) {
  3803. continue;
  3804. }
  3805. if (sd->jstops[sd_glyphs[i].start]) {
  3806. if (c != 0x0640) {
  3807. if (sd_glyphs[i].font_rid != RID()) {
  3808. Glyph gl = _shape_single_glyph(sd, 0x0640, HB_SCRIPT_ARABIC, HB_DIRECTION_RTL, sd->glyphs[i].font_rid, sd->glyphs[i].font_size);
  3809. if ((sd_glyphs[i].flags & GRAPHEME_IS_VALID) == GRAPHEME_IS_VALID) {
  3810. gl.start = sd_glyphs[i].start;
  3811. gl.end = sd_glyphs[i].end;
  3812. gl.repeat = 0;
  3813. gl.count = 1;
  3814. if (sd->orientation == ORIENTATION_HORIZONTAL) {
  3815. gl.y_off = sd_glyphs[i].y_off;
  3816. } else {
  3817. gl.x_off = sd_glyphs[i].x_off;
  3818. }
  3819. gl.flags |= GRAPHEME_IS_ELONGATION | GRAPHEME_IS_VIRTUAL;
  3820. sd->glyphs.insert(i, gl);
  3821. i++;
  3822. // Update write pointer and size.
  3823. sd_size = sd->glyphs.size();
  3824. sd_glyphs = sd->glyphs.ptrw();
  3825. continue;
  3826. }
  3827. }
  3828. }
  3829. } else if ((sd_glyphs[i].flags & GRAPHEME_IS_SPACE) != GRAPHEME_IS_SPACE) {
  3830. int count = sd_glyphs[i].count;
  3831. // Do not add extra spaces at the end of the line.
  3832. if (sd_glyphs[i].end == sd->end) {
  3833. continue;
  3834. }
  3835. // Do not add extra space after existing space.
  3836. if (sd_glyphs[i].flags & GRAPHEME_IS_RTL) {
  3837. if ((i + count < sd_size - 1) && ((sd_glyphs[i + count].flags & (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT)) == (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT))) {
  3838. continue;
  3839. }
  3840. } else {
  3841. if ((i > 0) && ((sd_glyphs[i - 1].flags & (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT)) == (GRAPHEME_IS_SPACE | GRAPHEME_IS_BREAK_SOFT))) {
  3842. continue;
  3843. }
  3844. }
  3845. // Inject virtual space for alignment.
  3846. Glyph gl;
  3847. gl.start = sd_glyphs[i].start;
  3848. gl.end = sd_glyphs[i].end;
  3849. gl.count = 1;
  3850. gl.font_rid = sd_glyphs[i].font_rid;
  3851. gl.font_size = sd_glyphs[i].font_size;
  3852. gl.flags = GRAPHEME_IS_SPACE | GRAPHEME_IS_VIRTUAL;
  3853. if (sd_glyphs[i].flags & GRAPHEME_IS_RTL) {
  3854. gl.flags |= GRAPHEME_IS_RTL;
  3855. sd->glyphs.insert(i, gl); // Insert before.
  3856. } else {
  3857. sd->glyphs.insert(i + count, gl); // Insert after.
  3858. }
  3859. i += count;
  3860. // Update write pointer and size.
  3861. sd_size = sd->glyphs.size();
  3862. sd_glyphs = sd->glyphs.ptrw();
  3863. continue;
  3864. }
  3865. }
  3866. }
  3867. }
  3868. }
  3869. sd->justification_ops_valid = true;
  3870. return sd->justification_ops_valid;
  3871. }
  3872. Glyph TextServerAdvanced::_shape_single_glyph(ShapedTextDataAdvanced *p_sd, char32_t p_char, hb_script_t p_script, hb_direction_t p_direction, const RID &p_font, int64_t p_font_size) {
  3873. hb_font_t *hb_font = _font_get_hb_handle(p_font, p_font_size);
  3874. bool subpos = (font_get_subpixel_positioning(p_font) == SUBPIXEL_POSITIONING_ONE_HALF) || (font_get_subpixel_positioning(p_font) == SUBPIXEL_POSITIONING_ONE_QUARTER) || (font_get_subpixel_positioning(p_font) == SUBPIXEL_POSITIONING_AUTO && p_font_size <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE);
  3875. ERR_FAIL_COND_V(hb_font == nullptr, Glyph());
  3876. hb_buffer_clear_contents(p_sd->hb_buffer);
  3877. hb_buffer_set_direction(p_sd->hb_buffer, p_direction);
  3878. hb_buffer_set_flags(p_sd->hb_buffer, (hb_buffer_flags_t)(HB_BUFFER_FLAG_DEFAULT));
  3879. hb_buffer_set_script(p_sd->hb_buffer, p_script);
  3880. hb_buffer_add_utf32(p_sd->hb_buffer, (const uint32_t *)&p_char, 1, 0, 1);
  3881. hb_shape(hb_font, p_sd->hb_buffer, nullptr, 0);
  3882. unsigned int glyph_count = 0;
  3883. hb_glyph_info_t *glyph_info = hb_buffer_get_glyph_infos(p_sd->hb_buffer, &glyph_count);
  3884. hb_glyph_position_t *glyph_pos = hb_buffer_get_glyph_positions(p_sd->hb_buffer, &glyph_count);
  3885. // Process glyphs.
  3886. Glyph gl;
  3887. if (p_direction == HB_DIRECTION_RTL || p_direction == HB_DIRECTION_BTT) {
  3888. gl.flags |= TextServer::GRAPHEME_IS_RTL;
  3889. }
  3890. gl.font_rid = p_font;
  3891. gl.font_size = p_font_size;
  3892. if (glyph_count > 0) {
  3893. double scale = font_get_scale(p_font, p_font_size);
  3894. if (p_sd->orientation == ORIENTATION_HORIZONTAL) {
  3895. if (subpos) {
  3896. gl.advance = glyph_pos[0].x_advance / (64.0 / scale) + _get_extra_advance(p_font, p_font_size);
  3897. } else {
  3898. gl.advance = Math::round(glyph_pos[0].x_advance / (64.0 / scale) + _get_extra_advance(p_font, p_font_size));
  3899. }
  3900. } else {
  3901. gl.advance = -Math::round(glyph_pos[0].y_advance / (64.0 / scale));
  3902. }
  3903. gl.count = 1;
  3904. gl.index = glyph_info[0].codepoint;
  3905. if (subpos) {
  3906. gl.x_off = glyph_pos[0].x_offset / (64.0 / scale);
  3907. } else {
  3908. gl.x_off = Math::round(glyph_pos[0].x_offset / (64.0 / scale));
  3909. }
  3910. gl.y_off = -Math::round(glyph_pos[0].y_offset / (64.0 / scale));
  3911. if ((glyph_info[0].codepoint != 0) || !u_isgraph(p_char)) {
  3912. gl.flags |= GRAPHEME_IS_VALID;
  3913. }
  3914. }
  3915. return gl;
  3916. }
  3917. _FORCE_INLINE_ void TextServerAdvanced::_add_featuers(const Dictionary &p_source, Vector<hb_feature_t> &r_ftrs) {
  3918. Array keys = p_source.keys();
  3919. Array values = p_source.values();
  3920. for (int i = 0; i < keys.size(); i++) {
  3921. int32_t value = values[i];
  3922. if (value >= 0) {
  3923. hb_feature_t feature;
  3924. if (keys[i].get_type() == Variant::STRING) {
  3925. feature.tag = name_to_tag(keys[i]);
  3926. } else {
  3927. feature.tag = keys[i];
  3928. }
  3929. feature.value = value;
  3930. feature.start = 0;
  3931. feature.end = -1;
  3932. r_ftrs.push_back(feature);
  3933. }
  3934. }
  3935. }
  3936. void TextServerAdvanced::_shape_run(ShapedTextDataAdvanced *p_sd, int64_t p_start, int64_t p_end, hb_script_t p_script, hb_direction_t p_direction, Array p_fonts, int64_t p_span, int64_t p_fb_index) {
  3937. int fs = p_sd->spans[p_span].font_size;
  3938. if (p_fb_index >= p_fonts.size()) {
  3939. // Add fallback glyphs.
  3940. for (int i = p_start; i < p_end; i++) {
  3941. if (p_sd->preserve_invalid || (p_sd->preserve_control && is_control(p_sd->text[i]))) {
  3942. Glyph gl;
  3943. gl.start = i + p_sd->start;
  3944. gl.end = i + 1 + p_sd->start;
  3945. gl.count = 1;
  3946. gl.index = p_sd->text[i];
  3947. gl.font_size = fs;
  3948. gl.font_rid = RID();
  3949. if (p_direction == HB_DIRECTION_RTL || p_direction == HB_DIRECTION_BTT) {
  3950. gl.flags |= TextServer::GRAPHEME_IS_RTL;
  3951. }
  3952. if (p_sd->orientation == ORIENTATION_HORIZONTAL) {
  3953. gl.advance = get_hex_code_box_size(fs, gl.index).x;
  3954. p_sd->ascent = MAX(p_sd->ascent, get_hex_code_box_size(fs, gl.index).y);
  3955. } else {
  3956. gl.advance = get_hex_code_box_size(fs, gl.index).y;
  3957. p_sd->ascent = MAX(p_sd->ascent, Math::round(get_hex_code_box_size(fs, gl.index).x * 0.5));
  3958. p_sd->descent = MAX(p_sd->descent, Math::round(get_hex_code_box_size(fs, gl.index).x * 0.5));
  3959. }
  3960. p_sd->width += gl.advance;
  3961. p_sd->glyphs.push_back(gl);
  3962. }
  3963. }
  3964. return;
  3965. }
  3966. RID f = p_fonts[p_fb_index];
  3967. hb_font_t *hb_font = _font_get_hb_handle(f, fs);
  3968. double scale = font_get_scale(f, fs);
  3969. double sp_sp = font_get_spacing(f, fs, SPACING_SPACE);
  3970. double sp_gl = font_get_spacing(f, fs, SPACING_GLYPH);
  3971. double ea = _get_extra_advance(f, fs);
  3972. bool subpos = (font_get_subpixel_positioning(f) == SUBPIXEL_POSITIONING_ONE_HALF) || (font_get_subpixel_positioning(f) == SUBPIXEL_POSITIONING_ONE_QUARTER) || (font_get_subpixel_positioning(f) == SUBPIXEL_POSITIONING_AUTO && fs <= SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE);
  3973. ERR_FAIL_COND(hb_font == nullptr);
  3974. hb_buffer_clear_contents(p_sd->hb_buffer);
  3975. hb_buffer_set_direction(p_sd->hb_buffer, p_direction);
  3976. if (p_sd->preserve_control) {
  3977. hb_buffer_set_flags(p_sd->hb_buffer, (hb_buffer_flags_t)(HB_BUFFER_FLAG_PRESERVE_DEFAULT_IGNORABLES | (p_start == 0 ? HB_BUFFER_FLAG_BOT : 0) | (p_end == p_sd->text.length() ? HB_BUFFER_FLAG_EOT : 0)));
  3978. } else {
  3979. hb_buffer_set_flags(p_sd->hb_buffer, (hb_buffer_flags_t)(HB_BUFFER_FLAG_DEFAULT | (p_start == 0 ? HB_BUFFER_FLAG_BOT : 0) | (p_end == p_sd->text.length() ? HB_BUFFER_FLAG_EOT : 0)));
  3980. }
  3981. hb_buffer_set_script(p_sd->hb_buffer, p_script);
  3982. if (!p_sd->spans[p_span].language.is_empty()) {
  3983. hb_language_t lang = hb_language_from_string(p_sd->spans[p_span].language.ascii().get_data(), -1);
  3984. hb_buffer_set_language(p_sd->hb_buffer, lang);
  3985. }
  3986. hb_buffer_add_utf32(p_sd->hb_buffer, (const uint32_t *)p_sd->text.ptr(), p_sd->text.length(), p_start, p_end - p_start);
  3987. Vector<hb_feature_t> ftrs;
  3988. _add_featuers(font_get_opentype_feature_overrides(f), ftrs);
  3989. _add_featuers(p_sd->spans[p_span].features, ftrs);
  3990. hb_shape(hb_font, p_sd->hb_buffer, ftrs.is_empty() ? nullptr : &ftrs[0], ftrs.size());
  3991. unsigned int glyph_count = 0;
  3992. hb_glyph_info_t *glyph_info = hb_buffer_get_glyph_infos(p_sd->hb_buffer, &glyph_count);
  3993. hb_glyph_position_t *glyph_pos = hb_buffer_get_glyph_positions(p_sd->hb_buffer, &glyph_count);
  3994. // Process glyphs.
  3995. if (glyph_count > 0) {
  3996. Glyph *w = (Glyph *)memalloc(glyph_count * sizeof(Glyph));
  3997. int end = (p_direction == HB_DIRECTION_RTL || p_direction == HB_DIRECTION_BTT) ? p_end : 0;
  3998. uint32_t last_cluster_id = UINT32_MAX;
  3999. unsigned int last_cluster_index = 0;
  4000. bool last_cluster_valid = true;
  4001. for (unsigned int i = 0; i < glyph_count; i++) {
  4002. if ((i > 0) && (last_cluster_id != glyph_info[i].cluster)) {
  4003. if (p_direction == HB_DIRECTION_RTL || p_direction == HB_DIRECTION_BTT) {
  4004. end = w[last_cluster_index].start;
  4005. } else {
  4006. for (unsigned int j = last_cluster_index; j < i; j++) {
  4007. w[j].end = glyph_info[i].cluster;
  4008. }
  4009. }
  4010. if (p_direction == HB_DIRECTION_RTL || p_direction == HB_DIRECTION_BTT) {
  4011. w[last_cluster_index].flags |= GRAPHEME_IS_RTL;
  4012. }
  4013. if (last_cluster_valid) {
  4014. w[last_cluster_index].flags |= GRAPHEME_IS_VALID;
  4015. }
  4016. w[last_cluster_index].count = i - last_cluster_index;
  4017. last_cluster_index = i;
  4018. last_cluster_valid = true;
  4019. }
  4020. last_cluster_id = glyph_info[i].cluster;
  4021. Glyph &gl = w[i];
  4022. gl = Glyph();
  4023. gl.start = glyph_info[i].cluster;
  4024. gl.end = end;
  4025. gl.count = 0;
  4026. gl.font_rid = p_fonts[p_fb_index];
  4027. gl.font_size = fs;
  4028. if (glyph_info[i].mask & HB_GLYPH_FLAG_DEFINED) {
  4029. gl.flags |= GRAPHEME_IS_CONNECTED;
  4030. }
  4031. gl.index = glyph_info[i].codepoint;
  4032. if (gl.index != 0) {
  4033. if (p_sd->orientation == ORIENTATION_HORIZONTAL) {
  4034. if (subpos) {
  4035. gl.advance = glyph_pos[i].x_advance / (64.0 / scale) + ea;
  4036. } else {
  4037. gl.advance = Math::round(glyph_pos[i].x_advance / (64.0 / scale) + ea);
  4038. }
  4039. } else {
  4040. gl.advance = -Math::round(glyph_pos[i].y_advance / (64.0 / scale));
  4041. }
  4042. if (subpos) {
  4043. gl.x_off = glyph_pos[i].x_offset / (64.0 / scale);
  4044. } else {
  4045. gl.x_off = Math::round(glyph_pos[i].x_offset / (64.0 / scale));
  4046. }
  4047. gl.y_off = -Math::round(glyph_pos[i].y_offset / (64.0 / scale));
  4048. }
  4049. if (sp_sp && is_whitespace(p_sd->text[glyph_info[i].cluster])) {
  4050. gl.advance += sp_sp;
  4051. } else {
  4052. gl.advance += sp_gl;
  4053. }
  4054. if (p_sd->preserve_control) {
  4055. last_cluster_valid = last_cluster_valid && ((glyph_info[i].codepoint != 0) || (p_sd->text[glyph_info[i].cluster] == 0x0009) || (u_isblank(p_sd->text[glyph_info[i].cluster]) && (gl.advance != 0)) || (!u_isblank(p_sd->text[glyph_info[i].cluster]) && is_linebreak(p_sd->text[glyph_info[i].cluster])));
  4056. } else {
  4057. last_cluster_valid = last_cluster_valid && ((glyph_info[i].codepoint != 0) || (p_sd->text[glyph_info[i].cluster] == 0x0009) || (u_isblank(p_sd->text[glyph_info[i].cluster]) && (gl.advance != 0)) || (!u_isblank(p_sd->text[glyph_info[i].cluster]) && !u_isgraph(p_sd->text[glyph_info[i].cluster])));
  4058. }
  4059. }
  4060. if (p_direction == HB_DIRECTION_LTR || p_direction == HB_DIRECTION_TTB) {
  4061. for (unsigned int j = last_cluster_index; j < glyph_count; j++) {
  4062. w[j].end = p_end;
  4063. }
  4064. }
  4065. w[last_cluster_index].count = glyph_count - last_cluster_index;
  4066. if (p_direction == HB_DIRECTION_RTL || p_direction == HB_DIRECTION_BTT) {
  4067. w[last_cluster_index].flags |= GRAPHEME_IS_RTL;
  4068. }
  4069. if (last_cluster_valid) {
  4070. w[last_cluster_index].flags |= GRAPHEME_IS_VALID;
  4071. }
  4072. // Fallback.
  4073. int failed_subrun_start = p_end + 1;
  4074. int failed_subrun_end = p_start;
  4075. for (unsigned int i = 0; i < glyph_count; i++) {
  4076. if ((w[i].flags & GRAPHEME_IS_VALID) == GRAPHEME_IS_VALID) {
  4077. if (failed_subrun_start != p_end + 1) {
  4078. _shape_run(p_sd, failed_subrun_start, failed_subrun_end, p_script, p_direction, p_fonts, p_span, p_fb_index + 1);
  4079. failed_subrun_start = p_end + 1;
  4080. failed_subrun_end = p_start;
  4081. }
  4082. for (int j = 0; j < w[i].count; j++) {
  4083. if (p_sd->orientation == ORIENTATION_HORIZONTAL) {
  4084. p_sd->ascent = MAX(p_sd->ascent, -w[i + j].y_off);
  4085. p_sd->descent = MAX(p_sd->descent, w[i + j].y_off);
  4086. } else {
  4087. double gla = Math::round(font_get_glyph_advance(f, fs, w[i + j].index).x * 0.5);
  4088. p_sd->ascent = MAX(p_sd->ascent, gla);
  4089. p_sd->descent = MAX(p_sd->descent, gla);
  4090. }
  4091. p_sd->width += w[i + j].advance;
  4092. w[i + j].start += p_sd->start;
  4093. w[i + j].end += p_sd->start;
  4094. p_sd->glyphs.push_back(w[i + j]);
  4095. }
  4096. } else {
  4097. if (failed_subrun_start >= w[i].start) {
  4098. failed_subrun_start = w[i].start;
  4099. }
  4100. if (failed_subrun_end <= w[i].end) {
  4101. failed_subrun_end = w[i].end;
  4102. }
  4103. }
  4104. i += w[i].count - 1;
  4105. }
  4106. memfree(w);
  4107. if (failed_subrun_start != p_end + 1) {
  4108. _shape_run(p_sd, failed_subrun_start, failed_subrun_end, p_script, p_direction, p_fonts, p_span, p_fb_index + 1);
  4109. }
  4110. p_sd->ascent = MAX(p_sd->ascent, font_get_ascent(f, fs));
  4111. p_sd->descent = MAX(p_sd->descent, font_get_descent(f, fs));
  4112. p_sd->upos = MAX(p_sd->upos, font_get_underline_position(f, fs));
  4113. p_sd->uthk = MAX(p_sd->uthk, font_get_underline_thickness(f, fs));
  4114. }
  4115. }
  4116. bool TextServerAdvanced::shaped_text_shape(const RID &p_shaped) {
  4117. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4118. ERR_FAIL_COND_V(!sd, false);
  4119. MutexLock lock(sd->mutex);
  4120. if (sd->valid) {
  4121. return true;
  4122. }
  4123. invalidate(sd, false);
  4124. if (sd->parent != RID()) {
  4125. shaped_text_shape(sd->parent);
  4126. ShapedTextDataAdvanced *parent_sd = shaped_owner.get_or_null(sd->parent);
  4127. ERR_FAIL_COND_V(!parent_sd->valid, false);
  4128. ERR_FAIL_COND_V(!_shape_substr(sd, parent_sd, sd->start, sd->end - sd->start), false);
  4129. return true;
  4130. }
  4131. if (sd->text.length() == 0) {
  4132. sd->valid = true;
  4133. return true;
  4134. }
  4135. sd->utf16 = sd->text.utf16();
  4136. const UChar *data = sd->utf16.get_data();
  4137. // Create script iterator.
  4138. if (sd->script_iter == nullptr) {
  4139. sd->script_iter = memnew(ScriptIterator(sd->text, 0, sd->text.length()));
  4140. }
  4141. if (sd->bidi_override.is_empty()) {
  4142. sd->bidi_override.push_back(Vector2i(sd->start, sd->end));
  4143. }
  4144. for (int ov = 0; ov < sd->bidi_override.size(); ov++) {
  4145. // Create BiDi iterator.
  4146. int start = _convert_pos_inv(sd, sd->bidi_override[ov].x - sd->start);
  4147. int end = _convert_pos_inv(sd, sd->bidi_override[ov].y - sd->start);
  4148. if (start < 0 || end - start > sd->utf16.length()) {
  4149. continue;
  4150. }
  4151. UErrorCode err = U_ZERO_ERROR;
  4152. UBiDi *bidi_iter = ubidi_openSized(end, 0, &err);
  4153. ERR_FAIL_COND_V_MSG(U_FAILURE(err), false, u_errorName(err));
  4154. switch (sd->direction) {
  4155. case DIRECTION_LTR: {
  4156. ubidi_setPara(bidi_iter, data + start, end - start, UBIDI_LTR, nullptr, &err);
  4157. sd->para_direction = DIRECTION_LTR;
  4158. } break;
  4159. case DIRECTION_RTL: {
  4160. ubidi_setPara(bidi_iter, data + start, end - start, UBIDI_RTL, nullptr, &err);
  4161. sd->para_direction = DIRECTION_RTL;
  4162. } break;
  4163. case DIRECTION_AUTO: {
  4164. UBiDiDirection direction = ubidi_getBaseDirection(data + start, end - start);
  4165. if (direction != UBIDI_NEUTRAL) {
  4166. ubidi_setPara(bidi_iter, data + start, end - start, direction, nullptr, &err);
  4167. sd->para_direction = (direction == UBIDI_RTL) ? DIRECTION_RTL : DIRECTION_LTR;
  4168. } else {
  4169. ubidi_setPara(bidi_iter, data + start, end - start, UBIDI_DEFAULT_LTR, nullptr, &err);
  4170. sd->para_direction = DIRECTION_LTR;
  4171. }
  4172. } break;
  4173. }
  4174. ERR_FAIL_COND_V_MSG(U_FAILURE(err), false, u_errorName(err));
  4175. sd->bidi_iter.push_back(bidi_iter);
  4176. err = U_ZERO_ERROR;
  4177. int bidi_run_count = ubidi_countRuns(bidi_iter, &err);
  4178. ERR_FAIL_COND_V_MSG(U_FAILURE(err), false, u_errorName(err));
  4179. for (int i = 0; i < bidi_run_count; i++) {
  4180. int32_t _bidi_run_start = 0;
  4181. int32_t _bidi_run_length = 0;
  4182. hb_direction_t bidi_run_direction = HB_DIRECTION_INVALID;
  4183. bool is_rtl = (ubidi_getVisualRun(bidi_iter, i, &_bidi_run_start, &_bidi_run_length) == UBIDI_LTR);
  4184. switch (sd->orientation) {
  4185. case ORIENTATION_HORIZONTAL: {
  4186. if (is_rtl) {
  4187. bidi_run_direction = HB_DIRECTION_LTR;
  4188. } else {
  4189. bidi_run_direction = HB_DIRECTION_RTL;
  4190. }
  4191. } break;
  4192. case ORIENTATION_VERTICAL: {
  4193. if (is_rtl) {
  4194. bidi_run_direction = HB_DIRECTION_TTB;
  4195. } else {
  4196. bidi_run_direction = HB_DIRECTION_BTT;
  4197. }
  4198. }
  4199. }
  4200. int32_t bidi_run_start = _convert_pos(sd, sd->bidi_override[ov].x - sd->start + _bidi_run_start);
  4201. int32_t bidi_run_end = _convert_pos(sd, sd->bidi_override[ov].x - sd->start + _bidi_run_start + _bidi_run_length);
  4202. // Shape runs.
  4203. int scr_from = (is_rtl) ? 0 : sd->script_iter->script_ranges.size() - 1;
  4204. int scr_to = (is_rtl) ? sd->script_iter->script_ranges.size() : -1;
  4205. int scr_delta = (is_rtl) ? +1 : -1;
  4206. for (int j = scr_from; j != scr_to; j += scr_delta) {
  4207. if ((sd->script_iter->script_ranges[j].start < bidi_run_end) && (sd->script_iter->script_ranges[j].end > bidi_run_start)) {
  4208. int32_t script_run_start = MAX(sd->script_iter->script_ranges[j].start, bidi_run_start);
  4209. int32_t script_run_end = MIN(sd->script_iter->script_ranges[j].end, bidi_run_end);
  4210. char scr_buffer[5] = { 0, 0, 0, 0, 0 };
  4211. hb_tag_to_string(hb_script_to_iso15924_tag(sd->script_iter->script_ranges[j].script), scr_buffer);
  4212. String script = String(scr_buffer);
  4213. int spn_from = (is_rtl) ? 0 : sd->spans.size() - 1;
  4214. int spn_to = (is_rtl) ? sd->spans.size() : -1;
  4215. int spn_delta = (is_rtl) ? +1 : -1;
  4216. for (int k = spn_from; k != spn_to; k += spn_delta) {
  4217. const ShapedTextDataAdvanced::Span &span = sd->spans[k];
  4218. if (span.start - sd->start >= script_run_end || span.end - sd->start <= script_run_start) {
  4219. continue;
  4220. }
  4221. if (span.embedded_key != Variant()) {
  4222. // Embedded object.
  4223. if (sd->orientation == ORIENTATION_HORIZONTAL) {
  4224. sd->objects[span.embedded_key].rect.position.x = sd->width;
  4225. sd->width += sd->objects[span.embedded_key].rect.size.x;
  4226. } else {
  4227. sd->objects[span.embedded_key].rect.position.y = sd->width;
  4228. sd->width += sd->objects[span.embedded_key].rect.size.y;
  4229. }
  4230. Glyph gl;
  4231. gl.start = span.start;
  4232. gl.end = span.end;
  4233. gl.count = 1;
  4234. gl.flags = GRAPHEME_IS_VALID | GRAPHEME_IS_VIRTUAL;
  4235. if (sd->orientation == ORIENTATION_HORIZONTAL) {
  4236. gl.advance = sd->objects[span.embedded_key].rect.size.x;
  4237. } else {
  4238. gl.advance = sd->objects[span.embedded_key].rect.size.y;
  4239. }
  4240. sd->glyphs.push_back(gl);
  4241. } else {
  4242. Array fonts;
  4243. Array fonts_scr_only;
  4244. Array fonts_no_match;
  4245. int font_count = span.fonts.size();
  4246. for (int l = 0; l < font_count; l++) {
  4247. if (font_is_script_supported(span.fonts[l], script)) {
  4248. if (font_is_language_supported(span.fonts[l], span.language)) {
  4249. fonts.push_back(sd->spans[k].fonts[l]);
  4250. } else {
  4251. fonts_scr_only.push_back(sd->spans[k].fonts[l]);
  4252. }
  4253. } else {
  4254. fonts_no_match.push_back(sd->spans[k].fonts[l]);
  4255. }
  4256. }
  4257. fonts.append_array(fonts_scr_only);
  4258. fonts.append_array(fonts_no_match);
  4259. _shape_run(sd, MAX(sd->spans[k].start - sd->start, script_run_start), MIN(sd->spans[k].end - sd->start, script_run_end), sd->script_iter->script_ranges[j].script, bidi_run_direction, fonts, k, 0);
  4260. }
  4261. }
  4262. }
  4263. }
  4264. }
  4265. }
  4266. _realign(sd);
  4267. sd->valid = true;
  4268. return sd->valid;
  4269. }
  4270. bool TextServerAdvanced::shaped_text_is_ready(const RID &p_shaped) const {
  4271. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4272. ERR_FAIL_COND_V(!sd, false);
  4273. MutexLock lock(sd->mutex);
  4274. return sd->valid;
  4275. }
  4276. const Glyph *TextServerAdvanced::shaped_text_get_glyphs(const RID &p_shaped) const {
  4277. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4278. ERR_FAIL_COND_V(!sd, nullptr);
  4279. MutexLock lock(sd->mutex);
  4280. if (!sd->valid) {
  4281. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4282. }
  4283. return sd->glyphs.ptr();
  4284. }
  4285. int64_t TextServerAdvanced::shaped_text_get_glyph_count(const RID &p_shaped) const {
  4286. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4287. ERR_FAIL_COND_V(!sd, 0);
  4288. MutexLock lock(sd->mutex);
  4289. if (!sd->valid) {
  4290. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4291. }
  4292. return sd->glyphs.size();
  4293. }
  4294. const Glyph *TextServerAdvanced::shaped_text_sort_logical(const RID &p_shaped) {
  4295. ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4296. ERR_FAIL_COND_V(!sd, nullptr);
  4297. MutexLock lock(sd->mutex);
  4298. if (!sd->valid) {
  4299. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4300. }
  4301. if (!sd->sort_valid) {
  4302. sd->glyphs_logical = sd->glyphs;
  4303. sd->glyphs_logical.sort_custom<GlyphCompare>();
  4304. sd->sort_valid = true;
  4305. }
  4306. return sd->glyphs_logical.ptr();
  4307. }
  4308. Vector2i TextServerAdvanced::shaped_text_get_range(const RID &p_shaped) const {
  4309. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4310. ERR_FAIL_COND_V(!sd, Vector2i());
  4311. MutexLock lock(sd->mutex);
  4312. return Vector2(sd->start, sd->end);
  4313. }
  4314. Array TextServerAdvanced::shaped_text_get_objects(const RID &p_shaped) const {
  4315. Array ret;
  4316. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4317. ERR_FAIL_COND_V(!sd, ret);
  4318. MutexLock lock(sd->mutex);
  4319. for (const KeyValue<Variant, ShapedTextDataAdvanced::EmbeddedObject> &E : sd->objects) {
  4320. ret.push_back(E.key);
  4321. }
  4322. return ret;
  4323. }
  4324. Rect2 TextServerAdvanced::shaped_text_get_object_rect(const RID &p_shaped, const Variant &p_key) const {
  4325. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4326. ERR_FAIL_COND_V(!sd, Rect2());
  4327. MutexLock lock(sd->mutex);
  4328. ERR_FAIL_COND_V(!sd->objects.has(p_key), Rect2());
  4329. if (!sd->valid) {
  4330. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4331. }
  4332. return sd->objects[p_key].rect;
  4333. }
  4334. Size2 TextServerAdvanced::shaped_text_get_size(const RID &p_shaped) const {
  4335. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4336. ERR_FAIL_COND_V(!sd, Size2());
  4337. MutexLock lock(sd->mutex);
  4338. if (!sd->valid) {
  4339. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4340. }
  4341. if (sd->orientation == TextServer::ORIENTATION_HORIZONTAL) {
  4342. return Size2((sd->text_trimmed ? sd->width_trimmed : sd->width), sd->ascent + sd->descent).ceil();
  4343. } else {
  4344. return Size2(sd->ascent + sd->descent, (sd->text_trimmed ? sd->width_trimmed : sd->width)).ceil();
  4345. }
  4346. }
  4347. double TextServerAdvanced::shaped_text_get_ascent(const RID &p_shaped) const {
  4348. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4349. ERR_FAIL_COND_V(!sd, 0.0);
  4350. MutexLock lock(sd->mutex);
  4351. if (!sd->valid) {
  4352. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4353. }
  4354. return sd->ascent;
  4355. }
  4356. double TextServerAdvanced::shaped_text_get_descent(const RID &p_shaped) const {
  4357. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4358. ERR_FAIL_COND_V(!sd, 0.0);
  4359. MutexLock lock(sd->mutex);
  4360. if (!sd->valid) {
  4361. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4362. }
  4363. return sd->descent;
  4364. }
  4365. double TextServerAdvanced::shaped_text_get_width(const RID &p_shaped) const {
  4366. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4367. ERR_FAIL_COND_V(!sd, 0.0);
  4368. MutexLock lock(sd->mutex);
  4369. if (!sd->valid) {
  4370. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4371. }
  4372. return Math::ceil(sd->text_trimmed ? sd->width_trimmed : sd->width);
  4373. }
  4374. double TextServerAdvanced::shaped_text_get_underline_position(const RID &p_shaped) const {
  4375. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4376. ERR_FAIL_COND_V(!sd, 0.0);
  4377. MutexLock lock(sd->mutex);
  4378. if (!sd->valid) {
  4379. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4380. }
  4381. return sd->upos;
  4382. }
  4383. double TextServerAdvanced::shaped_text_get_underline_thickness(const RID &p_shaped) const {
  4384. const ShapedTextDataAdvanced *sd = shaped_owner.get_or_null(p_shaped);
  4385. ERR_FAIL_COND_V(!sd, 0.0);
  4386. MutexLock lock(sd->mutex);
  4387. if (!sd->valid) {
  4388. const_cast<TextServerAdvanced *>(this)->shaped_text_shape(p_shaped);
  4389. }
  4390. return sd->uthk;
  4391. }
  4392. void TextServerAdvanced::_insert_num_systems_lang() {
  4393. // Eastern Arabic numerals.
  4394. {
  4395. NumSystemData ar;
  4396. ar.lang.insert(StringName("ar")); // Arabic
  4397. ar.lang.insert(StringName("ar_AE"));
  4398. ar.lang.insert(StringName("ar_BH"));
  4399. ar.lang.insert(StringName("ar_DJ"));
  4400. ar.lang.insert(StringName("ar_EG"));
  4401. ar.lang.insert(StringName("ar_ER"));
  4402. ar.lang.insert(StringName("ar_IL"));
  4403. ar.lang.insert(StringName("ar_IQ"));
  4404. ar.lang.insert(StringName("ar_JO"));
  4405. ar.lang.insert(StringName("ar_KM"));
  4406. ar.lang.insert(StringName("ar_KW"));
  4407. ar.lang.insert(StringName("ar_LB"));
  4408. ar.lang.insert(StringName("ar_MR"));
  4409. ar.lang.insert(StringName("ar_OM"));
  4410. ar.lang.insert(StringName("ar_PS"));
  4411. ar.lang.insert(StringName("ar_QA"));
  4412. ar.lang.insert(StringName("ar_SA"));
  4413. ar.lang.insert(StringName("ar_SD"));
  4414. ar.lang.insert(StringName("ar_SO"));
  4415. ar.lang.insert(StringName("ar_SS"));
  4416. ar.lang.insert(StringName("ar_SY"));
  4417. ar.lang.insert(StringName("ar_TD"));
  4418. ar.lang.insert(StringName("ar_YE"));
  4419. ar.lang.insert(StringName("ckb")); // Central Kurdish
  4420. ar.lang.insert(StringName("ckb_IQ"));
  4421. ar.lang.insert(StringName("ckb_IR"));
  4422. ar.lang.insert(StringName("sd")); // Sindhi
  4423. ar.lang.insert(StringName("sd_PK"));
  4424. ar.lang.insert(StringName("sd_Arab"));
  4425. ar.lang.insert(StringName("sd_Arab_PK"));
  4426. ar.digits = U"٠١٢٣٤٥٦٧٨٩٫";
  4427. ar.percent_sign = U"٪";
  4428. ar.exp = U"اس";
  4429. num_systems.push_back(ar);
  4430. }
  4431. // Persian and Urdu numerals.
  4432. {
  4433. NumSystemData pr;
  4434. pr.lang.insert(StringName("fa")); // Persian
  4435. pr.lang.insert(StringName("fa_AF"));
  4436. pr.lang.insert(StringName("fa_IR"));
  4437. pr.lang.insert(StringName("ks")); // Kashmiri
  4438. pr.lang.insert(StringName("ks_IN"));
  4439. pr.lang.insert(StringName("ks_Arab"));
  4440. pr.lang.insert(StringName("ks_Arab_IN"));
  4441. pr.lang.insert(StringName("lrc")); // Northern Luri
  4442. pr.lang.insert(StringName("lrc_IQ"));
  4443. pr.lang.insert(StringName("lrc_IR"));
  4444. pr.lang.insert(StringName("mzn")); // Mazanderani
  4445. pr.lang.insert(StringName("mzn_IR"));
  4446. pr.lang.insert(StringName("pa_PK")); // Panjabi
  4447. pr.lang.insert(StringName("pa_Arab"));
  4448. pr.lang.insert(StringName("pa_Arab_PK"));
  4449. pr.lang.insert(StringName("ps")); // Pushto
  4450. pr.lang.insert(StringName("ps_AF"));
  4451. pr.lang.insert(StringName("ps_PK"));
  4452. pr.lang.insert(StringName("ur_IN")); // Urdu
  4453. pr.lang.insert(StringName("uz_AF")); // Uzbek
  4454. pr.lang.insert(StringName("uz_Arab"));
  4455. pr.lang.insert(StringName("uz_Arab_AF"));
  4456. pr.digits = U"۰۱۲۳۴۵۶۷۸۹٫";
  4457. pr.percent_sign = U"٪";
  4458. pr.exp = U"اس";
  4459. num_systems.push_back(pr);
  4460. }
  4461. // Bengali numerals.
  4462. {
  4463. NumSystemData bn;
  4464. bn.lang.insert(StringName("as")); // Assamese
  4465. bn.lang.insert(StringName("as_IN"));
  4466. bn.lang.insert(StringName("bn")); // Bengali
  4467. bn.lang.insert(StringName("bn_BD"));
  4468. bn.lang.insert(StringName("bn_IN"));
  4469. bn.lang.insert(StringName("mni")); // Manipuri
  4470. bn.lang.insert(StringName("mni_IN"));
  4471. bn.lang.insert(StringName("mni_Beng"));
  4472. bn.lang.insert(StringName("mni_Beng_IN"));
  4473. bn.digits = U"০১২৩৪৫৬৭৮৯.";
  4474. bn.percent_sign = U"%";
  4475. bn.exp = U"e";
  4476. num_systems.push_back(bn);
  4477. }
  4478. // Devanagari numerals.
  4479. {
  4480. NumSystemData mr;
  4481. mr.lang.insert(StringName("mr")); // Marathi
  4482. mr.lang.insert(StringName("mr_IN"));
  4483. mr.lang.insert(StringName("ne")); // Nepali
  4484. mr.lang.insert(StringName("ne_IN"));
  4485. mr.lang.insert(StringName("ne_NP"));
  4486. mr.lang.insert(StringName("sa")); // Sanskrit
  4487. mr.lang.insert(StringName("sa_IN"));
  4488. mr.digits = U"०१२३४५६७८९.";
  4489. mr.percent_sign = U"%";
  4490. mr.exp = U"e";
  4491. num_systems.push_back(mr);
  4492. }
  4493. // Dzongkha numerals.
  4494. {
  4495. NumSystemData dz;
  4496. dz.lang.insert(StringName("dz")); // Dzongkha
  4497. dz.lang.insert(StringName("dz_BT"));
  4498. dz.digits = U"༠༡༢༣༤༥༦༧༨༩.";
  4499. dz.percent_sign = U"%";
  4500. dz.exp = U"e";
  4501. num_systems.push_back(dz);
  4502. }
  4503. // Santali numerals.
  4504. {
  4505. NumSystemData sat;
  4506. sat.lang.insert(StringName("sat")); // Santali
  4507. sat.lang.insert(StringName("sat_IN"));
  4508. sat.lang.insert(StringName("sat_Olck"));
  4509. sat.lang.insert(StringName("sat_Olck_IN"));
  4510. sat.digits = U"᱐᱑᱒᱓᱔᱕᱖᱗᱘᱙.";
  4511. sat.percent_sign = U"%";
  4512. sat.exp = U"e";
  4513. num_systems.push_back(sat);
  4514. }
  4515. // Burmese numerals.
  4516. {
  4517. NumSystemData my;
  4518. my.lang.insert(StringName("my")); // Burmese
  4519. my.lang.insert(StringName("my_MM"));
  4520. my.digits = U"၀၁၂၃၄၅၆၇၈၉.";
  4521. my.percent_sign = U"%";
  4522. my.exp = U"e";
  4523. num_systems.push_back(my);
  4524. }
  4525. // Chakma numerals.
  4526. {
  4527. NumSystemData ccp;
  4528. ccp.lang.insert(StringName("ccp")); // Chakma
  4529. ccp.lang.insert(StringName("ccp_BD"));
  4530. ccp.lang.insert(StringName("ccp_IN"));
  4531. ccp.digits = U"𑄶𑄷𑄸𑄹𑄺𑄻𑄼𑄽𑄾𑄿.";
  4532. ccp.percent_sign = U"%";
  4533. ccp.exp = U"e";
  4534. num_systems.push_back(ccp);
  4535. }
  4536. // Adlam numerals.
  4537. {
  4538. NumSystemData ff;
  4539. ff.lang.insert(StringName("ff")); // Fulah
  4540. ff.lang.insert(StringName("ff_Adlm_BF"));
  4541. ff.lang.insert(StringName("ff_Adlm_CM"));
  4542. ff.lang.insert(StringName("ff_Adlm_GH"));
  4543. ff.lang.insert(StringName("ff_Adlm_GM"));
  4544. ff.lang.insert(StringName("ff_Adlm_GN"));
  4545. ff.lang.insert(StringName("ff_Adlm_GW"));
  4546. ff.lang.insert(StringName("ff_Adlm_LR"));
  4547. ff.lang.insert(StringName("ff_Adlm_MR"));
  4548. ff.lang.insert(StringName("ff_Adlm_NE"));
  4549. ff.lang.insert(StringName("ff_Adlm_NG"));
  4550. ff.lang.insert(StringName("ff_Adlm_SL"));
  4551. ff.lang.insert(StringName("ff_Adlm_SN"));
  4552. ff.digits = U"𞥐𞥑𞥒𞥓𞥔𞥕𞥖𞥗𞥘𞥙.";
  4553. ff.percent_sign = U"%";
  4554. ff.exp = U"e";
  4555. num_systems.push_back(ff);
  4556. }
  4557. }
  4558. String TextServerAdvanced::format_number(const String &p_string, const String &p_language) const {
  4559. const StringName lang = (p_language.is_empty()) ? TranslationServer::get_singleton()->get_tool_locale() : p_language;
  4560. String res = p_string;
  4561. for (int i = 0; i < num_systems.size(); i++) {
  4562. if (num_systems[i].lang.has(lang)) {
  4563. if (num_systems[i].digits.is_empty()) {
  4564. return p_string;
  4565. }
  4566. res.replace("e", num_systems[i].exp);
  4567. res.replace("E", num_systems[i].exp);
  4568. char32_t *data = res.ptrw();
  4569. for (int j = 0; j < res.length(); j++) {
  4570. if (data[j] >= 0x30 && data[j] <= 0x39) {
  4571. data[j] = num_systems[i].digits[data[j] - 0x30];
  4572. } else if (data[j] == '.' || data[j] == ',') {
  4573. data[j] = num_systems[i].digits[10];
  4574. }
  4575. }
  4576. break;
  4577. }
  4578. }
  4579. return res;
  4580. }
  4581. String TextServerAdvanced::parse_number(const String &p_string, const String &p_language) const {
  4582. const StringName lang = (p_language.is_empty()) ? TranslationServer::get_singleton()->get_tool_locale() : p_language;
  4583. String res = p_string;
  4584. for (int i = 0; i < num_systems.size(); i++) {
  4585. if (num_systems[i].lang.has(lang)) {
  4586. if (num_systems[i].digits.is_empty()) {
  4587. return p_string;
  4588. }
  4589. res.replace(num_systems[i].exp, "e");
  4590. char32_t *data = res.ptrw();
  4591. for (int j = 0; j < res.length(); j++) {
  4592. if (data[j] == num_systems[i].digits[10]) {
  4593. data[j] = '.';
  4594. } else {
  4595. for (int k = 0; k < 10; k++) {
  4596. if (data[j] == num_systems[i].digits[k]) {
  4597. data[j] = 0x30 + k;
  4598. }
  4599. }
  4600. }
  4601. }
  4602. break;
  4603. }
  4604. }
  4605. return res;
  4606. }
  4607. String TextServerAdvanced::percent_sign(const String &p_language) const {
  4608. const StringName lang = (p_language.is_empty()) ? TranslationServer::get_singleton()->get_tool_locale() : p_language;
  4609. for (int i = 0; i < num_systems.size(); i++) {
  4610. if (num_systems[i].lang.has(lang)) {
  4611. if (num_systems[i].percent_sign.is_empty()) {
  4612. return "%";
  4613. }
  4614. return num_systems[i].percent_sign;
  4615. }
  4616. }
  4617. return "%";
  4618. }
  4619. String TextServerAdvanced::strip_diacritics(const String &p_string) const {
  4620. UErrorCode err = U_ZERO_ERROR;
  4621. // Get NFKD normalizer singleton.
  4622. const UNormalizer2 *unorm = unorm2_getNFKDInstance(&err);
  4623. ERR_FAIL_COND_V_MSG(U_FAILURE(err), TextServer::strip_diacritics(p_string), u_errorName(err));
  4624. // Convert to UTF-16.
  4625. Char16String utf16 = p_string.utf16();
  4626. // Normalize.
  4627. Vector<char16_t> normalized;
  4628. err = U_ZERO_ERROR;
  4629. int32_t len = unorm2_normalize(unorm, utf16.get_data(), -1, nullptr, 0, &err);
  4630. ERR_FAIL_COND_V_MSG(err != U_BUFFER_OVERFLOW_ERROR, TextServer::strip_diacritics(p_string), u_errorName(err));
  4631. normalized.resize(len);
  4632. err = U_ZERO_ERROR;
  4633. unorm2_normalize(unorm, utf16.get_data(), -1, normalized.ptrw(), len, &err);
  4634. ERR_FAIL_COND_V_MSG(U_FAILURE(err), TextServer::strip_diacritics(p_string), u_errorName(err));
  4635. // Convert back to UTF-32.
  4636. String normalized_string = String::utf16(normalized.ptr(), len);
  4637. // Strip combining characters.
  4638. String result;
  4639. for (int i = 0; i < normalized_string.length(); i++) {
  4640. if (u_getCombiningClass(normalized_string[i]) == 0) {
  4641. result = result + normalized_string[i];
  4642. }
  4643. }
  4644. return result;
  4645. }
  4646. String TextServerAdvanced::string_to_upper(const String &p_string, const String &p_language) const {
  4647. // Convert to UTF-16.
  4648. Char16String utf16 = p_string.utf16();
  4649. Vector<char16_t> upper;
  4650. UErrorCode err = U_ZERO_ERROR;
  4651. int32_t len = u_strToUpper(nullptr, 0, utf16.get_data(), -1, p_language.ascii().get_data(), &err);
  4652. ERR_FAIL_COND_V_MSG(err != U_BUFFER_OVERFLOW_ERROR, p_string, u_errorName(err));
  4653. upper.resize(len);
  4654. err = U_ZERO_ERROR;
  4655. u_strToUpper(upper.ptrw(), len, utf16.get_data(), -1, p_language.ascii().get_data(), &err);
  4656. ERR_FAIL_COND_V_MSG(U_FAILURE(err), p_string, u_errorName(err));
  4657. // Convert back to UTF-32.
  4658. return String::utf16(upper.ptr(), len);
  4659. }
  4660. String TextServerAdvanced::string_to_lower(const String &p_string, const String &p_language) const {
  4661. // Convert to UTF-16.
  4662. Char16String utf16 = p_string.utf16();
  4663. Vector<char16_t> lower;
  4664. UErrorCode err = U_ZERO_ERROR;
  4665. int32_t len = u_strToLower(nullptr, 0, utf16.get_data(), -1, p_language.ascii().get_data(), &err);
  4666. ERR_FAIL_COND_V_MSG(err != U_BUFFER_OVERFLOW_ERROR, p_string, u_errorName(err));
  4667. lower.resize(len);
  4668. err = U_ZERO_ERROR;
  4669. u_strToLower(lower.ptrw(), len, utf16.get_data(), -1, p_language.ascii().get_data(), &err);
  4670. ERR_FAIL_COND_V_MSG(U_FAILURE(err), p_string, u_errorName(err));
  4671. // Convert back to UTF-32.
  4672. return String::utf16(lower.ptr(), len);
  4673. }
  4674. TextServerAdvanced::TextServerAdvanced() {
  4675. _insert_num_systems_lang();
  4676. _insert_feature_sets();
  4677. _bmp_create_font_funcs();
  4678. }
  4679. TextServerAdvanced::~TextServerAdvanced() {
  4680. _bmp_free_font_funcs();
  4681. if (ft_library != nullptr) {
  4682. FT_Done_FreeType(ft_library);
  4683. }
  4684. u_cleanup();
  4685. }