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
|
/* This file was taken from XaoS-the fast portable realtime interactive
fractal zoomer. but it is simplified for BB. You may get complette
sources at XaoS homepage (http://www.paru.cas.cz/~hubicka/XaoS
*/
/*
* XaoS, a fast portable realtime fractal zoomer
* Copyright (C) 1996,1997 by
*
* Jan Hubicka (hubicka@paru.cas.cz)
* Thomas Marsh (tmarsh@austin.ibm.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef ZOOM_H
#define ZOOM_H
#include "config.h"
#include "formulas.h"
#define CONTEXTMAGIC 1122
#define checkcontext(c) assert((c)->magic==CONTEXTMAGIC)
struct realloc_s {
number_t possition;
number_t price;
int plus;
int recalculate;
int symto;
int symref;
int dirty;
#ifdef __GNUC__
#ifdef __STDC__
/*__STRICT_ANSI__*/
char dummy[((32 - sizeof(int) * 5 - ((int) (sizeof(number_t) + sizeof(int) - 1) / sizeof(int)) * sizeof(int)) < 0 ? 0 :
(32 - sizeof(int) * 5 - ((int) (sizeof(number_t) + sizeof(int) - 1) / sizeof(int)) * sizeof(int)))]; /*make it 32 byte aligned */
#endif
#endif
};
typedef struct realloc_s realloc_t;
typedef struct {
number_t pre, pim;
number_t *xpos, *ypos;
void (*switch_function) (void);
void (*wait_function) (void);
int magic;
unsigned char *vbuff, *back;
unsigned char *svbuff, *sback;
realloc_t *reallocx, *reallocy;
struct formula *currentformula;
int pos, max;
char *pass;
int stereogram;
int maxiter, coloringmode, incoloringmode;
int mandelbrot;
int fullscreen;
int plane;
int dirty;
int range;
int incalculation;
int readyforinterrupt;
int uncomplette;
int num_colors;
int width, height;
int scanline;
int interrupt;
unsigned char colors[MAXCOLORS];
unsigned char cmap[3][MAXCOLORS];
float pixelwidth, pixelheight;
float windowwidth, windowheight;
vinfo s;
} zoom_context;
void do_fractal(zoom_context *, int);
void do_julia(zoom_context *, number_t, number_t);
void set_formula(zoom_context *, CONST int);
int resize_to(zoom_context *, CONST int, CONST int, CONST int, char *, char *, double, double);
void set_view(zoom_context *, CONST vinfo *);
void free_context(zoom_context *);
void enable_stereogram(zoom_context *);
void disable_stereogram(zoom_context *);
void init_tables(zoom_context *);
void rotate_palette(zoom_context *, int direction);
zoom_context *make_context(CONST int, CONST int, CONST int, CONST int, CONST int, void (*)(void), void (*)(void), char *, char *, double, double);
#endif /* ZOOM_H */
|