mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-02-16 10:30:47 +00:00
-new controller listener to be a singleton thread that listens for controller input even when not streaming, then sends input when streaming.\ -main frame will stop controller listener when closing -gamepads should now use the gamepad config settings (WIP)
133 lines
3.6 KiB
Java
133 lines
3.6 KiB
Java
package com.limelight;
|
|
|
|
import javax.swing.JFrame;
|
|
import javax.swing.JOptionPane;
|
|
import javax.swing.UIManager;
|
|
|
|
import com.limelight.binding.PlatformBinding;
|
|
import com.limelight.gui.MainFrame;
|
|
import com.limelight.gui.StreamFrame;
|
|
import com.limelight.input.ControllerListener;
|
|
import com.limelight.nvstream.NvConnection;
|
|
import com.limelight.nvstream.NvConnectionListener;
|
|
import com.limelight.nvstream.StreamConfiguration;
|
|
import com.limelight.nvstream.av.video.VideoDecoderRenderer;
|
|
|
|
public class Limelight implements NvConnectionListener {
|
|
public static final double VERSION = 1.0;
|
|
|
|
private String host;
|
|
private StreamFrame streamFrame;
|
|
private NvConnection conn;
|
|
private boolean connectionFailed;
|
|
private static JFrame limeFrame;
|
|
private StreamConfiguration streamConfig = new StreamConfiguration(1280, 720, 30);
|
|
|
|
public Limelight(String host) {
|
|
this.host = host;
|
|
}
|
|
|
|
private void startUp(boolean fullscreen) {
|
|
streamFrame = new StreamFrame();
|
|
conn = new NvConnection(host, this, streamConfig);
|
|
streamFrame.build(conn, streamConfig, fullscreen);
|
|
conn.start(PlatformBinding.getDeviceName(), streamFrame,
|
|
VideoDecoderRenderer.FLAG_PREFER_QUALITY,
|
|
PlatformBinding.getAudioRenderer(),
|
|
PlatformBinding.getVideoDecoderRenderer());
|
|
|
|
}
|
|
|
|
private static void startControllerListener() {
|
|
ControllerListener.startUp();
|
|
}
|
|
|
|
private static void createFrame() {
|
|
MainFrame main = new MainFrame();
|
|
main.build();
|
|
limeFrame = main.getLimeFrame();
|
|
startControllerListener();
|
|
}
|
|
|
|
public static void createInstance(String host, boolean fullscreen) {
|
|
Limelight limelight = new Limelight(host);
|
|
limelight.startUp(fullscreen);
|
|
}
|
|
|
|
public static void main(String args[]) {
|
|
//fix the menu bar if we are running in osx
|
|
if (System.getProperty("os.name").contains("Mac OS X")) {
|
|
// take the menu bar off the jframe
|
|
System.setProperty("apple.laf.useScreenMenuBar", "true");
|
|
|
|
// set the name of the application menu item
|
|
System.setProperty("com.apple.mrj.application.apple.menu.about.name", "Limelight");
|
|
|
|
} else {
|
|
try {
|
|
UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
|
|
} catch (Exception e) {
|
|
System.out.println("Unable to set cross platform look and feel.");
|
|
e.printStackTrace();
|
|
System.exit(2);
|
|
}
|
|
}
|
|
createFrame();
|
|
}
|
|
|
|
@Override
|
|
public void stageStarting(Stage stage) {
|
|
System.out.println("Starting "+stage.getName());
|
|
streamFrame.showSpinner(stage);
|
|
}
|
|
|
|
@Override
|
|
public void stageComplete(Stage stage) {
|
|
}
|
|
|
|
@Override
|
|
public void stageFailed(Stage stage) {
|
|
streamFrame.dispose();
|
|
conn.stop();
|
|
displayError("Connection Error", "Starting " + stage.getName() + " failed");
|
|
}
|
|
|
|
@Override
|
|
public void connectionStarted() {
|
|
streamFrame.hideSpinner();
|
|
ControllerListener.startSendingInput(conn);
|
|
}
|
|
|
|
@Override
|
|
public void connectionTerminated(Exception e) {
|
|
e.printStackTrace();
|
|
if (!connectionFailed) {
|
|
connectionFailed = true;
|
|
|
|
// Kill the connection to the target
|
|
conn.stop();
|
|
|
|
// Spin off a new thread to update the UI since
|
|
// this thread has been interrupted and will terminate
|
|
// shortly
|
|
new Thread(new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
streamFrame.dispose();
|
|
displayError("Connection Terminated", "The connection failed unexpectedly");
|
|
}
|
|
}).start();
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void displayMessage(String message) {
|
|
JOptionPane.showMessageDialog(limeFrame, message, "Limelight", JOptionPane.INFORMATION_MESSAGE);
|
|
}
|
|
|
|
public void displayError(String title, String message) {
|
|
JOptionPane.showMessageDialog(limeFrame, message, title, JOptionPane.ERROR_MESSAGE);
|
|
}
|
|
}
|
|
|