forked from gbezyuk/bb-osx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautopilo.c
129 lines (128 loc) · 3.57 KB
/
autopilo.c
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
/*
* XaoS, a fast portable realtime fractal zoomer
* Copyright (C) 1996,1997 by
*
* Jan Hubicka ([email protected])
* Thomas Marsh ([email protected])
*
* 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.
*/
#ifdef _plan9_
#include <u.h>
#include <libc.h>
#include <stdio.h>
#else
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include "config.h"
#include <assert.h>
#endif
#include "zoom.h"
#include "autopilo.h"
#include "ui.h"
#define InSet(i) (i==context->colors[0])
static number_t minsize = 1000;
static number_t maxsize = 0;
static int autime = 0;
static int minlong = 0;
static int interlevel;
#define MINCOUNT 5
void clean_autopilot(void)
{
minsize = 1000;
maxsize = 0;
autime = 0;
minlong = 0;
}
void do_autopilot(zoom_context * context, int *x, int *y, int *controls, void (*changed) (void))
{
static int x1, y1, c1;
int i, j, i1, j1, c, max;
checkcontext(context);
assert(changed != NULL);
if (context->dirty)
clean_autopilot();
if (context->s.mc - context->s.nc < minsize) {
minsize = context->s.mc - context->s.nc;
minlong = 0;
}
if (context->s.mc - context->s.nc > maxsize) {
minsize = context->s.mc - context->s.nc;
maxsize = context->s.mc - context->s.nc;
minlong = 0;
}
j = 0;
for (i = 0; i < context->width - 1; i++) { /*detection of out of precisity... */
if (context->xpos[i] == context->xpos[i + 1])
j++;
}
if (autime <= 0) {
if (context->uncomplette && j > context->width / 2) {
*controls = 0;
return;
}
minlong++;
max = NGUESSES1;
ui_tbreak();
do {
max--;
c = 0;
x1 = rand() % (context->width - 2 * LOOKSIZE) + LOOKSIZE;
y1 = rand() % (context->height - 2 * LOOKSIZE) + LOOKSIZE;
autime = rand() % MAXTIME;
for (i = x1 - LOOKSIZE; i <= x1 + LOOKSIZE; i++)
for (j = y1 - LOOKSIZE; j <= y1 + LOOKSIZE; j++)
if (InSet(*(context->vbuff + i + j * context->scanline)))
c++;
} while ((c == 0 || c > LOOKSIZE * LOOKSIZE) && max > 0);
if (max > 0)
c1 = BUTTON1, interlevel = 1;
else {
max = NGUESSES2;
do {
max--;
c = 0;
x1 = rand() % (context->width - 2 * LOOKSIZE) + LOOKSIZE;
y1 = rand() % (context->height - 2 * LOOKSIZE) + LOOKSIZE;
autime = rand() % MAXTIME;
for (i = x1 - LOOKSIZE; i <= x1 + LOOKSIZE; i++)
for (j = y1 - LOOKSIZE; j < y1 + LOOKSIZE; j++)
for (i1 = x1 - LOOKSIZE; i1 < x1 + LOOKSIZE; i1++)
for (j1 = y1 - LOOKSIZE; j1 < y1 + LOOKSIZE; j1++)
if (i1 != i && j1 != j &&
(*(context->vbuff + i + j * context->scanline)) ==
(*(context->vbuff + i1 + j1 * context->scanline)))
c++;
} while ((c > LOOKSIZE * LOOKSIZE / 2) && max > 0);
if (max > 0)
c1 = BUTTON1, interlevel = 2;
else {
if (context->uncomplette) {
c1 = 0;
autime = 20;
}
else {
c1 = BUTTON3, autime >>= 1;
}
}
}
}
autime--; {
*x = x1;
*y = y1;
*controls = c1;
}
}