jme3utilities.ui.ActionAppState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jme3-utilities-ui Show documentation
Show all versions of jme3-utilities-ui Show documentation
A user-interface library for jMonkeyEngine.
The newest version!
/*
Copyright (c) 2014-2021, Stephen Gold
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its contributors
may be used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package jme3utilities.ui;
import com.jme3.app.Application;
import com.jme3.app.state.AppStateManager;
import java.util.logging.Logger;
import jme3utilities.SimpleAppState;
/**
* A SimpleAppState with protected fields analogous to the private fields of
* ActionApplication.
*
* @author Stephen Gold [email protected]
*/
public class ActionAppState extends SimpleAppState {
// *************************************************************************
// constants
/**
* message logger for this class
*/
final private static Logger logger
= Logger.getLogger(ActionAppState.class.getName());
// *************************************************************************
// fields
/**
* action application instance: set by initialize() TODO privatize
*/
protected ActionApplication actionApplication;
/**
* signal tracker: set by initialize() TODO privatize
*/
protected Signals signals = null;
// *************************************************************************
// constructor
/**
* Instantiate an uninitialized state.
*
* @param enabled true → enabled, false → disabled
*/
public ActionAppState(boolean enabled) {
super(enabled);
}
// *************************************************************************
// SimpleAppState methods
/**
* Initialize this AppState on the first update after it gets attached.
*
* @param sm application's state manager (not null)
* @param app application which owns this state (not null)
*/
@Override
public void initialize(AppStateManager sm, Application app) {
if (!(app instanceof ActionApplication)) {
throw new IllegalArgumentException(
"application should be an ActionApplication");
}
super.initialize(sm, app);
actionApplication = (ActionApplication) app;
signals = actionApplication.getSignals();
assert signals != null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy