1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
|
/* -*- Mode: C; tab-width: 4 -*- */
/* dclock --- floating digital clock */
#if !defined( lint ) && !defined( SABER )
static const char sccsid[] = "@(#)dclock.c 4.07 97/11/24 xlockmore";
#endif
/*-
* Copyright (C) 1995 by Michael Stembera <mrbig@fc.net>.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation.
*
* This file is provided AS IS with no warranties of any kind. The author
* shall have no liability with respect to the infringement of copyrights,
* trade secrets or any patents by this file or any part thereof. In no
* event will the author be liable for any lost revenue or profits or
* other special, indirect and consequential damages.
*
* Revision History:
* 10-Aug-98: Population Explosion and Tropical Forest Countdown stuff
* I tried to get precise numbers but they may be off a few percent.
* Whether or not, its still pretty scary IMHO.
* Although I am a US citizen... I have the default for area in
* metric. David Bagley <bagleyd@bigfoot.com>
* 10-May-97: Compatible with xscreensaver
* 29-Aug-95: Written.
*/
/*-
* Some of my calcualations laid bare... (I have a little problem with
* the consistency of the numbers I got at the Bronx Zoo but proportions
* were figured to be 160.70344 people a minute increase not 180 and
* 35.303144 hectares (87.198766 acres) a minute decrease not 247 (100 acres).
* So I am going * with these more conservative numbers.)
*
* Time 0 is 0:00:00 1 Jan 1970 at least according to hard core UNIX fans
* Minutes from 1 Jan 1970 to 21 Jun 1985: 8137440
* Minutes from 21 Jun 1985 to 12 Jul 1988: 6867360
* Total: 15004800
*
* Population Explosion Saver
* 3,535,369,000 people (figured by extrapolation) 1 Jan 1970
* 4,843,083,596 people 21 Jun 1985 (Opening of Wild Asia in the Bronx Zoo)
* 5,946,692,000 people 12 Jul 1998 (David Bagley visits zoo ;) )
* 180 people a minute increase in global population (I heard 170 also)
* 260,000 people a day increase in global population
*
* Tropical Forest Countdown Saver
* 1,184,193,000 hectares (figured by extrapolation) 1 Jan 1970
* (2,924,959,000 acres)
* 896,916,700 hectares 21 Jun 1985 (Opening of Wild Asia in the Bronx Zoo)
* (2,215,384,320 acres)
* 654,477,300 hectares 12 Jul 1998 (David Bagley visits zoo ;) )
* (1,616,559,000 acres)
* 247 hectares a minute lost forever (1 hectare = 2.47 acres)
*/
#ifdef STANDALONE
#define PROGCLASS "Dclock"
#define HACK_INIT init_dclock
#define HACK_DRAW draw_dclock
#define dclock_opts xlockmore_opts
#define DEFAULTS "*delay: 10000 \n" \
"*cycles: 10000 \n" \
"*ncolors: 64 \n"
#define BRIGHT_COLORS
#define UNIFORM_COLORS
#include "xlockmore.h" /* in xscreensaver distribution */
#include "mode.h"
#else /* STANDALONE */
#include "xlock.h" /* in xlockmore distribution */
#include "util.h"
#endif /* STANDALONE */
#include "iostuff.h"
#ifndef METRIC
#define METRIC 1
#endif
#if METRIC
#define AREA_STRING "Hectares"
#define AREA_MIN 35.303144
#define AREA_TIME_START 1184193000.0
#else
#define AREA_STRING "Acres"
#define AREA_MIN 87.198766
#define AREA_TIME_START 2924959000.0
#endif
#define PEOPLE_MIN 160.70344
#define PEOPLE_TIME_START 3535369000.0
#define DEF_POPEX "False"
#define DEF_FOREST "False"
static Bool popex;
static Bool forest;
static XrmOptionDescRec opts[] =
{
{"-popex", ".dclock.popex", XrmoptionNoArg, (caddr_t) "on"},
{"+popex", ".dclock.popex", XrmoptionNoArg, (caddr_t) "off"},
{"-forest", ".dclock.forest", XrmoptionNoArg, (caddr_t) "on"},
{"+forest", ".dclock.forest", XrmoptionNoArg, (caddr_t) "off"}
};
static argtype vars[] =
{
{(caddr_t *) & popex, "popex", "PopEx", DEF_POPEX, t_Bool},
{(caddr_t *) & forest, "forest", "Forest", DEF_FOREST, t_Bool}
};
static OptionStruct desc[] =
{
{"-/+popex", "turn on/off population explosion"},
{"-/+forest", "turn on/off tropical forest descruction"}
};
ModeSpecOpt dclock_opts =
{sizeof opts / sizeof opts[0], opts, sizeof vars / sizeof vars[0], vars, desc};
#ifdef USE_MODULES
ModStruct dclock_description =
{"dclock", "init_dclock", "draw_dclock", "release_dclock",
"refresh_dclock", "init_dclock", NULL, &dclock_opts,
10000, 1, 10000, 1, 0.3, 64, "",
"Shows a floating digital clock", 0, NULL};
#endif
#include <time.h>
#ifdef FR
#define POPEX_STRING "Population Mondiale"
#define PEOPLE_STRING " Personnes"
#define FOREST_STRING "Nombre des Forets Tropicales"
#define TROPICAL_STRING " Zones Tropicales en "
#else
#ifdef NL
#define POPEX_STRING "Wereld populatie"
#define PEOPLE_STRING " Mensen"
#define FOREST_STRING "Aantal tropische wouden"
#define TROPICAL_STRING " Tropisch gebied in "
#else
#define POPEX_STRING "World Population"
#define PEOPLE_STRING " People"
#define FOREST_STRING "Tropical Forest Countdown"
#define TROPICAL_STRING " Tropical Forest in "
#endif
#endif
#define font_height(f) (f->ascent + f->descent)
extern XFontStruct *getFont(Display * display);
typedef struct {
int color;
short height, width;
char *str, str1[40], str2[40], str1old[80], str2old[80];
char *str1pta, *str2pta, *str1ptb, *str2ptb;
time_t timenew, timeold;
short maxx, maxy, clockx, clocky;
short text_height, text_width, text_width1, text_width2;
short text_start1, text_start2;
short hour;
short dx, dy;
int done;
int pixw, pixh;
Pixmap pixmap;
GC fgGC, bgGC;
Bool popex, forest;
} dclockstruct;
static dclockstruct *dclocks = NULL;
static XFontStruct *mode_font = None;
#define BASE 10.0
#define GROUP 3
static double logbase;
static void
convert(double x, char *string)
{
int i, j, k = 0;
int place = (int) (log(x) / logbase);
double divisor = 1.0;
for (i = 0; i < place; i++)
divisor *= BASE;
for (i = place; i >= 0; i--) {
j = (int) (x / divisor);
string[k++] = (char) j + '0';
x -= j * divisor;
divisor /= BASE;
if ((i > 0) && (i % GROUP == 0)) {
string[k++] = ',';
}
}
string[k++] = '\0';
}
static void
drawDclock(ModeInfo * mi)
{
Display *display = MI_DISPLAY(mi);
Window window = MI_WINDOW(mi);
GC gc = MI_GC(mi);
dclockstruct *dp = &dclocks[MI_SCREEN(mi)];
short xold, yold;
char *tmppt;
xold = dp->clockx;
yold = dp->clocky;
dp->clockx += dp->dx;
dp->clocky += dp->dy;
if (dp->maxx < dp->text_start1) {
if (dp->clockx < dp->maxx + dp->text_start1 ||
dp->clockx > dp->text_start1) {
dp->dx = -dp->dx;
dp->clockx += dp->dx;
}
} else if (dp->maxx > dp->text_start1) {
if (dp->clockx > dp->maxx + dp->text_start1 ||
dp->clockx < dp->text_start1) {
dp->dx = -dp->dx;
dp->clockx += dp->dx;
}
}
if (dp->maxy < mode_font->ascent) {
if (dp->clocky > mode_font->ascent || dp->clocky < dp->maxy) {
dp->dy = -dp->dy;
dp->clocky += dp->dy;
}
} else if (dp->maxy > mode_font->ascent) {
if (dp->clocky > dp->maxy || dp->clocky < mode_font->ascent) {
dp->dy = -dp->dy;
dp->clocky += dp->dy;
}
}
if (!dp->popex && !dp->forest) {
if (dp->timeold != (dp->timenew = time((time_t *) NULL))) {
/* only parse if time has changed */
dp->timeold = dp->timenew;
dp->str = ctime(&dp->timeold);
if (!dp->popex && !dp->forest) {
/* keep last disp time so it can be cleared even if it changed */
tmppt = dp->str1ptb;
dp->str1ptb = dp->str1pta;
dp->str1pta = tmppt;
/* copy the hours portion for 24 to 12 hr conversion */
(void) strncpy(dp->str1pta, (dp->str + 11), 8);
dp->hour = (short) (dp->str1pta[0] - 48) * 10 +
(short) (dp->str1pta[1] - 48);
if (dp->hour > 12) {
dp->hour -= 12;
(void) strcpy(dp->str1pta + 8, " PM");
} else {
if (dp->hour == 0)
dp->hour += 12;
(void) strcpy(dp->str1pta + 8, " AM");
}
dp->str1pta[0] = (dp->hour / 10) + 48;
dp->str1pta[1] = (dp->hour % 10) + 48;
if (dp->str1pta[0] == '0')
dp->str1pta[0] = ' ';
/* keep last disp time so it can be cleared even if it changed */
}
tmppt = dp->str2ptb;
dp->str2ptb = dp->str2pta;
dp->str2pta = tmppt;
/* copy day month */
(void) strncpy(dp->str2pta, dp->str, 11);
/* copy year */
(void) strncpy(dp->str2pta + 11, (dp->str + 20), 4);
}
} else {
if (dp->popex) {
convert(PEOPLE_TIME_START + (PEOPLE_MIN / 60.0) * seconds(), dp->str2);
(void) strcat(dp->str2, PEOPLE_STRING);
dp->str2pta = dp->str2;
dp->str2ptb = dp->str2pta;
} else if (dp->forest) {
convert(AREA_TIME_START - (AREA_MIN / 60.0) * seconds(), dp->str2);
(void) strcat(dp->str2, TROPICAL_STRING);
(void) strcat(dp->str2, AREA_STRING);
dp->str2pta = dp->str2;
dp->str2ptb = dp->str2pta;
}
}
if (dp->pixw != dp->text_width || dp->pixh != 2 * dp->text_height) {
XGCValues gcv;
if (dp->fgGC)
XFreeGC(display, dp->fgGC);
if (dp->bgGC)
XFreeGC(display, dp->bgGC);
if (dp->pixmap) {
XFreePixmap(display, dp->pixmap);
MI_CLEARWINDOW(mi);
}
dp->pixw = dp->text_width;
dp->pixh = 2 * dp->text_height;
dp->pixmap = XCreatePixmap(display, window, dp->pixw, dp->pixh, 1);
gcv.font = mode_font->fid;
gcv.background = 0;
gcv.foreground = 1;
gcv.graphics_exposures = False;
dp->fgGC = XCreateGC(display, dp->pixmap,
GCForeground | GCBackground | GCGraphicsExposures | GCFont, &gcv);
gcv.foreground = 0;
dp->bgGC = XCreateGC(display, dp->pixmap,
GCForeground | GCBackground | GCGraphicsExposures | GCFont, &gcv);
}
XFillRectangle(display, dp->pixmap, dp->bgGC, 0, 0, dp->pixw, dp->pixh);
(void) XDrawString(display, dp->pixmap, dp->fgGC,
dp->text_start1, mode_font->ascent,
dp->str1pta, strlen(dp->str1pta));
(void) XDrawString(display, dp->pixmap, dp->fgGC,
dp->text_start2, mode_font->ascent + dp->text_height,
dp->str2pta, strlen(dp->str2pta));
XSetForeground(display, gc, MI_BLACK_PIXEL(mi));
/* This could leave screen dust on the screen if the width changes
But that only happens once a day...
... this is solved by the ClearWindow above
*/
ERASE_IMAGE(display, window, gc,
(dp->clockx - dp->text_start1), (dp->clocky - mode_font->ascent),
(xold - dp->text_start1), (yold - mode_font->ascent),
dp->pixw, dp->pixh);
if (MI_NPIXELS(mi) > 2)
XSetForeground(display, gc, MI_PIXEL(mi, dp->color));
else
XSetForeground(display, gc, MI_WHITE_PIXEL(mi));
XCopyPlane(display, dp->pixmap, window, gc,
0, 0, dp->text_width, 2 * dp->text_height,
dp->clockx - dp->text_start1, dp->clocky - mode_font->ascent,
1L);
}
void
init_dclock(ModeInfo * mi)
{
Display *display = MI_DISPLAY(mi);
dclockstruct *dp;
if (dclocks == NULL) {
logbase = log(BASE);
if ((dclocks = (dclockstruct *) calloc(MI_NUM_SCREENS(mi),
sizeof (dclockstruct))) == NULL)
return;
}
dp = &dclocks[MI_SCREEN(mi)];
dp->width = MI_WIDTH(mi);
dp->height = MI_HEIGHT(mi);
MI_CLEARWINDOW(mi);
if (MI_IS_FULLRANDOM(mi))
dp->popex = (Bool) (LRAND() & 1);
else
dp->popex = popex;
if (MI_IS_FULLRANDOM(mi))
dp->forest = (Bool) (LRAND() & 1);
else
dp->forest = forest;
if (mode_font == None)
mode_font = getFont(display);
if (!dp->done) {
dp->done = 1;
if (mode_font != None)
XSetFont(display, MI_GC(mi), mode_font->fid);
}
/* (void)time(&dp->timenew); */
dp->timeold = dp->timenew = time((time_t *) NULL);
dp->str = ctime(&dp->timeold);
dp->dx = (LRAND() & 1) ? 1 : -1;
dp->dy = (LRAND() & 1) ? 1 : -1;
if (dp->popex) {
dp->str1pta = POPEX_STRING;
dp->str1ptb = dp->str1pta;
} else if (dp->forest) {
dp->str1pta = FOREST_STRING;
dp->str1ptb = dp->str1pta;
} else {
(void) strncpy(dp->str1, (dp->str + 11), 8);
dp->hour = (short) (dp->str1[0] - 48) * 10 + (short) (dp->str1[1] - 48);
if (dp->hour > 12) {
dp->hour -= 12;
(void) strcpy(dp->str1 + 8, " PM");
} else {
if (dp->hour == 0)
dp->hour += 12;
(void) strcpy(dp->str1 + 8, " AM");
}
dp->str1[0] = (dp->hour / 10) + 48;
dp->str1[1] = (dp->hour % 10) + 48;
if (dp->str1[0] == '0')
dp->str1[0] = ' ';
dp->str1[11] = 0; /* terminate dp->str1 */
dp->str1old[11] = 0; /* terminate dp->str1old */
(void) strncpy(dp->str2, dp->str, 11);
(void) strncpy(dp->str2 + 11, (dp->str + 20), 4);
dp->str2[15] = 0; /* terminate dp->str2 */
dp->str2old[15] = 0; /* terminate dp->str2old */
dp->str1pta = dp->str1;
dp->str1ptb = dp->str1old;
}
if (dp->popex) {
convert(PEOPLE_TIME_START + (PEOPLE_MIN / 60.0) * seconds(), dp->str2);
(void) strcat(dp->str2, PEOPLE_STRING);
dp->str2pta = dp->str2;
dp->str2ptb = dp->str2pta;
} else if (dp->forest) {
convert(AREA_TIME_START - (AREA_MIN / 60.0) * seconds(), dp->str2);
(void) strcat(dp->str2, TROPICAL_STRING);
(void) strcat(dp->str2, AREA_STRING);
dp->str2pta = dp->str2;
dp->str2ptb = dp->str2pta;
} else {
dp->str2pta = dp->str2;
dp->str2ptb = dp->str2old;
}
dp->text_height = font_height(mode_font);
dp->text_width1 = XTextWidth(mode_font, dp->str1pta, strlen(dp->str1pta));
dp->text_width2 = XTextWidth(mode_font, dp->str2pta, strlen(dp->str2pta));
if (dp->text_width1 > dp->text_width2) {
dp->text_width = dp->text_width1;
dp->text_start1 = 0;
dp->text_start2 = (dp->text_width - dp->text_width2) / 2;
} else {
dp->text_width = dp->text_width2;
dp->text_start1 = (dp->text_width - dp->text_width1) / 2;
dp->text_start2 = 0;
}
dp->maxx = dp->width - dp->text_width;
dp->maxy = dp->height - dp->text_height - mode_font->descent;
if (dp->maxx == 0)
dp->clockx = dp->text_start1;
else if (dp->maxx < 0)
dp->clockx = -NRAND(-dp->maxx) + dp->text_start1;
else
dp->clockx = NRAND(dp->maxx) + dp->text_start1;
if (dp->maxy - mode_font->ascent == 0)
dp->clocky = mode_font->ascent;
else if (dp->maxy - mode_font->ascent < 0)
dp->clocky = -NRAND(mode_font->ascent - dp->maxy) + mode_font->ascent;
else
dp->clocky = NRAND(dp->maxy - mode_font->ascent) + mode_font->ascent;
if (MI_NPIXELS(mi) > 2)
dp->color = NRAND(MI_NPIXELS(mi));
/* don't want any exposure events from XCopyPlane */
XSetGraphicsExposures(display, MI_GC(mi), False);
}
void
draw_dclock(ModeInfo * mi)
{
dclockstruct *dp = &dclocks[MI_SCREEN(mi)];
MI_IS_DRAWN(mi) = True;
drawDclock(mi);
if (MI_NPIXELS(mi) > 2) {
if (++dp->color >= MI_NPIXELS(mi))
dp->color = 0;
}
}
void
release_dclock(ModeInfo * mi)
{
if (dclocks != NULL) {
int screen;
for (screen = 0; screen < MI_NUM_SCREENS(mi); screen++) {
dclockstruct *dp = &dclocks[screen];
Display *display = MI_DISPLAY(mi);
if (dp->fgGC)
XFreeGC(display, dp->fgGC);
if (dp->bgGC)
XFreeGC(display, dp->bgGC);
if (dp->pixmap)
XFreePixmap(display, dp->pixmap);
}
(void) free((void *) dclocks);
dclocks = NULL;
}
if (mode_font != None) {
XFreeFont(MI_DISPLAY(mi), mode_font);
mode_font = None;
}
}
void
refresh_dclock(ModeInfo * mi)
{
MI_CLEARWINDOW(mi);
}
|