[BACK]Return to textomatic.c++ CVS log [TXT][DIR] Up to [Development] / inventor / apps / demos / textomatic

File: [Development] / inventor / apps / demos / textomatic / textomatic.c++ (download)

Revision 1.7, Fri Jul 11 22:40:53 2003 UTC (14 years, 3 months ago) by jlim
Branch: MAIN
CVS Tags: release-2_1_5-10, HEAD
Changes since 1.6: +9 -1 lines

Various changes to support Apple Darwin (Mac OS X), provided by Chris Scharver.

/*
 *
 *  Copyright (C) 2000 Silicon Graphics, Inc.  All Rights Reserved. 
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  Further, this software is distributed without any warranty that it is
 *  free of the rightful claim of any third person regarding infringement
 *  or the like.  Any license provided herein, whether implied or
 *  otherwise, applies only to this software file.  Patent licenses, if
 *  any, provided herein do not apply to combinations of this program with
 *  other software, or any other product whatsoever.
 * 
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *  Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
 *  Mountain View, CA  94043, or:
 * 
 *  http://www.sgi.com 
 * 
 *  For further information regarding this notice, see: 
 * 
 *  http://oss.sgi.com/projects/GenInfo/NoticeExplan/
 *
 */

//
// Main stuff for 3D text creator program
//
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <iconv.h>
#ifdef __APPLE__
#include <libcharset.h>
#else
#include <nl_types.h>
#include <langinfo.h>
#endif
#include <Inventor/Xt/SoXt.h>
#include <Inventor/SoDB.h>
#include <Inventor/Xt/SoXtRenderArea.h>
#include <Inventor/Xt/viewers/SoXtExaminerViewer.h>
#include <Inventor/nodes/SoCallback.h>
#include <Inventor/nodes/SoCoordinate3.h>
#include <Inventor/nodes/SoFont.h>
#include <Inventor/nodes/SoLinearProfile.h>
#include <Inventor/nodes/SoLightModel.h>
#include <Inventor/nodes/SoMaterial.h>
#include <Inventor/nodes/SoOrthographicCamera.h>
#include <Inventor/nodes/SoProfileCoordinate2.h>
#include <Inventor/nodes/SoSeparator.h>
#include <Inventor/nodes/SoText3.h>
#include <Inventor/sensors/SoSensor.h>

#include <Xm/XmAll.h>
#include <locale.h>

#include "../../samples/common/InventorLogo.h"
#include "../../samples/common/LineManip.h"
#include "./TextGraph.h"
#include "../../samples/common/Useful.h"
#include "./labels.h"

//
// Some evil variables global to this file.  I should pass them around
// as paramaters or encapsulate them in a class, but this is easier.
// Especially since so much occurs in response to Xt callbacks, and
// passing arguments to a callback function means wrapping them all up
// in a structure and passing a pointer to that structure (which is a
// pain!).
//
static const char *DefaultString =
        "Open Inventor -\n3D Programming\nFor Humans";
static LineManip2 *manip;

// utf8-ucs2
iconv_t global_iconvCodeL2;
iconv_t global_iconvCode28;

// Default resources...
XtResource resintl[] = {
  { "copyLabel",       "CopyLabel",       XtRString,  sizeof(String),
    XtOffsetOf(Labels,copy),              XtRString, (XtPointer) "Copy"
  },
  { "edit parts",      "Edit Parts",      XtRString,  sizeof(String),
    XtOffsetOf(Labels,editParts),         XtRString, (XtPointer) "Edit Parts"
  },
  { "aboutLabel",      "AboutLabel",      XtRString,  sizeof(String),
    XtOffsetOf(Labels,about),             XtRString, (XtPointer) "About..."
  },
  { "quitLabel",       "QuitLabel",       XtRString,  sizeof(String),
    XtOffsetOf(Labels,quit),              XtRString, (XtPointer) "Quit"
  },
  { "soFontList",      "SoFontList",      XtRString,  sizeof(String),
    XtOffsetOf(Labels,sofontlist),        XtRString, (XtPointer) "Times-Roman"
  },
  { "front",           "Front",           XtRString,  sizeof(String),
    XtOffsetOf(Labels,front),             XtRString, (XtPointer) "Front:"
  },
  { "sides",           "Sides",           XtRString,  sizeof(String),
    XtOffsetOf(Labels,sides),             XtRString, (XtPointer) "Sides:"
  },
  { "back",            "Back",            XtRString,  sizeof(String),
    XtOffsetOf(Labels,back),              XtRString, (XtPointer) "Back:"
  },
  { "on",              "On",              XtRString,  sizeof(String),
    XtOffsetOf(Labels,on),                XtRString, (XtPointer) "On"
  },
  { "edit",            "Edit",            XtRString,  sizeof(String),
    XtOffsetOf(Labels,edit),              XtRString, (XtPointer) "Edit"
  }
};
int num_resintl = XtNumber( resintl );



//
// This is called whenever the profile's coordinates change.  It has
// to change the profileCoordinate node which defines the text's
// extrusion.
//
static void
profileCallback(void *data, SoSensor *)
{
    SoCoordinate3 *coord = (SoCoordinate3 *)data;

    int n = coord->point.getNum();

    if (n == 0) return;

    // Update the profile node
    const SbVec3f *v = coord->point.getValues(0);

    SbVec2f *newV = new SbVec2f[n];
    for (int i = 0; i < n; i++) {
	newV[i].setValue(coord->point[i][0], coord->point[i][1]);
	profile->index.set1Value(i, i);
    }
    profileCoords->point.setValues(0, n, newV);
    profileCoords->point.deleteValues(n);  // Get rid of any extra
    profile->index.deleteValues(n);

    delete[] newV;
}
//
// Callback for 'About...' button
//
void
showAboutDialog(Widget, XtPointer, XtPointer)
{
    if (access(IVPREFIX "/demos/Inventor/textomatic.about", R_OK) != 0)
    {
	system("xmessage 'Sorry, could not find "
	       IVPREFIX "/demos/Inventor/textomatic.about' > /dev/null");
	return;
    }

    char command[100];
    sprintf(command, "which acroread > /dev/null");

    int err = system(command);
    if (err) {
	system("xmessage 'You must install acroread"
	       " for this function to work' > /dev/null");
	return;
    }

    sprintf(command, "acroread " IVPREFIX "/demos/Inventor/textomatic.about &");
    system(command);
}	

//
// Called by the quit button
//
static void
quitCallback(Widget, XtPointer, XtPointer)
{
    iconv_close( global_iconvCodeL2 );
    iconv_close( global_iconvCode28 );
    exit(0);
}

//
// These two are used to turn off/on render caching as the cursor
// enters/leaves the profile window.  Caching while editing the
// profile is stupid, since the cache is always wrong (the geometry
// changes).
//
void
enterProfileWindow(Widget, XtPointer, XEvent *, Boolean *cont)
{
    setTextCaching(FALSE);

    *cont = TRUE;	// Continue dispatching this event
}
void
leaveProfileWindow(Widget, XtPointer, XEvent *, Boolean *cont)
{
    setTextCaching(TRUE);
    manip->removeHilights();

    *cont = TRUE;	// Continue dispatching this event
}

//
// The default profile
//
static float
defaultCoords[2][3] =
{
    { -0.2, 0.0, 0.0 },
    {  0.2, 0.0, 0.0 },
};
//
// Grid for window:
//
static char *GridString =
"#Inventor V2.0 ascii\n"
"Separator {"
"	PickStyle { style UNPICKABLE }"
"	LightModel { model BASE_COLOR }"
"	BaseColor { rgb 0.2 0.2 0.2 }"
"	Array {"
"		numElements1 7"
"		separation1 .1 0 0"
"		origin CENTER"
"		Coordinate3 { point [ 0 -1 0, 0 1 0 ] }"
"		LineSet { numVertices [ 2 ] }"
"	}"
"	Array {"
"		numElements1 7"
"		separation1 0 .1 0"
"		origin CENTER"
"		Coordinate3 { point [ -1 0 0, 1 0 0 ] }"
"		LineSet { numVertices [ 2 ] }"
"	}"
"	BaseColor { rgb 0.4 0.0 0.0 }"
"	Coordinate3 { point [ -1.0 0.0 0.0, 1.0 0.0 0.0,"
"			0.0 -1.0 0.0, 0.0 1.0 0.0 ]"
"	}"
"	LineSet { numVertices [ 2, 2 ] }"
"	BaseColor { rgb 0.3 0.3 0.3 }"
"	Transform {"
"		scaleFactor 0.025 0.025 0.025"
"		translation 0.0 -0.06 0.0"
"	}"
"	Font {"
"		size 2"
"		name \"Helvetica\""
"	}"
"	Array {"
"		numElements1 2"
"		separation1 20 0 0"
"		origin CENTER"
"		DEF switch Switch {"
"			whichChild -2"
"		Text3 { string \"Front\" justification LEFT parts FRONT }"
"		Text3 { string \"Back\" justification RIGHT parts FRONT }"
"		}"
"	}"
"}";

//
// Routine that creates the scene graph in the render area at the
// bottom of the window (where the text extrusion profile is defined).
//
SoSeparator *
createProfileSceneGraph()
{
    SoSeparator *root = new SoSeparator;
    root->ref();

    SoOrthographicCamera *c = new SoOrthographicCamera;
    c->nearDistance = 0.5;
    c->height = 0.4;
    c->aspectRatio = 4.0/3.0;
    root->addChild(c);

    SoLightModel *lm = new SoLightModel;
    lm->model = SoLightModel::BASE_COLOR;
    root->addChild(lm);

    // Axes and labels group
    SoInput in;
    in.setBuffer(GridString, strlen(GridString));
    SoNode *node;	
    SoDB::read(&in, node);
    SoSeparator *g1 = (SoSeparator *)node;
    if (g1 != NULL)
    {
	root->addChild(g1);
        g1->renderCaching = SoSeparator::ON;
        g1->boundingBoxCaching = SoSeparator::ON;
    }

    // Line manipulator group

    SoMaterial *m = new SoMaterial;
    m->diffuseColor.setValue(0.0, 0.8, 0.8);
    root->addChild(m);

    manip = new LineManip2;
    manip->setHilightSize(0.01);
    root->addChild(manip);

    SoCoordinate3 *coord = manip->getCoordinate3();
    SoNodeSensor *d = new SoNodeSensor(profileCallback, coord);
    d->attach(coord);
    coord->point.setValues(0, 2, defaultCoords);

    // Also initialize the profile to be the same in the main scene
    SbVec2f *defaultProfile = new SbVec2f[2];
    for (int i = 0; i < 2; i++) {
        defaultProfile[i].setValue(defaultCoords[i][0], defaultCoords[i][1]);
        profile->index.set1Value(i, i);
    }
    profileCoords->point.setValues(0, 2, defaultProfile);
    delete[] defaultProfile;

    root->unrefNoDelete();

    return root;
}


////////////////////////////////////////////////////////////////////////
//
//  Draw the Inventor logo in the overlays.
//
////////////////////////////////////////////////////////////////////////

static void
logoCB(void *, SoAction *action)
{
    if (action->isOfType(SoGLRenderAction::getClassTypeId()))
        glViewport(0, 0, 80, 80);    // See Dave Mott for details!
}
static void
setOverlayLogo(SoXtRenderArea *ra)
{
    static SoSeparator *logo = NULL;
    if (logo == NULL) {
        SoInput in;
        in.setBuffer((void *)ivLogo, ivLogoSize);
        logo = SoDB::readAll(&in);
        logo->ref();
        SoCallback *cb = new SoCallback; // sets GL viewport
        cb->setCallback(logoCB);
        logo->insertChild(cb, 0);
    }
    SbColor col(1, 1, 1);
    ra->setOverlayColorMap(1, 1, &col);
    ra->setOverlaySceneGraph(logo);
}


static String _myXtDefaultLanguageProc(Display *, String xnl, XtPointer)
{
    if (! setlocale(LC_ALL, xnl))
        XtWarning("locale not supported by C library, locale unchanged");
    
    if (! XSupportsLocale()) {
        XtWarning("locale not supported by Xlib, locale set to C");
        setlocale(LC_ALL, "C");
    }
    if (! XSetLocaleModifiers(""))
        XtWarning("X locale modifiers not supported, using default");

    setlocale(LC_NUMERIC, "C");
    
    return setlocale(LC_CTYPE, NULL);
}

//////////////////////////////////////////////////////////////////////
//  -------------------
//  |                 |
//  |                 |
//  |      Main       |
//  |                 |
//  |                 |
//  |                 |
//  -------------------  <- MainHeight
//  |But-|Bevel  |Text|
//  | ton|       |    |
//  -------------------
//       ^       ^
//       Vert1   Vert2
//
////////////////////////////////////////////////////////////////////

// constants that define the UI layout
const int MainHeight = 79;
const int Vert1 = 20;
const int Vert2 = 60;
Labels labels;        // Global variable.

int
main(int argc, char **argv)
{
    XtSetLanguageProc( NULL, _myXtDefaultLanguageProc, NULL );

    Widget w = SoXt::init(argv[0],"Textomatic");
    if (w == NULL) exit(1);

#ifdef __APPLE__
    const char *nl_encord = locale_charset();
#else
    const char *nl_encord = (const char *) nl_langinfo( CODESET );
#endif
    if ( (global_iconvCodeL2 = iconv_open( "UCS-2", nl_encord ))==(iconv_t)-1 ) {
           fprintf( stderr, "textomatic: iconv_open error.\n" );
    }
    if ( (global_iconvCode28 = iconv_open( "UTF-8", "UCS-2" ))==(iconv_t)-1 ) {
           fprintf( stderr, "textomatic: iconv_open error.\n" );
    }

    XtGetApplicationResources( SoXt::getTopLevelWidget(), &labels, 
                               resintl, num_resintl, NULL, 0 );

    LineManip2::initClass();

    Arg resources[20];

    int n = 0;
    XtSetArg(resources[n], "width", 620); n++;
    XtSetArg(resources[n], "height", 620); n++;
    Widget form = XmCreateForm(w, "form", resources, n); n = 0;

    //
    // There are two 'tab groups' because keyboard focus must go to
    // either the text type-in, or to the profile render area (which
    // will respond to backspace-key events by deleting the last point
    // added).
    //
    XmAddTabGroup(form);

    SoXtExaminerViewer *examViewer = new SoXtExaminerViewer(form);
    examViewer->setSceneGraph(createTextSceneGraph());
    examViewer->setDecoration(FALSE);
    examViewer->setBorder(TRUE);
    examViewer->setFeedbackVisibility(FALSE);
    XtSetArg(resources[n], XmNtopAttachment, XmATTACH_FORM); n++;
    XtSetArg(resources[n], XmNleftAttachment, XmATTACH_FORM); n++;
    XtSetArg(resources[n], XmNrightAttachment, XmATTACH_FORM); n++;
    XtSetArg(resources[n], XmNbottomAttachment, XmATTACH_POSITION); n++;
    XtSetArg(resources[n], XmNbottomPosition, MainHeight); n++;
    XtSetValues(examViewer->getWidget(), resources, n); n = 0;
    setOverlayLogo( examViewer );    // Add Inventor logo to overlays
    examViewer->show();

    SoXtRenderArea *profile = new SoXtRenderArea(form);
    profile->setSceneGraph(createProfileSceneGraph());
    profile->setBorder(TRUE);
    XtSetArg(resources[n], XmNtopAttachment, XmATTACH_POSITION); n++;
    XtSetArg(resources[n], XmNtopPosition, MainHeight); n++;
    XtSetArg(resources[n], XmNleftAttachment, XmATTACH_POSITION); n++;
    XtSetArg(resources[n], XmNleftPosition, Vert1); n++;
    XtSetArg(resources[n], XmNrightAttachment, XmATTACH_POSITION); n++;
    XtSetArg(resources[n], XmNrightPosition, Vert2); n++;
    XtSetArg(resources[n], XmNbottomAttachment, XmATTACH_FORM); n++;
    XtSetArg(resources[n], XmNtraversalOn, TRUE); n++;
    XtSetValues(profile->getWidget(), resources, n); n = 0;
    XtAddEventHandler(profile->getWidget(), EnterWindowMask,
		      FALSE, enterProfileWindow, NULL);
    XtAddEventHandler(profile->getWidget(), LeaveWindowMask,
		      FALSE, leaveProfileWindow, NULL);
    profile->show();

    XtSetArg(resources[n], XmNvalue, DefaultString); ++n;
    XtSetArg(resources[n], XmNeditMode, XmMULTI_LINE_EDIT); ++n;
    XtSetArg(resources[n], XmNwordWrap, TRUE); ++n;
    XtSetArg(resources[n], XmNscrollHorizontal, FALSE); ++n;
    XtSetArg(resources[n], XmNtopAttachment, XmATTACH_POSITION); ++n;
    XtSetArg(resources[n], XmNtopPosition, MainHeight); ++n;
    XtSetArg(resources[n], XmNleftAttachment, XmATTACH_POSITION); ++n;
    XtSetArg(resources[n], XmNleftPosition, Vert2); ++n;
    XtSetArg(resources[n], XmNrightAttachment, XmATTACH_FORM); ++n;
    XtSetArg(resources[n], XmNbottomAttachment, XmATTACH_FORM); ++n;
    Widget textEdit = XmCreateScrolledText(form, "textEdit",
			    resources, n); n = 0;
    XtAddCallback(textEdit, XmNactivateCallback,
		  updateText, (XtPointer)textEdit);
    XtAddCallback(textEdit, XmNvalueChangedCallback,
		  delayUpdateText, (XtPointer)textEdit);
    XtManageChild(textEdit);
    updateText(textEdit, (XtPointer)textEdit, NULL);

    XtSetArg(resources[n], XmNnumColumns, 1); ++n;
    XtSetArg(resources[n], XmNorientation, XmVERTICAL); ++n;
    XtSetArg(resources[n], XmNpacking, XmPACK_COLUMN); ++n;
    XtSetArg(resources[n], XmNadjustLast, FALSE); ++n;
    XtSetArg(resources[n], XmNleftAttachment, XmATTACH_FORM); ++n;
    XtSetArg(resources[n], XmNrightAttachment, XmATTACH_POSITION); ++n;
    XtSetArg(resources[n], XmNrightPosition, Vert1); ++n;
    XtSetArg(resources[n], XmNbottomAttachment, XmATTACH_FORM); ++n;
    XtSetArg(resources[n], XmNbottomOffset, 2); ++n;
    XtSetArg(resources[n], XmNspacing, 0); ++n;
    XtSetArg(resources[n], XmNmarginHeight, 0); ++n;
    XtSetArg(resources[n], XmNmarginWidth, 17); ++n;
    Widget rc = XmCreateRowColumn(form, "buttons", resources, n);
    n = 0;

#define STRING(a) XmStringCreateLocalized(a)

    XtSetArg(resources[n], XmNlabelString, STRING(labels.copy)); ++n;
    Widget copyButton = XmCreatePushButtonGadget(rc, "copyButton",
					   resources, n); n = 0;
    XtAddCallback(copyButton, XmNactivateCallback,
		  copyText, (XtPointer)rc);
    XtManageChild(copyButton);

    XtSetArg(resources[n], XmNlabelString, STRING(labels.editParts)); ++n;
    Widget editButton = XmCreatePushButtonGadget(rc, "editButton",
					   resources, n); n = 0;
    XtAddCallback(editButton, XmNactivateCallback,
		  createPartEditor, (XtPointer)rc);
    XtManageChild(editButton);

    XtSetArg(resources[n], XmNlabelString, STRING(labels.about)); ++n;
    Widget aboutButton = XmCreatePushButtonGadget(rc, "about",
						  resources, n); n = 0;
    XtAddCallback(aboutButton, XmNactivateCallback,
		  showAboutDialog, NULL);
    XtManageChild(aboutButton);

    XtSetArg(resources[n], XmNlabelString, STRING(labels.quit)); ++n;
    Widget quitButton = XmCreatePushButtonGadget(rc, "quitButton",
					   resources, n); n = 0;
    XtAddCallback(quitButton, XmNactivateCallback,
		  quitCallback, NULL);
    XtManageChild(quitButton);

    XtManageChild(rc);

    XtManageChild(form);

    SoXt::show(w);
    SoXt::mainLoop();
}