X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?p=xscreensaver;a=blobdiff_plain;f=android%2Fxscreensaver%2Fsrc%2Forg%2Fjwz%2Fxscreensaver%2FXScreenSaverWallpaper.java;fp=android%2Fxscreensaver%2Fsrc%2Forg%2Fjwz%2Fxscreensaver%2FXScreenSaverWallpaper.java;h=0000000000000000000000000000000000000000;hp=4ce5da58feab04b382ee3f8c84e09e52f8cdf07a;hb=78add6e627ee5f10e1fa6f3852602ea5066eee5a;hpb=39809ded547bdbb08207d3e514950425215b4410 diff --git a/android/xscreensaver/src/org/jwz/xscreensaver/XScreenSaverWallpaper.java b/android/xscreensaver/src/org/jwz/xscreensaver/XScreenSaverWallpaper.java deleted file mode 100644 index 4ce5da58..00000000 --- a/android/xscreensaver/src/org/jwz/xscreensaver/XScreenSaverWallpaper.java +++ /dev/null @@ -1,105 +0,0 @@ -/* -*- Mode: java; indent-tabs-mode: nil; c-basic-offset: 2 -*- - * xscreensaver, Copyright (c) 2016-2017 Jamie Zawinski - * - * Permission to use, copy, modify, distribute, and sell this software and its - * documentation for any purpose is hereby granted without fee, provided that - * the above copyright notice appear in all copies and that both that - * copyright notice and this permission notice appear in supporting - * documentation. No representations are made about the suitability of this - * software for any purpose. It is provided "as is" without express or - * implied warranty. - * - * The superclass of every saver's Wallpaper. - * - * Each Wallpaper needs a distinct subclass in order to show up in the list. - * We know which saver we are running by the subclass name; we know which - * API to use by how the subclass calls super(). - */ - -package org.jwz.xscreensaver; - -import android.service.wallpaper.WallpaperService; -import android.view.GestureDetector; -import android.view.SurfaceHolder; -import android.util.Log; -import java.lang.RuntimeException; -import java.lang.Thread; -import org.jwz.xscreensaver.jwxyz; - -public class XScreenSaverWallpaper extends WallpaperService -/*implements GestureDetector.OnGestureListener, - GestureDetector.OnDoubleTapListener, */ { - - /* TODO: Input! */ - - @Override - public Engine onCreateEngine() { - // Log.d("xscreensaver", "tid = " + Thread.currentThread().getId()); - return new XScreenSaverGLEngine(); - } - - class XScreenSaverGLEngine extends Engine { - - private boolean initTried = false; - private jwxyz jwxyz_obj; - - @Override - public void onSurfaceCreated (SurfaceHolder holder) { - super.onSurfaceCreated(holder); - - if (!initTried) { - initTried = true; - } else { - if (jwxyz_obj != null) { - jwxyz_obj.close(); - jwxyz_obj = null; - } - } - } - - @Override - public void onVisibilityChanged(final boolean visible) { - if (jwxyz_obj != null) { - if (visible) - jwxyz_obj.start(); - else - jwxyz_obj.pause(); - } - } - - @Override - public void onSurfaceChanged (SurfaceHolder holder, int format, - int width, int height) { - - super.onSurfaceChanged(holder, format, width, height); - - if (width == 0 || height == 0) { - jwxyz_obj.close(); - jwxyz_obj = null; - } - - Log.d ("xscreensaver", - String.format("surfaceChanged: %dx%d", width, height)); - - if (jwxyz_obj == null) { - jwxyz_obj = new jwxyz (jwxyz.saverNameOf(XScreenSaverWallpaper.this), - XScreenSaverWallpaper.this, null, - width, height, holder.getSurface(), null); - } else { - jwxyz_obj.resize (width, height); - } - - jwxyz_obj.start(); - } - - @Override - public void onSurfaceDestroyed (SurfaceHolder holder) { - super.onSurfaceDestroyed (holder); - - if (jwxyz_obj != null) { - jwxyz_obj.close(); - jwxyz_obj = null; - } - } - } -}