2008-05-07 21:46:24 +08:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <sstream>
|
|
|
|
#include <osg/io_utils>
|
|
|
|
#include <osg/ArgumentParser>
|
|
|
|
#include <osg/Geode>
|
2017-08-29 20:48:06 +08:00
|
|
|
#include <osg/MatrixTransform>
|
2017-08-30 00:19:26 +08:00
|
|
|
#include <osgDB/WriteFile>
|
2008-05-07 21:46:24 +08:00
|
|
|
#include <osgViewer/Viewer>
|
|
|
|
#include <osgViewer/ViewerEventHandlers>
|
2010-03-19 01:10:48 +08:00
|
|
|
#include <osgGA/StateSetManipulator>
|
2008-05-07 21:46:24 +08:00
|
|
|
|
|
|
|
void textInfo(osgText::Text* text)
|
|
|
|
{
|
2010-03-19 01:10:48 +08:00
|
|
|
const osgText::Text::TextureGlyphQuadMap& tgqm = text->getTextureGlyphQuadMap();
|
|
|
|
|
|
|
|
const osgText::Text::TextureGlyphQuadMap::const_iterator tgqmi = tgqm.begin();
|
|
|
|
|
|
|
|
|
|
|
|
osgText::String& s = text->getText();
|
|
|
|
|
2017-03-01 00:34:33 +08:00
|
|
|
for(unsigned int i = 0; i < s.size(); i++)
|
|
|
|
{
|
|
|
|
osg::Vec2 ul; text->getCoord(0 + (i * 4), ul); // upperLeft
|
|
|
|
osg::Vec2 ll; text->getCoord(1 + (i * 4), ll); // lowerLeft
|
|
|
|
osg::Vec2 lr; text->getCoord(2 + (i * 4), lr); // lowerRight
|
|
|
|
osg::Vec2 ur; text->getCoord(3 + (i * 4), ur); // upperRight
|
|
|
|
|
|
|
|
osg::notify(osg::NOTICE)
|
|
|
|
<< "'" << static_cast<char>(s[i]) << "':"
|
|
|
|
<< " width(" << lr.x() - ll.x() << ")"
|
|
|
|
<< " height(" << ul.y() - ll.y() << ")" << std::endl << "\t"
|
|
|
|
<< "ul(" << ul << "), "
|
|
|
|
<< "ll(" << ll << "), "
|
|
|
|
<< "lr(" << lr << "), "
|
|
|
|
<< "ur(" << ur << ")"
|
|
|
|
<< std::endl
|
|
|
|
;
|
|
|
|
}
|
2008-05-07 21:46:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
osg::Camera* createOrthoCamera(double width, double height)
|
|
|
|
{
|
2010-03-19 01:10:48 +08:00
|
|
|
osg::Camera* camera = new osg::Camera();
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
camera->getOrCreateStateSet()->setMode(
|
|
|
|
GL_LIGHTING,
|
|
|
|
osg::StateAttribute::PROTECTED | osg::StateAttribute::OFF
|
|
|
|
);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
osg::Matrix m = osg::Matrix::ortho2D(0.0f, width, 0.0f, height);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
camera->setProjectionMatrix(m);
|
|
|
|
camera->setReferenceFrame(osg::Transform::ABSOLUTE_RF);
|
|
|
|
camera->setViewMatrix(osg::Matrix::identity());
|
|
|
|
camera->setClearMask(GL_DEPTH_BUFFER_BIT);
|
|
|
|
camera->setRenderOrder(osg::Camera::POST_RENDER);
|
2009-02-08 23:56:35 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
return camera;
|
2008-05-07 21:46:24 +08:00
|
|
|
}
|
|
|
|
|
2017-08-30 17:16:18 +08:00
|
|
|
typedef std::list<unsigned int> Sizes;
|
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
struct TextSettings
|
|
|
|
{
|
|
|
|
TextSettings():
|
|
|
|
fontFilename("fonts/arial.ttf"),
|
2017-08-30 17:50:26 +08:00
|
|
|
glyphImageMargin(1),
|
|
|
|
glyphImageMarginRatio(0.02),
|
2017-08-30 00:19:26 +08:00
|
|
|
textColor(1.0f, 1.0f, 1.0f, 1.0f),
|
|
|
|
backdropType(osgText::Text::NONE),
|
|
|
|
backdropOffset(0.04f, 0.04f),
|
|
|
|
backdropColor(0.0f, 0.0f, 0.0f, 1.0f)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void read(osg::ArgumentParser& arguments)
|
|
|
|
{
|
2017-08-30 17:16:18 +08:00
|
|
|
if (arguments.read("--test"))
|
|
|
|
{
|
|
|
|
backgroundColor = osg::Vec4(1.0, 1.0, 1.0, 1.0);
|
|
|
|
|
|
|
|
fontFilename = "fonts/arialbd.ttf";
|
|
|
|
backdropType = osgText::Text::OUTLINE;
|
|
|
|
|
|
|
|
sizes.clear();
|
|
|
|
sizes.push_back(8);
|
|
|
|
sizes.push_back(16);
|
|
|
|
sizes.push_back(32);
|
|
|
|
sizes.push_back(64);
|
|
|
|
sizes.push_back(128);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arguments.read("--font",fontFilename)) {}
|
|
|
|
|
2017-08-30 17:50:26 +08:00
|
|
|
|
|
|
|
if (arguments.read("--margin", glyphImageMargin)) {}
|
|
|
|
if (arguments.read("--margin-ratio", glyphImageMarginRatio)) {}
|
|
|
|
|
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
if (arguments.read("--outline")) backdropType = osgText::Text::OUTLINE;
|
|
|
|
if (arguments.read("--shadow")) backdropType = osgText::Text::DROP_SHADOW_BOTTOM_RIGHT;
|
|
|
|
|
|
|
|
float offset;
|
|
|
|
if (arguments.read("--offset", offset)) backdropOffset.set(offset, offset);
|
|
|
|
|
|
|
|
if (arguments.read("--text-color", textColor.r(), textColor.g(), textColor.b(), textColor.a())) {}
|
|
|
|
if (arguments.read("--bd-color", backdropColor.r(), backdropColor.g(), backdropColor.b(), backdropColor.a())) {}
|
2017-08-30 17:16:18 +08:00
|
|
|
if (arguments.read("--bg-color", backgroundColor.r(), backgroundColor.g(), backgroundColor.b(), backgroundColor.a())) {}
|
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void setText(osgText::Text& text)
|
|
|
|
{
|
|
|
|
OSG_NOTICE<<"Settings::setText()"<<std::endl;
|
|
|
|
text.setFont(fontFilename);
|
|
|
|
text.setColor(textColor);
|
|
|
|
text.setBackdropType(backdropType);
|
|
|
|
text.setBackdropOffset(backdropOffset.x(), backdropOffset.y());
|
|
|
|
text.setBackdropColor(backdropColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string fontFilename;
|
2017-08-30 17:50:26 +08:00
|
|
|
unsigned int glyphImageMargin;
|
|
|
|
float glyphImageMarginRatio;
|
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
osg::Vec4 textColor;
|
|
|
|
osgText::Text::BackdropType backdropType;
|
|
|
|
osg::Vec2 backdropOffset;
|
|
|
|
osg::Vec4 backdropColor;
|
2017-08-30 17:16:18 +08:00
|
|
|
osg::Vec4 backgroundColor;
|
|
|
|
Sizes sizes;
|
2017-08-30 00:19:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
osgText::Text* createLabel(const std::string& l, TextSettings& settings, unsigned int size)
|
2008-05-07 21:46:24 +08:00
|
|
|
{
|
2010-03-19 01:10:48 +08:00
|
|
|
static osg::Vec3 pos(10.0f, 10.0f, 0.0f);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
osgText::Text* label = new osgText::Text();
|
2017-08-30 00:19:26 +08:00
|
|
|
osg::ref_ptr<osgText::Font> font = osgText::readRefFontFile(settings.fontFilename);
|
|
|
|
|
2017-08-30 17:50:26 +08:00
|
|
|
font->setGlyphImageMargin(settings.glyphImageMargin);
|
|
|
|
font->setGlyphImageMarginRatio(settings.glyphImageMarginRatio);
|
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
settings.setText(*label);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
label->setCharacterSize(size);
|
|
|
|
label->setFontResolution(size, size);
|
|
|
|
label->setPosition(pos);
|
|
|
|
label->setAlignment(osgText::Text::LEFT_BOTTOM);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
// It seems to be important we do this last to get best results?
|
|
|
|
label->setText(l);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
|
|
|
|
// textInfo(label);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
pos.y() += size + 10.0f;
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
return label;
|
2008-05-07 21:46:24 +08:00
|
|
|
}
|
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
|
|
|
|
|
2008-05-07 21:46:24 +08:00
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2010-03-19 01:10:48 +08:00
|
|
|
osg::ArgumentParser args(&argc, argv);
|
2017-08-29 19:21:14 +08:00
|
|
|
osgViewer::Viewer viewer(args);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
viewer.addEventHandler( new osgGA::StateSetManipulator(viewer.getCamera()->getOrCreateStateSet()) );
|
|
|
|
viewer.addEventHandler(new osgViewer::StatsHandler());
|
|
|
|
viewer.addEventHandler(new osgViewer::WindowSizeHandler());
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-30 17:16:18 +08:00
|
|
|
TextSettings settings;
|
|
|
|
settings.backgroundColor = viewer.getCamera()->getClearColor();
|
|
|
|
|
|
|
|
settings.read(args);
|
|
|
|
|
|
|
|
viewer.getCamera()->setClearColor(settings.backgroundColor);
|
2017-08-29 20:48:06 +08:00
|
|
|
|
|
|
|
osg::ref_ptr<osg::Group> root = new osg::Group;
|
|
|
|
|
|
|
|
bool ortho = args.read("--ortho");
|
|
|
|
if (ortho)
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::Camera> camera = createOrthoCamera(1280.0f, 1024.0f);
|
|
|
|
root->addChild(camera.get());
|
|
|
|
root = camera;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
osg::ref_ptr<osg::MatrixTransform> transform = new osg::MatrixTransform;
|
|
|
|
transform->setMatrix(osg::Matrixd::rotate(osg::DegreesToRadians(90.0), 1.0, 0.0, 0.0));
|
|
|
|
root->addChild(transform.get());
|
|
|
|
root = transform;
|
|
|
|
}
|
|
|
|
|
2017-08-30 17:16:18 +08:00
|
|
|
if (args.argc() > 1)
|
|
|
|
{
|
|
|
|
settings.fontFilename = argv[1];
|
2017-08-29 20:48:06 +08:00
|
|
|
|
2017-08-30 17:16:18 +08:00
|
|
|
// Create the list of desired sizes.
|
|
|
|
for(int i = 2; i < args.argc(); i++)
|
|
|
|
{
|
|
|
|
if(!args.isNumber(i)) continue;
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-30 17:16:18 +08:00
|
|
|
settings.sizes.push_back(std::atoi(args[i]));
|
|
|
|
}
|
|
|
|
}
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-30 17:16:18 +08:00
|
|
|
if (settings.sizes.empty())
|
2010-03-19 01:10:48 +08:00
|
|
|
{
|
2017-08-30 17:16:18 +08:00
|
|
|
settings.sizes.push_back(8);
|
|
|
|
settings.sizes.push_back(16);
|
|
|
|
settings.sizes.push_back(32);
|
|
|
|
settings.sizes.push_back(64);
|
2010-03-19 01:10:48 +08:00
|
|
|
}
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
osg::Geode* geode = new osg::Geode();
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
// Add all of our osgText drawables.
|
2017-08-30 17:16:18 +08:00
|
|
|
for(Sizes::const_iterator i = settings.sizes.begin(); i != settings.sizes.end(); i++)
|
2010-03-19 01:10:48 +08:00
|
|
|
{
|
|
|
|
std::stringstream ss;
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2010-03-19 01:10:48 +08:00
|
|
|
ss << *i << " 1234567890 abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
geode->addDrawable(createLabel(ss.str(), settings, *i));
|
2010-03-19 01:10:48 +08:00
|
|
|
}
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-29 20:48:06 +08:00
|
|
|
root->addChild(geode);
|
2008-05-07 21:46:24 +08:00
|
|
|
|
2017-08-30 00:19:26 +08:00
|
|
|
std::string filename;
|
|
|
|
if (args.read("-o", filename))
|
|
|
|
{
|
|
|
|
osgDB::writeNodeFile(*root, filename);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-08-29 20:48:06 +08:00
|
|
|
viewer.setSceneData(root.get());
|
2010-03-19 01:10:48 +08:00
|
|
|
|
|
|
|
return viewer.run();
|
2008-05-07 21:46:24 +08:00
|
|
|
}
|
2009-02-08 23:56:35 +08:00
|
|
|
|