2023-03-19 12:04:47 +01:00
|
|
|
#include "Layer.h"
|
2023-03-26 21:19:37 +02:00
|
|
|
#include "conversion.h"
|
2023-03-25 13:51:04 +01:00
|
|
|
#include "ofAppRunner.h"
|
|
|
|
#include "ofGraphics.h"
|
2023-03-26 21:19:37 +02:00
|
|
|
#include "ofUtils.h"
|
2023-03-25 13:51:04 +01:00
|
|
|
|
|
|
|
namespace ofxVariableLab {
|
|
|
|
|
|
|
|
Layer::Layer(){
|
|
|
|
}
|
|
|
|
Layer::~Layer(){
|
|
|
|
}
|
|
|
|
MsdfLayer::MsdfLayer(){
|
|
|
|
}
|
|
|
|
MsdfLayer::~MsdfLayer(){
|
|
|
|
}
|
|
|
|
|
|
|
|
void Layer::update(){
|
2023-03-26 21:19:37 +02:00
|
|
|
if(isDirty){
|
2023-03-25 13:51:04 +01:00
|
|
|
|
2023-03-26 21:19:37 +02:00
|
|
|
isDirty = false;
|
|
|
|
}
|
2023-03-25 13:51:04 +01:00
|
|
|
}
|
|
|
|
|
2023-03-26 21:19:37 +02:00
|
|
|
void MsdfLayer::draw(glm::vec3 position) const {
|
|
|
|
const ofImage & atlasImage = atlas->getAtlasImage();
|
2023-03-25 13:51:04 +01:00
|
|
|
ofDisableAlphaBlending();
|
|
|
|
ofEnableDepthTest();
|
|
|
|
shader->begin();
|
2023-03-26 21:19:37 +02:00
|
|
|
shader->setUniformTexture("msdf", atlasImage.getTexture(), 0);
|
2023-03-25 13:51:04 +01:00
|
|
|
shader->setUniform4f("fontColor", ofFloatColor::white);
|
|
|
|
float pixelRange = 2;
|
2023-03-26 21:19:37 +02:00
|
|
|
int atlas_w = atlasImage.getWidth();
|
|
|
|
int atlas_h = atlasImage.getHeight();
|
2023-03-25 13:51:04 +01:00
|
|
|
int atlas_x = 0;
|
|
|
|
int atlas_y = 0;
|
|
|
|
glm::vec2 unitRange = glm::vec2(pixelRange) / glm::vec2(atlas_w, atlas_h);
|
|
|
|
shader->setUniform2f("unitRange", unitRange);
|
|
|
|
shader->end();
|
2023-03-26 21:19:37 +02:00
|
|
|
|
|
|
|
ofPushMatrix();
|
2023-03-27 20:17:47 +02:00
|
|
|
ofTranslate(position);
|
|
|
|
ofPushStyle();
|
|
|
|
ofSetColor(ofColor::pink);
|
|
|
|
ofDrawLine(glm::vec2(0, 0), glm::vec2(ofGetWidth(), 0));
|
|
|
|
ofPopStyle();
|
2023-03-28 19:18:45 +02:00
|
|
|
//atlas->getAtlasImage().draw(0, 0);
|
|
|
|
//cout << "drawing letters (" << ofToString(propsBuffer.size()) << ")" << endl;
|
|
|
|
char previous_c;
|
|
|
|
bool firstLetter = true;
|
2023-03-26 21:19:37 +02:00
|
|
|
for(const char c : propsBuffer[0].text){
|
|
|
|
ofxMsdfgen::GlyphGeometry gg = atlas->getGlyphGeometry(c);
|
|
|
|
int x, y, w, h;
|
|
|
|
gg.getBoxRect(x, y, w, h);
|
2023-03-28 19:18:45 +02:00
|
|
|
//y = atlas_h - (y + h);
|
2023-03-26 21:19:37 +02:00
|
|
|
if(y < 0){
|
|
|
|
// FIXME: make sure this does not happen
|
|
|
|
ofLogError("MsdfLayer::draw") << "y smaller 0, this is not good" << endl;
|
|
|
|
}
|
|
|
|
ofPushStyle();
|
|
|
|
double pl, pb, pr, pt,
|
|
|
|
il, ib, ir, it;
|
|
|
|
gg.getQuadPlaneBounds(pl, pb, pr, pt);
|
|
|
|
gg.getQuadAtlasBounds(il, ib, ir, it);
|
|
|
|
|
|
|
|
ofPushMatrix();
|
2023-03-27 20:17:47 +02:00
|
|
|
float magic = ofMap(sin(ofGetElapsedTimeMicros() * 0.000001), -1, 1, 1, 200);
|
|
|
|
magic = atlas->settings.scale;
|
2023-03-28 19:18:45 +02:00
|
|
|
auto fontMetrics = atlas->getFontGeometry().getMetrics();
|
|
|
|
float cender = (fontMetrics.ascenderY-fontMetrics.descenderY);
|
|
|
|
//magic *= cender;
|
|
|
|
//if(ofGetFrameNum() % 30 == 0){
|
|
|
|
//cout << "drawing letter " << c << endl
|
|
|
|
//<< "\tpl: " << ofToString(pl)
|
|
|
|
//<< "\tpb: " << ofToString(pb)
|
|
|
|
//<< "\tpr: " << ofToString(pr)
|
|
|
|
//<< "\tpt: " << ofToString(pt)
|
|
|
|
//<< endl;
|
|
|
|
//}
|
2023-03-26 21:19:37 +02:00
|
|
|
|
2023-03-28 19:18:45 +02:00
|
|
|
//ofPushMatrix();
|
|
|
|
//for(int i = 0; i < 2; i++){
|
|
|
|
//if(i == 1){
|
|
|
|
//ofRotateDeg(90);
|
|
|
|
//ofTranslate(400, -150, 0);
|
|
|
|
//}
|
|
|
|
//ofNoFill();
|
|
|
|
//ofSetColor(ofColor::white);
|
|
|
|
//ofDrawLine(glm::vec2(0, 90), glm::vec2(0, 140));
|
|
|
|
//ofSetColor(ofColor::lightGray);
|
|
|
|
//for(int i = 1; i < 3; i++){
|
|
|
|
//ofDrawLine(glm::vec2(i * 20, 90), glm::vec2(i * 20, 140));
|
|
|
|
//}
|
|
|
|
//ofFill();
|
|
|
|
//if(i == 0){
|
|
|
|
//ofSetColor(ofColor::red);
|
|
|
|
//ofDrawRectangle(0, 100, pl * 50, 10);
|
|
|
|
//ofSetColor(ofColor::lightBlue);
|
|
|
|
//ofDrawRectangle(0, 120, pr * 50, 10);
|
|
|
|
//ofSetColor(ofColor::green);
|
|
|
|
//ofDrawRectangle(0, 130, gg.getAdvance() * 50, 10);
|
|
|
|
//ofDrawBitmapStringHighlight(ofToString(gg.getAdvance()), 0, 150);
|
|
|
|
//ofDrawBitmapStringHighlight(ofToString(pl), 0, 170);
|
|
|
|
//ofDrawBitmapStringHighlight(ofToString(pb), 0, 190);
|
|
|
|
//ofDrawBitmapStringHighlight(ofToString(pr), 0, 210);
|
|
|
|
//ofDrawBitmapStringHighlight(ofToString(pt), 0, 230);
|
|
|
|
//}else{
|
|
|
|
//ofSetColor(ofColor::green);
|
|
|
|
//ofDrawRectangle(0, 110, pb * 50, 10);
|
|
|
|
//ofSetColor(ofColor::yellow);
|
|
|
|
//ofDrawRectangle(0, 130, pt * 50, 10);
|
|
|
|
//}
|
|
|
|
//}
|
|
|
|
//ofPopMatrix();
|
2023-03-26 21:19:37 +02:00
|
|
|
shader->begin();
|
|
|
|
ofSetColor(ofFloatColor(1, 1, 1, 1));
|
2023-03-28 17:48:18 +02:00
|
|
|
ofTranslate(pl * magic, 0, 0);
|
|
|
|
ofTranslate(0, -1 * pt * magic, 0);
|
2023-03-28 19:18:45 +02:00
|
|
|
msdf_atlas::unicode_t a = static_cast <msdf_atlas::unicode_t>(previous_c);
|
|
|
|
msdf_atlas::unicode_t b = static_cast <msdf_atlas::unicode_t>(c);
|
|
|
|
double advance = gg.getAdvance();
|
|
|
|
if(!firstLetter){
|
|
|
|
//cout << "this is being printed" << endl;
|
|
|
|
auto & fontGeometry = atlas->getFontGeometry();
|
|
|
|
const std::map <std::pair <int, int>, double> kerning = fontGeometry.getKerning();
|
|
|
|
ofxMsdfgen::GlyphGeometry gg_previous = atlas->getGlyphGeometry(c);
|
|
|
|
|
|
|
|
std::map <std::pair <int, int>, double>::const_iterator it = kerning.find(std::make_pair <int, int>(gg_previous.getIndex(), gg.getIndex()));
|
|
|
|
if(it != kerning.end()){
|
|
|
|
advance += it->second;
|
|
|
|
ofDrawBitmapStringHighlight(ofToString(it->second), 0, 200, ofColor::black, ofColor::pink);
|
|
|
|
}
|
|
|
|
ofPushStyle();
|
|
|
|
ofFill();
|
|
|
|
ofSetColor(ofColor::green);
|
|
|
|
ofDrawRectangle(0, 0, 400, 400);
|
|
|
|
ofPopStyle();
|
|
|
|
//fontGeometry.getAdvance(advance, 'a', 'b');
|
|
|
|
//cout << "first worked" << endl;
|
|
|
|
//fontGeometry.getAdvance(advance, a, b);
|
|
|
|
//cout << "this is maybeh being printed" << endl;
|
|
|
|
//bool gotAdvance = atlas->getFontGeometry().getAdvance(advance, a, b);
|
|
|
|
//cout << "this is being not printed" << endl;
|
|
|
|
//if(gotAdvance){
|
|
|
|
//ofTranslate(advance * magic, 0, 0);
|
|
|
|
//}
|
|
|
|
}else{
|
|
|
|
firstLetter = false;
|
|
|
|
}
|
|
|
|
msdf_atlas::GlyphBox gb;
|
2023-03-26 21:19:37 +02:00
|
|
|
atlasImage.drawSubsection(0, 0, w, h, x, y, w, h);
|
|
|
|
shader->end();
|
|
|
|
ofPopMatrix();
|
|
|
|
ofPopStyle();
|
2023-03-28 19:18:45 +02:00
|
|
|
ofTranslate(advance * magic, 0, 0);
|
|
|
|
ofTranslate(-1 * pl * magic, 0, 0);
|
|
|
|
previous_c = c;
|
2023-03-26 21:19:37 +02:00
|
|
|
}
|
|
|
|
ofPopMatrix();
|
|
|
|
//atlasImage.draw(x, y);
|
2023-03-25 13:51:04 +01:00
|
|
|
ofDisableDepthTest();
|
|
|
|
ofEnableAlphaBlending();
|
|
|
|
}
|
|
|
|
void Layer::setProps(const Props & props){
|
|
|
|
while(propsBuffer.size() > max(0, int(settings.maxBufferSize - 1))){
|
|
|
|
propsBuffer.pop_back();
|
|
|
|
}
|
|
|
|
propsBuffer.push_front(props);
|
|
|
|
}
|
|
|
|
void Layer::clearPropsBuffer(){
|
|
|
|
propsBuffer.clear();
|
|
|
|
}
|
|
|
|
void Layer::setId(const string & id){
|
|
|
|
this->id = id;
|
|
|
|
}
|
|
|
|
const string & Layer::getId(){
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
}
|