-
Notifications
You must be signed in to change notification settings - Fork 8
/
Generator - Stone,monkey
196 lines (186 loc) · 5.24 KB
/
Generator - Stone,monkey
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
Import mojo
Class gridbackground
Field mapwidth:Int
Field mapheight:Int
Field tilewidth:Float
Field tileheight:Float
Field mapdepth:Int
Field mapr:Int[][]
Field mapg:Int[][]
Field mapb:Int[][]
Field pixels:Int[]
Field image:Image
Method New(mapwidth:Int,mapheight:Int)
Self.mapwidth = mapwidth
Self.mapheight = mapheight
pixels = New Int[mapwidth*mapheight]
image = CreateImage(mapwidth,mapheight)
tilewidth = DeviceWidth()/Float(mapwidth)
tileheight = DeviceHeight()/Float(mapheight)
mapr = New Int[mapwidth][]
mapg = New Int[mapwidth][]
mapb = New Int[mapwidth][]
For Local i = 0 Until mapwidth
mapr[i] = New Int[mapheight]
mapg[i] = New Int[mapheight]
mapb[i] = New Int[mapheight]
Next
addrectslayer
brusheffect()
smooth
darkenrange(200,255,50)
putinimage
End Method
Method darkenrange(low:Int,high:Int,ranval:Int)
For Local y=0 Until mapheight
For Local x=0 Until mapwidth
If mapr[x][y] > low
mapr[x][y] -= ranval
mapg[x][y] -= ranval
mapb[x][y] -= ranval
End If
If mapg[x][y] > low
mapr[x][y] -= ranval
mapg[x][y] -= ranval
mapb[x][y] -= ranval
End If
If mapb[x][y] > low
mapr[x][y] -= ranval
mapg[x][y] -= ranval
mapb[x][y] -= ranval
End If
Next
Next
End Method
Method smooth()
For Local i=0 Until (mapwidth*mapheight)
Local x:Int=Rnd(0,mapwidth-1)
Local y:Int=Rnd(0,mapheight-1)
Local col1r:Int=mapr[x+1][y]
Local col1g:Int=mapg[x+1][y]
Local col1b:Int=mapb[x+1][y]
Local col2r:Int=mapr[x+1][y+1]
Local col2g:Int=mapg[x+1][y+1]
Local col2b:Int=mapb[x+1][y+1]
Local col3r:Int=mapr[x][y+1]
Local col3g:Int=mapg[x][y+1]
Local col3b:Int=mapb[x][y+1]
Local col4r:Int=(col1r+col2r+col3r)/3
Local col4g:Int=(col1g+col2g+col3g)/3
Local col4b:Int=(col1b+col2b+col3b)/3
mapr[x][y] = col4r+Rnd(0,20)
mapg[x][y] = col4g
mapb[x][y] = col4b
mapr[x][y] = Clamp(mapr[x][y],0,255)
mapg[x][y] = Clamp(mapg[x][y],0,255)
mapb[x][y] = Clamp(mapb[x][y],0,255)
Next
End Method
Method brusheffect() 'explosion effect copy from in area to another part in area in half the brishtness
For Local i=0 Until (mapwidth*mapheight)/20
Local x:Int=Rnd(-3,mapwidth)
Local y:Int=Rnd(-3,mapheight)
For Local y1=-5 To 5
For Local x1=-5 To 5
Local x2:Int=x+x1
Local y2:Int=y+y1
If Rnd(10)<3
If x2>-1 And y2>-1 And x2<mapwidth And y2<mapheight
Local colr:Int=mapr[x2][y2]
Local colg:Int=mapg[x2][y2]
Local colb:Int=mapb[x2][y2]
Local x3:Int=x2+Rnd(-5,5)
Local y3:Int=y2+Rnd(-5,5)
If x3>-1 And y3>-1 And x3<mapwidth And y3<mapheight
mapr[x3][y3] = (colr)/2
mapg[x3][y3] = (colg)/2
mapb[x3][y3] = (colb)/2
End If
End If
End If
Next
Next
Next
End Method
Method addrectslayer()
For Local i=0 Until (mapwidth*mapheight)/20
Local w:Int=Rnd(3,10)
Local h:Int=Rnd(3,10)
Local x:Int=Rnd(-3,mapwidth)
Local y:Int=Rnd(-3,mapheight)
Local colr:Int=255
Local colg:Int=255
Local colb:Int=255
mapdrawrect(x,y,w,h,colr,colg,colb)
Next
End Method
Method mapdrawrect(x:Int,y:Int,w:Int,h:Int,colr:Int,colg:Int,colb:Int)
For Local y1=y Until y+h
For Local x1=x Until x+w
If x1>-1 And y1>-1 And x1<mapwidth And y1<mapheight
mapr[x1][y1] = colr
mapg[x1][y1] = colg
mapb[x1][y1] = colb
End If
Next
Next
End Method
Method draw()
DrawImage image,0,0,0,1.2,1
Return
For Local y=0 Until mapheight-1
For Local x=0 Until mapwidth-1
Local colr:Int=mapr[x][y]
Local colg:Int=mapg[x][y]
Local colb:Int=mapb[x][y]
SetColor colr,colg,colb
DrawRect x*tilewidth,y*tileheight,tilewidth+1,tileheight+1
Next
Next
End Method
Method distance:Int(x1:Int,y1:Int,x2:Int,y2:Int)
Return Abs(x2-x1)+Abs(y2-y1)
End Method
Method argb:Int(r:Int, g:Int, b:Int ,alpha:Int=255)
Return (alpha Shl 24) | (r Shl 16) | (g Shl 8) | b
End Method
Method putinimage()
Local cnt:Int=0
For Local y=0 Until mapheight
For Local x=0 Until mapwidth
pixels[cnt] = argb(mapr[x][y],mapg[x][y],mapb[x][y])
cnt+=1
Next
Next
image.WritePixels(pixels, 0, 0, mapwidth, mapheight, 0)
End Method
End Class
Global mygbg:gridbackground
Class MyGame Extends App
Field time:Int=0
Method OnCreate()
Seed = GetDate[5]
SetUpdateRate(1)
mygbg = New gridbackground(512,512)
End Method
Method OnUpdate()
time+=1
If time>10 Then
time=0
Local r:Int=Rnd(3)
Local ts:Int=128
If r=0 Then ts=512
If r=1 Then ts=512
If r=2 Then ts=512
mygbg = New gridbackground(ts,ts)
End If
End Method
Method OnRender()
Cls 0,0,0
SetColor 255,255,255
mygbg.draw
End Method
End Class
Function Main()
New MyGame()
End Function