forked from j62/ctbrec
Remove dead / commented code
This commit is contained in:
parent
37f720abc7
commit
4ee7b6ee4d
|
@ -15,7 +15,6 @@ import ctbrec.recorder.Recorder;
|
||||||
import ctbrec.recorder.StreamInfo;
|
import ctbrec.recorder.StreamInfo;
|
||||||
import javafx.animation.FadeTransition;
|
import javafx.animation.FadeTransition;
|
||||||
import javafx.animation.FillTransition;
|
import javafx.animation.FillTransition;
|
||||||
import javafx.animation.Interpolator;
|
|
||||||
import javafx.animation.ParallelTransition;
|
import javafx.animation.ParallelTransition;
|
||||||
import javafx.animation.Transition;
|
import javafx.animation.Transition;
|
||||||
import javafx.application.Platform;
|
import javafx.application.Platform;
|
||||||
|
@ -64,7 +63,6 @@ public class ThumbCell extends StackPane {
|
||||||
private Text resolutionTag;
|
private Text resolutionTag;
|
||||||
private Recorder recorder;
|
private Recorder recorder;
|
||||||
private Circle recordingIndicator;
|
private Circle recordingIndicator;
|
||||||
private FadeTransition recordingAnimation;
|
|
||||||
private int index = 0;
|
private int index = 0;
|
||||||
ContextMenu popup;
|
ContextMenu popup;
|
||||||
private final Color colorNormal = Color.BLACK;
|
private final Color colorNormal = Color.BLACK;
|
||||||
|
@ -142,17 +140,8 @@ public class ThumbCell extends StackPane {
|
||||||
StackPane.setMargin(recordingIndicator, new Insets(3));
|
StackPane.setMargin(recordingIndicator, new Insets(3));
|
||||||
StackPane.setAlignment(recordingIndicator, Pos.TOP_LEFT);
|
StackPane.setAlignment(recordingIndicator, Pos.TOP_LEFT);
|
||||||
getChildren().add(recordingIndicator);
|
getChildren().add(recordingIndicator);
|
||||||
recordingAnimation = new FadeTransition(Duration.millis(1000), recordingIndicator);
|
|
||||||
recordingAnimation.setInterpolator(Interpolator.EASE_BOTH);
|
|
||||||
recordingAnimation.setFromValue(1.0);
|
|
||||||
recordingAnimation.setToValue(0);
|
|
||||||
recordingAnimation.setCycleCount(FadeTransition.INDEFINITE);
|
|
||||||
recordingAnimation.setAutoReverse(true);
|
|
||||||
|
|
||||||
selectionOverlay = new Rectangle();
|
selectionOverlay = new Rectangle();
|
||||||
//selectionOverlay.setFill(new Color(0, 150f/255, 201f/255, .75));
|
|
||||||
//selectionOverlay.setStyle("-fx-background-color: -fx-accent");
|
|
||||||
//selectionOverlay.getStyleClass().add("table-view");
|
|
||||||
selectionOverlay.setOpacity(0);
|
selectionOverlay.setOpacity(0);
|
||||||
StackPane.setAlignment(selectionOverlay, Pos.TOP_LEFT);
|
StackPane.setAlignment(selectionOverlay, Pos.TOP_LEFT);
|
||||||
getChildren().add(selectionOverlay);
|
getChildren().add(selectionOverlay);
|
||||||
|
@ -289,9 +278,6 @@ public class ThumbCell extends StackPane {
|
||||||
}
|
}
|
||||||
|
|
||||||
void startPlayer() {
|
void startPlayer() {
|
||||||
// TODO if manual choice of stream quality is enabled, do the same thing as starting a download here?!?
|
|
||||||
// or maybe not, because the player should automatically switch between resolutions depending on the
|
|
||||||
// network bandwidth
|
|
||||||
try {
|
try {
|
||||||
if(model.isOnline(true)) {
|
if(model.isOnline(true)) {
|
||||||
StreamInfo streamInfo = model.getStreamInfo();
|
StreamInfo streamInfo = model.getStreamInfo();
|
||||||
|
@ -397,7 +383,6 @@ public class ThumbCell extends StackPane {
|
||||||
.url(url)
|
.url(url)
|
||||||
.method("POST", body)
|
.method("POST", body)
|
||||||
.header("Accept", "*/*")
|
.header("Accept", "*/*")
|
||||||
//.header("Accept-Encoding", "gzip, deflate, br")
|
|
||||||
.header("Accept-Language", "en-US,en;q=0.5")
|
.header("Accept-Language", "en-US,en;q=0.5")
|
||||||
.header("Referer", model.getUrl())
|
.header("Referer", model.getUrl())
|
||||||
.header("User-Agent", "Mozilla/5.0 (X11; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0")
|
.header("User-Agent", "Mozilla/5.0 (X11; Linux x86_64; rv:59.0) Gecko/20100101 Firefox/59.0")
|
||||||
|
@ -464,17 +449,6 @@ public class ThumbCell extends StackPane {
|
||||||
setImage(model.getPreview());
|
setImage(model.getPreview());
|
||||||
topic.setText(model.getDescription());
|
topic.setText(model.getDescription());
|
||||||
|
|
||||||
// ThumbOverviewTab.threadPool.submit(() -> {
|
|
||||||
// StreamInfo streamInfo;
|
|
||||||
// try {
|
|
||||||
// streamInfo = Chaturbate.INSTANCE.getStreamInfo(model);
|
|
||||||
// model.setOnline(streamInfo.room_status.equals("public"));
|
|
||||||
// model.setOnlineState(streamInfo.room_status);
|
|
||||||
// } catch (IOException | ExecutionException e) {
|
|
||||||
// LOG.error("Couldn't retrieve stream information for model {}", model.getName());
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
|
|
||||||
if(Config.getInstance().getSettings().determineResolution) {
|
if(Config.getInstance().getSettings().determineResolution) {
|
||||||
determineResolution();
|
determineResolution();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue