All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.threerings.miso.tools.xml.SparseMisoSceneParser Maven / Gradle / Ivy

The newest version!
//
// Nenya library - tools for developing networked games
// Copyright (C) 2002-2012 Three Rings Design, Inc., All Rights Reserved
// https://github.com/threerings/nenya
//
// 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.
//
// 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

package com.threerings.miso.tools.xml;

import java.io.FileInputStream;
import java.io.IOException;

import org.xml.sax.SAXException;

import org.apache.commons.digester.Digester;

import com.samskivert.io.StreamUtil;
import com.samskivert.util.StringUtil;

import com.threerings.miso.data.SparseMisoSceneModel;

/**
 * A simple class for parsing simple miso scene models.
 */
public class SparseMisoSceneParser
{
    /**
     * Constructs a scene parser that parses scenes with the specified XML
     * path prefix.
     */
    public SparseMisoSceneParser (String prefix)
    {
        // create and configure our digester
        _digester = new Digester();

        // create our scene rule set
        SparseMisoSceneRuleSet set = new SparseMisoSceneRuleSet();

        // configure our top-level path prefix
        if (StringUtil.isBlank(prefix)) {
            _prefix = set.getOuterElement();
        } else {
            _prefix = prefix + "/" + set.getOuterElement();
        }

        // add the scene rules
        set.addRuleInstances(_prefix, _digester);

        // add a rule to grab the finished scene model
        _digester.addSetNext(
            _prefix, "setScene", SparseMisoSceneModel.class.getName());
    }

    /**
     * Parses the XML file at the specified path into a scene model
     * instance.
     */
    public SparseMisoSceneModel parseScene (String path)
        throws IOException, SAXException
    {
        _model = null;
        _digester.push(this);
        FileInputStream stream = null;
        try {
            stream = new FileInputStream(path);
            _digester.parse(stream);
        } finally {
            StreamUtil.close(stream);
        }
        return _model;
    }

    /**
     * Called by the parser once the scene is parsed.
     */
    public void setScene (SparseMisoSceneModel model)
    {
        _model = model;
    }

    protected String _prefix;
    protected Digester _digester;
    protected SparseMisoSceneModel _model;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy