X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fsphere.c;h=468a648d07a8f87ec3eb3618f9f870202b6627b8;hb=c1b9b55ad8d59dc05ef55e316aebf5863e7dfa56;hp=2323eb6eaf630725e47b2a4c43e2667247ea34b1;hpb=96a411663168b0ba5432b407a83be55f3df0c802;p=xscreensaver diff --git a/hacks/sphere.c b/hacks/sphere.c index 2323eb6e..468a648d 100644 --- a/hacks/sphere.c +++ b/hacks/sphere.c @@ -57,24 +57,24 @@ static const char sccsid[] = "@(#)sphere.c 5.00 2000/11/01 xlockmore"; */ #ifdef STANDALONE -#define MODE_sphere -#define PROGCLASS "Sphere" -#define HACK_INIT init_sphere -#define HACK_DRAW draw_sphere -#define sphere_opts xlockmore_opts -#define DEFAULTS "*delay: 1000 \n" \ - "*cycles: 20 \n" \ - "*size: 0 \n" \ - "*ncolors: 64 \n" -#define BRIGHT_COLORS -#include "xlockmore.h" /* from the xscreensaver distribution */ +# define MODE_sphere +#define DEFAULTS "*delay: 20000 \n" \ + "*cycles: 20 \n" \ + "*size: 0 \n" \ + "*ncolors: 64 \n" \ + "*fpsSolid: true \n" \ + +# define BRIGHT_COLORS +# define reshape_sphere 0 +# define sphere_handle_event 0 +# include "xlockmore.h" /* from the xscreensaver distribution */ #else /* !STANDALONE */ -#include "xlock.h" /* from the xlockmore distribution */ +# include "xlock.h" /* from the xlockmore distribution */ #endif /* !STANDALONE */ #ifdef MODE_sphere -ModeSpecOpt sphere_opts = +ENTRYPOINT ModeSpecOpt sphere_opts = {0, (XrmOptionDescRec *) NULL, 0, (argtype *) NULL, (OptionStruct *) NULL}; #ifdef USE_MODULES @@ -110,7 +110,7 @@ typedef struct { static spherestruct *spheres = (spherestruct *) NULL; -void +ENTRYPOINT void init_sphere(ModeInfo * mi) { spherestruct *sp; @@ -141,7 +141,7 @@ init_sphere(ModeInfo * mi) sp->shadowy = (LRAND() & 1) ? 1 : -1; } -void +ENTRYPOINT void draw_sphere(ModeInfo * mi) { Display *display = MI_DISPLAY(mi); @@ -270,7 +270,7 @@ draw_sphere(ModeInfo * mi) } } -void +ENTRYPOINT void release_sphere(ModeInfo * mi) { if (spheres != NULL) { @@ -289,7 +289,7 @@ release_sphere(ModeInfo * mi) } } -void +ENTRYPOINT void refresh_sphere(ModeInfo * mi) { spherestruct *sp; @@ -303,4 +303,6 @@ refresh_sphere(ModeInfo * mi) sp->x = -sp->radius; } +XSCREENSAVER_MODULE ("Sphere", sphere) + #endif /* MODE_sphere */