Advertisement
Guest User

Untitled

a guest
May 29th, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 12.38 KB | None | 0 0
  1. /*******************************************************************************
  2.  * Copyright 2011 See AUTHORS file.
  3.  *
  4.  * Licensed under the Apache License, Version 2.0 (the "License");
  5.  * you may not use this file except in compliance with the License.
  6.  * You may obtain a copy of the License at
  7.  *
  8.  *   http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  ******************************************************************************/
  16.  
  17. package com.badlogic.gdx.backends.lwjgl;
  18.  
  19. import java.awt.Canvas;
  20. import java.io.File;
  21.  
  22. import com.badlogic.gdx.ApplicationLogger;
  23. import org.lwjgl.LWJGLException;
  24. import org.lwjgl.opengl.Display;
  25.  
  26. import com.badlogic.gdx.Application;
  27. import com.badlogic.gdx.ApplicationListener;
  28. import com.badlogic.gdx.Audio;
  29. import com.badlogic.gdx.Files;
  30. import com.badlogic.gdx.Gdx;
  31. import com.badlogic.gdx.Input;
  32. import com.badlogic.gdx.LifecycleListener;
  33. import com.badlogic.gdx.Net;
  34. import com.badlogic.gdx.Preferences;
  35. import com.badlogic.gdx.backends.lwjgl.audio.OpenALAudio;
  36. import com.badlogic.gdx.utils.Array;
  37. import com.badlogic.gdx.utils.Clipboard;
  38. import com.badlogic.gdx.utils.GdxRuntimeException;
  39. import com.badlogic.gdx.utils.ObjectMap;
  40. import com.badlogic.gdx.utils.SnapshotArray;
  41.  
  42. /** An OpenGL surface fullscreen or in a lightweight window. */
  43. public class LwjglApplication implements Application {
  44.     protected final LwjglGraphics graphics;
  45.     protected OpenALAudio audio;
  46.     protected final LwjglFiles files;
  47.     protected final LwjglInput input;
  48.     protected final LwjglNet net;
  49.     protected final ApplicationListener listener;
  50.     protected Thread mainLoopThread;
  51.     protected boolean running = true;
  52.     protected final Array<Runnable> runnables = new Array<Runnable>();
  53.     protected final Array<Runnable> executedRunnables = new Array<Runnable>();
  54.     protected final SnapshotArray<LifecycleListener> lifecycleListeners = new SnapshotArray<LifecycleListener>(LifecycleListener.class);
  55.     protected int logLevel = LOG_INFO;
  56.     protected ApplicationLogger applicationLogger;
  57.     protected String preferencesdir;
  58.     protected Files.FileType preferencesFileType;
  59.  
  60.     public LwjglApplication (ApplicationListener listener, String title, int width, int height) {
  61.         this(listener, createConfig(title, width, height));
  62.     }
  63.  
  64.     public LwjglApplication (ApplicationListener listener) {
  65.         this(listener, null, 640, 480);
  66.     }
  67.  
  68.     public LwjglApplication (ApplicationListener listener, LwjglApplicationConfiguration config) {
  69.         this(listener, config, new LwjglGraphics(config));
  70.     }
  71.  
  72.     public LwjglApplication (ApplicationListener listener, Canvas canvas) {
  73.         this(listener, new LwjglApplicationConfiguration(), new LwjglGraphics(canvas));
  74.     }
  75.  
  76.     public LwjglApplication (ApplicationListener listener, LwjglApplicationConfiguration config, Canvas canvas) {
  77.         this(listener, config, new LwjglGraphics(canvas, config));
  78.     }
  79.  
  80.     public LwjglApplication (ApplicationListener listener, LwjglApplicationConfiguration config, LwjglGraphics graphics) {
  81.         LwjglNativesLoader.load();
  82.         setApplicationLogger(new LwjglApplicationLogger());
  83.  
  84.         if (config.title == null) config.title = listener.getClass().getSimpleName();
  85.         this.graphics = graphics;
  86.         if (!LwjglApplicationConfiguration.disableAudio) {
  87.             try {
  88.                 audio = new OpenALAudio(config.audioDeviceSimultaneousSources, config.audioDeviceBufferCount,
  89.                     config.audioDeviceBufferSize);
  90.             } catch (Throwable t) {
  91.                 log("LwjglApplication", "Couldn't initialize audio, disabling audio", t);
  92.                 LwjglApplicationConfiguration.disableAudio = true;
  93.             }
  94.         }
  95.         files = new LwjglFiles();
  96.         input = new LwjglInput();
  97.         net = new LwjglNet();
  98.         this.listener = listener;
  99.         this.preferencesdir = config.preferencesDirectory;
  100.         this.preferencesFileType = config.preferencesFileType;
  101.  
  102.         Gdx.app = this;
  103.         Gdx.graphics = graphics;
  104.         Gdx.audio = audio;
  105.         Gdx.files = files;
  106.         Gdx.input = input;
  107.         Gdx.net = net;
  108.         initialize();
  109.     }
  110.  
  111.     private static LwjglApplicationConfiguration createConfig (String title, int width, int height) {
  112.         LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
  113.         config.title = title;
  114.         config.width = width;
  115.         config.height = height;
  116.         config.vSyncEnabled = true;
  117.         return config;
  118.     }
  119.  
  120.     private void initialize () {
  121.         mainLoopThread = new Thread("LWJGL Application") {
  122.             @Override
  123.             public void run () {
  124.                 graphics.setVSync(graphics.config.vSyncEnabled);
  125.                 try {
  126.                     LwjglApplication.this.mainLoop();
  127.                 } catch (Throwable t) {
  128.                     if (audio != null) audio.dispose();
  129.                     Gdx.input.setCursorCatched(false);
  130.                     if (t instanceof RuntimeException)
  131.                         throw (RuntimeException)t;
  132.                     else
  133.                         throw new GdxRuntimeException(t);
  134.                 }
  135.             }
  136.         };
  137.         mainLoopThread.start();
  138.     }
  139.  
  140.     void mainLoop () {
  141.         SnapshotArray<LifecycleListener> lifecycleListeners = this.lifecycleListeners;
  142.  
  143.         try {
  144.             graphics.setupDisplay();
  145.         } catch (LWJGLException e) {
  146.             throw new GdxRuntimeException(e);
  147.         }
  148.  
  149.         listener.create();
  150.         graphics.resize = true;
  151.  
  152.         int lastWidth = graphics.getWidth();
  153.         int lastHeight = graphics.getHeight();
  154.  
  155.         graphics.lastTime = System.nanoTime();
  156.         boolean wasActive = true;
  157.         while (running) {
  158.             Display.processMessages();
  159.             if (Display.isCloseRequested()) exit();
  160.  
  161.             boolean isActive = Display.isActive();
  162.             if (wasActive && !isActive) { // if it's just recently minimized from active state
  163.                 wasActive = false;
  164.                 synchronized (lifecycleListeners) {
  165.                     LifecycleListener[] listeners = lifecycleListeners.begin();
  166.                     for (int i = 0, n = lifecycleListeners.size; i < n; ++i)
  167.                          listeners[i].pause();
  168.                     lifecycleListeners.end();
  169.                 }
  170.                 listener.pause();
  171.             }
  172.             if (!wasActive && isActive) { // if it's just recently focused from minimized state
  173.                 wasActive = true;
  174.                 synchronized (lifecycleListeners) {
  175.                     LifecycleListener[] listeners = lifecycleListeners.begin();
  176.                     for (int i = 0, n = lifecycleListeners.size; i < n; ++i)
  177.                         listeners[i].resume();
  178.                     lifecycleListeners.end();
  179.                 }
  180.                 listener.resume();
  181.             }
  182.  
  183.             boolean shouldRender = false;
  184.  
  185.             if (graphics.canvas != null) {
  186.                 int width = graphics.canvas.getWidth();
  187.                 int height = graphics.canvas.getHeight();
  188.                 if (lastWidth != width || lastHeight != height) {
  189.                     lastWidth = width;
  190.                     lastHeight = height;
  191.                     Gdx.gl.glViewport(0, 0, lastWidth, lastHeight);
  192.                     listener.resize(lastWidth, lastHeight);
  193.                     shouldRender = true;
  194.                 }
  195.             } else {
  196.                 graphics.config.x = Display.getX();
  197.                 graphics.config.y = Display.getY();
  198.                 if (graphics.resize || Display.wasResized()
  199.                     || (int)(Display.getWidth() * Display.getPixelScaleFactor()) != graphics.config.width
  200.                     || (int)(Display.getHeight() * Display.getPixelScaleFactor()) != graphics.config.height) {
  201.                     graphics.resize = false;
  202.                     graphics.config.width = (int)(Display.getWidth() * Display.getPixelScaleFactor());
  203.                     graphics.config.height = (int)(Display.getHeight() * Display.getPixelScaleFactor());
  204.                     Gdx.gl.glViewport(0, 0, graphics.config.width, graphics.config.height);
  205.                     if (listener != null) listener.resize(graphics.config.width, graphics.config.height);
  206.                     graphics.requestRendering();
  207.                 }
  208.             }
  209.  
  210.             if (executeRunnables()) shouldRender = true;
  211.  
  212.             // If one of the runnables set running to false, for example after an exit().
  213.             if (!running) break;
  214.  
  215.             input.update();
  216.             shouldRender |= graphics.shouldRender();
  217.             input.processEvents();
  218.             if (audio != null) audio.update();
  219.  
  220.             if (!isActive && graphics.config.backgroundFPS == -1) shouldRender = false;
  221.             int frameRate = isActive ? graphics.config.foregroundFPS : graphics.config.backgroundFPS;
  222.             if (shouldRender) {
  223.                 graphics.updateTime();
  224.                 graphics.frameId++;
  225.                 listener.render();
  226.                 Display.update(false);
  227.             } else {
  228.                 // Sleeps to avoid wasting CPU in an empty loop.
  229.                 if (frameRate == -1) frameRate = 10;
  230.                 if (frameRate == 0) frameRate = graphics.config.backgroundFPS;
  231.                 if (frameRate == 0) frameRate = 30;
  232.             }
  233.             if (frameRate > 0) Display.sync(frameRate);
  234.         }
  235.  
  236.         synchronized (lifecycleListeners) {
  237.             LifecycleListener[] listeners = lifecycleListeners.begin();
  238.             for (int i = 0, n = lifecycleListeners.size; i < n; ++i) {
  239.                 listeners[i].pause();
  240.                 listeners[i].dispose();
  241.             }
  242.             lifecycleListeners.end();
  243.         }
  244.         listener.pause();
  245.         listener.dispose();
  246.         Display.destroy();
  247.         if (audio != null) audio.dispose();
  248.         if (graphics.config.forceExit) System.exit(-1);
  249.     }
  250.  
  251.     public boolean executeRunnables () {
  252.         synchronized (runnables) {
  253.             for (int i = runnables.size - 1; i >= 0; i--)
  254.                 executedRunnables.add(runnables.get(i));
  255.             runnables.clear();
  256.         }
  257.         if (executedRunnables.size == 0) return false;
  258.         do
  259.             executedRunnables.pop().run();
  260.         while (executedRunnables.size > 0);
  261.         return true;
  262.     }
  263.  
  264.     @Override
  265.     public ApplicationListener getApplicationListener () {
  266.         return listener;
  267.     }
  268.  
  269.     @Override
  270.     public Audio getAudio () {
  271.         return audio;
  272.     }
  273.  
  274.     @Override
  275.     public Files getFiles () {
  276.         return files;
  277.     }
  278.  
  279.     @Override
  280.     public LwjglGraphics getGraphics () {
  281.         return graphics;
  282.     }
  283.  
  284.     @Override
  285.     public Input getInput () {
  286.         return input;
  287.     }
  288.  
  289.     @Override
  290.     public Net getNet () {
  291.         return net;
  292.     }
  293.  
  294.     @Override
  295.     public ApplicationType getType () {
  296.         return ApplicationType.Desktop;
  297.     }
  298.  
  299.     @Override
  300.     public int getVersion () {
  301.         return 0;
  302.     }
  303.  
  304.     public void stop () {
  305.         running = false;
  306.         try {
  307.             mainLoopThread.join();
  308.         } catch (Exception ex) {
  309.         }
  310.     }
  311.  
  312.     @Override
  313.     public long getJavaHeap () {
  314.         return Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory();
  315.     }
  316.  
  317.     @Override
  318.     public long getNativeHeap () {
  319.         return getJavaHeap();
  320.     }
  321.  
  322.     ObjectMap<String, Preferences> preferences = new ObjectMap<String, Preferences>();
  323.  
  324.     @Override
  325.     public Preferences getPreferences (String name) {
  326.         if (preferences.containsKey(name)) {
  327.             return preferences.get(name);
  328.         } else {
  329.             Preferences prefs = new LwjglPreferences(new LwjglFileHandle(new File(preferencesdir, name), preferencesFileType));
  330.             preferences.put(name, prefs);
  331.             return prefs;
  332.         }
  333.     }
  334.  
  335.     @Override
  336.     public Clipboard getClipboard () {
  337.         return new LwjglClipboard();
  338.     }
  339.  
  340.     @Override
  341.     public void postRunnable (Runnable runnable) {
  342.         synchronized (runnables) {
  343.             runnables.add(runnable);
  344.             Gdx.graphics.requestRendering();
  345.         }
  346.     }
  347.  
  348.     @Override
  349.     public void debug (String tag, String message) {
  350.         if (logLevel >= LOG_DEBUG) getApplicationLogger().debug(tag, message);
  351.     }
  352.  
  353.     @Override
  354.     public void debug (String tag, String message, Throwable exception) {
  355.         if (logLevel >= LOG_DEBUG) getApplicationLogger().debug(tag, message, exception);
  356.     }
  357.  
  358.     @Override
  359.     public void log (String tag, String message) {
  360.         if (logLevel >= LOG_INFO) getApplicationLogger().log(tag, message);
  361.     }
  362.  
  363.     @Override
  364.     public void log (String tag, String message, Throwable exception) {
  365.         if (logLevel >= LOG_INFO) getApplicationLogger().log(tag, message, exception);
  366.     }
  367.  
  368.     @Override
  369.     public void error (String tag, String message) {
  370.         if (logLevel >= LOG_ERROR) getApplicationLogger().error(tag, message);
  371.     }
  372.  
  373.     @Override
  374.     public void error (String tag, String message, Throwable exception) {
  375.         if (logLevel >= LOG_ERROR) getApplicationLogger().error(tag, message, exception);
  376.     }
  377.  
  378.     @Override
  379.     public void setLogLevel (int logLevel) {
  380.         this.logLevel = logLevel;
  381.     }
  382.  
  383.     @Override
  384.     public int getLogLevel () {
  385.         return logLevel;
  386.     }
  387.  
  388.     @Override
  389.     public void setApplicationLogger (ApplicationLogger applicationLogger) {
  390.         this.applicationLogger = applicationLogger;
  391.     }
  392.  
  393.     @Override
  394.     public ApplicationLogger getApplicationLogger () {
  395.         return applicationLogger;
  396.     }
  397.  
  398.  
  399.     @Override
  400.     public void exit () {
  401.         postRunnable(new Runnable() {
  402.             @Override
  403.             public void run () {
  404.                 running = false;
  405.             }
  406.         });
  407.     }
  408.  
  409.     @Override
  410.     public void addLifecycleListener (LifecycleListener listener) {
  411.         synchronized (lifecycleListeners) {
  412.             lifecycleListeners.add(listener);
  413.         }
  414.     }
  415.  
  416.     @Override
  417.     public void removeLifecycleListener (LifecycleListener listener) {
  418.         synchronized (lifecycleListeners) {
  419.             lifecycleListeners.removeValue(listener, true);
  420.         }
  421.     }
  422. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement