159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta/*
259b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * Copyright (c) 2009-2010 jMonkeyEngine
359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * All rights reserved.
459b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *
559b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * Redistribution and use in source and binary forms, with or without
659b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * modification, are permitted provided that the following conditions are
759b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * met:
859b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *
959b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * * Redistributions of source code must retain the above copyright
1059b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *   notice, this list of conditions and the following disclaimer.
1159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *
1259b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * * Redistributions in binary form must reproduce the above copyright
1359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *   notice, this list of conditions and the following disclaimer in the
1459b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *   documentation and/or other materials provided with the distribution.
1559b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *
1659b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * * Neither the name of 'jMonkeyEngine' nor the names of its contributors
1759b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *   may be used to endorse or promote products derived from this software
1859b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *   without specific prior written permission.
1959b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta *
2059b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2259b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
2459b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
2559b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2659b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
2759b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
2859b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
2959b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3059b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta */
3259b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartapackage jme3test.app;
3359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta
3459b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartaimport com.jme3.app.SimpleApplication;
3559b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartaimport com.jme3.font.BitmapText;
3659b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartaimport com.jme3.system.AppSettings;
3759b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartaimport java.awt.image.BufferedImage;
3859b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartaimport java.io.IOException;
3959b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartaimport java.util.logging.Logger;
4059b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartaimport javax.imageio.ImageIO;
4159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta
4259b2e6871c65f58fdad78cd7229c292f6a177578Scott Bartapublic class TestChangeAppIcon extends SimpleApplication {
4359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta
4459b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta    private static final Logger log=Logger.getLogger(TestChangeAppIcon.class.getName());
4559b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta
4659b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta    public static void main(String[] args) {
4759b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        TestChangeAppIcon app = new TestChangeAppIcon();
4859b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        AppSettings settings = new AppSettings(true);
4959b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta
5059b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        try {
5159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta            Class<TestChangeAppIcon> clazz = TestChangeAppIcon.class;
5259b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta
5359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta            settings.setIcons(new BufferedImage[]{
5459b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta                        ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey256.png")),
5559b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta                        ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey128.png")),
5659b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta                        ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey32.png")),
5759b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta                        ImageIO.read(clazz.getResourceAsStream("/Interface/icons/SmartMonkey16.png")),
5859b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta                    });
5959b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        } catch (IOException e) {
6059b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta            log.log(java.util.logging.Level.WARNING, "Unable to load program icons", e);
6159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        }
6259b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        app.setSettings(settings);
6359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        app.start();
6459b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta    }
6559b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta
6659b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta    @Override
6759b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta    public void simpleInitApp() {
6859b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        // Write text on the screen (HUD)
6959b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        guiNode.detachAllChildren();
7059b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        BitmapText helloText = new BitmapText(guiFont);
7159b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        helloText.setText("The icon of the app should be a smart monkey!");
7259b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        helloText.setLocalTranslation(300, helloText.getLineHeight(), 0);
7359b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta        guiNode.attachChild(helloText);
7459b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta    }
7559b2e6871c65f58fdad78cd7229c292f6a177578Scott Barta}
76