File: hyp013.lua

package info (click to toggle)
blobby 1.1.1%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,944 kB
  • sloc: cpp: 22,442; xml: 779; python: 56; makefile: 3
file content (592 lines) | stat: -rw-r--r-- 10,443 bytes parent folder | download | duplicates (7)
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
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
g=0.28
pg=0.88
v0=14.5
v_p=4.5
pj=0.44
r1=31.5
h=31.5+19+25
	estt=0
p=0.654

function reset()
	est=0
	imp,imp1,imp2=0,0,0

	nettime=0
	touch=0
	esto1=0
	esto2=0
	esto3=0
	esto4=0
	esto5=0
	esto6=0
	phase=0
	valid=1
	active=1
	nettime=0
	y1p=posy()
end
	
function yb(y,vy,t)

	return y+(vy-g/10)*t-1/2*g*t^2

end

function move(x)

	if (posx()<x) and (math.abs(posx()-x)>2.26) then right()
	elseif (posx()>x) and (math.abs(posx()-x)>2.26) then left()
	end

end

function tb(y,vy,height,typ)
	local sgn=0
	if (typ==1)
		then
			sgn=-1
		else
			sgn=1
	end
	if vy^2/g^2-vy/(5*g)+1/100+2*(y-height)/g<0
		then return -1
	else
		return -1/10+vy/g+sgn*math.sqrt( vy^2/g^2-vy/(5*g)+1/100+2*(y-height)/g )
	end
end

function time(t)

	return 1/5*math.ceil(5*t)

end

function pos2(x)

	local x1,x2
	x1=4.5*math.ceil((1/4.5)*x)
	x2=4.5*math.floor((1/4.5)*x)
	if (x1<0) or (x2<0) then return 0
	else
	if (math.abs(x1-x)<math.abs(x2-x))
		then
			return x1
		else
			return x2
	end
end
end

function pos(x)
return pos2(x)+(posx()-pos2(posx()))
end

function yp(t)
return 144.5+(14.5+pj/2+pg/10)*t-1/2*(pg-pj)*t^2
end

function tp(y)
	return (14.5+pj/2+pg/10)/(pg-pj)-math.sqrt(((14.5+pj/2+pg/10)/(pg-pj))^2-(y-144.5)/(1/2*(pg-pj)))
end

function tp2(y1p,v1p)
	if (y1p>146) then
	return (v1p/0.88-1/2+math.sqrt((v1p/0.88-1/2)^2-(144.5-y1p)/0.44))
	else
	return 0
	end
end

function time(t)
return 1/5*math.ceil(5*t)
end


-- </Abschnitt 2>

function collide(x,y,vx,vy,objx,objy,r2)

	local t1=time(math.max(tb(y,vy,objy-(r1+r2),1)-0.2,0))
	local t2=time(tb(y,vy,objy+(r1+r2),1)+0.2)
	local t3=time(math.max(tb(y,vy,objy+(r1+r2),2)-0.2,0))
	local t4=time(tb(y,vy,objy-(r1+r2),2)+0.2)
	local t=-1
	if (t1<t2)
		then
			for testimate=t1,t2,0.2 do
				if ( (yb(y,vy,testimate)-objy)^2+(x+vx*testimate-objx)^2 < (r1+r2)^2)
					then
						t=testimate
						break
				end
			end
	end

	if (t<=0) and (t3<t4)
		then
			for testimate=t3,t4,0.2 do
				if ( (yb(y,vy,testimate)-objy)^2+(x+vx*testimate-objx)^2 < (r1+r2)^2)
					then
						t=testimate
						break
				end
			end
	end

	if (t<=0) or (t>150) then t=-1 end

	return t

end



function estimate(x,y,vx,vy,height,typ)

	local collision=1
	local tw,tn,ts=0,0,0
	local tr,xr,yr,vxr,vyr,n=0,0,0,0,0,0

	while(collision==1) do
		ts=collide(x,y,vx,vy,400,316,7)
		if (vx>0)
			then
				tw=time((768.5-x)/vx)
				tn=time((361.5-x)/vx)
			else
				tw=time((31.5-x)/vx)
				tn=time((438.5-x)/vx)
		end
		local th=time(tb(y,vy,height,typ))
		local t=10000

		if ((ts>0) and (ts<t)) then t=ts end
		if (((tn>0) and (tn<t)) and (yb(y,vy,tn)<316)) then t=tn end
		if ((tw>0) and (tw<t)) then t=tw end

		if (th>t)
			then
				if (t==ts)
					then
						tr=tr+t
						x=x+vx*t
						y=yb(y,vy,t)
						vy=vy-g*t
						xr=x
						yr=y
						vxr=vx
						vyr=vy
						n=1
						collision=0
					elseif ((t==tn) or (t==tw))
					then
						tr=tr+t
						x=x+vx*t
						y=yb(y,vy,t)
						vx=-vx
						vy=vy-g*t
						collision=1
				end
			else
				tr=tr+th
				vxr=vx
				vyr=vy-g*th
				xr=x+vx*th
				yr=yb(y,vy,th)
				collision=0
		end
	end
	if (tr<0)
		then
			return -1,-1,-1,-1,-1,-1
		else
			return xr,yr,vxr,vyr,tr,n
	end
end


function impact(x,y,vx,vy,xpos,ypos,targety,jum,move)
local x1,y1,vx1,vy1=0,0,0,0
local x2,y2,vx2,vy2,t2,nn=0,0,0,0,0,0
local xpos1=xpos
local ypos1=ypos
for t=0,7,0.2 do

		if (jum==1) then
			ypos1=yp(tp(ypos)+t)
		end
		x1=x+vx*t
		if (x1<31.5) then x1=2*31.5-x1 end
		if (x1>368.5) then x1=2*368.5-x1 end
		y1=yb(y,vy,t)

		if ((xpos1-x1)^2+(ypos1+19-y1)^2<(31.5+25)^2) then
			local dx=x1-xpos1
			local dy=y1-(ypos1+19)
			local l=math.sqrt(dx^2+dy^2)
			vx1=dx/l
			vy1=dy/l
			x1=x1+vx1*3
			y1=y1+vy1*3
			vy1=vy1*13.125
			vx1=vx1*13.125
			x2,y2,vx2,vy2,t2,nn=estimate(x1,y1,vx1,vy1,targety,2)
			break

		end
end

return x2,y2,x1,y1,vx1,vy1
end

function playto(position)

	if (math.abs(est-esto3)>0.2) then
		delta=30
		esto3=est
		imp,impt,impf=0,0,0
		x1=0
		t=27
		typ1=60
		typ2=120
				if (position<400) then
					n1=2
					n2=-3
				elseif (position>600) then
					n1=-4
					n2=-11
				else
					n1=-1
					n2=-8
				end
		while (t>=0) do

			if (t==0) then j=0 else j=1 end
			t1f=t
			y1f=yp(t1f)
			t2g=math.floor(tb(y,vy,y1f+h,2))
			y2f=yb(y,vy,t2g)
			vy2f=vy-g*t2g
			x2f,y2f,vx2f,vy2f,t2f,_=estimate(x,y,vx,vy,y2f-vy2f/30,2)
			t1f=math.floor(tp(y2f-h))
			y1f=yp(t1f)
			if (t1f+math.abs(math.ceil((tp2(posy(),vp))))<t2f) and (t2g>1) and (t2f>1) then

				for x1f=pos(x2f)+n1*4.5,pos(x2f)+n2*4.5,-4.5 do
					impf,_,xaf,yaf,vxaf,vyaf=impact(x2f,y2f,vx2f,vy2f,x1f,y1f,220,j,0)

					if (impf>position-delta) and (math.abs(posx()-x1f)/4.5+1<t2f) and (x1f>0) and (x1f<330) and (impf<position+delta) then
						imp=impf
						x1=x1f
						y1=y1f
						t1=t1f
						x2=x2f
						y2=y2f
						t2=t2f
						vx2=vx2f
						vy2=vy2f
						xa=xaf
						ya=yaf
						vxa=vxaf
						vya=vyaf
						break
					end
					if (impf>position+delta) and ((x1f-pos(x2f))/4.5<0) then break end
				end

	
			end
			if (imp>position-delta) and (imp<position+delta) then break end
		if (t>15) then t=t-6
		else t=t-3 end
		end
		t2=t2+1

	end

	if (x1>0) and (imp>0) then
	t2=t2-1
		move(x1)
		if (t2<=t1+0.1) and (y1>146) then
			 jump()
		end
	else
 		move(est+4.5)
	end
end

function net()

	if (math.abs(est-esto2)>0.2) then
		esto2=est
		imp,impt,impf=0,0,0
		x1=0
		t=27
		typ1=60
		typ2=120

		while (t>=0) do
			if (t==0) then j=0 else j=1 end
			t1f=t
			y1f=yp(t1f)
			t2g=math.floor(tb(y,vy,y1f+h,2))
			y2f=yb(y,vy,t2g)
			vy2f=vy-g*t2g
			x2f,y2f,vx2f,vy2f,t2f,_=estimate(x,y,vx,vy,y2f-vy2f/30,2)
			t1f=math.floor(tp(y2f-h))
			y1f=yp(t1f)
			if (t1f+math.abs(math.ceil((tp2(posy(),vp))))+2<t2f) and (t2g>1) and (t2f>1) then
				for x1f=pos(x2f)-1*4.5,pos(x2f)-10*4.5,-4.5 do
					impf,_,xaf,yaf,vxaf,vyaf=impact(x2f,y2f,vx2f,vy2f,x1f,y1f,220,j,0)
					if (impf>400) and (math.abs(posx()-x1f)/4.5<t2f) and (x1f>0) and (x1f<330) and (impf<438) then
						imp=impf
						x1=x1f
						y1=y1f
						t1=t1f
						x2=x2f
						y2=y2f
						t2=t2f
						vx2=vx2f
						vy2=vy2f
						xa=xaf
						ya=yaf
						vxa=vxaf
						vya=vyaf
						break
					end
					if (imp>400) then break end
				end

	
			end
			if (imp>400) and (imp<438) then break end
		if (t>15) then t=t-6
		else t=t-3 end
		end
		t2=t2+1

	end

	if (x1>0) and (imp>0) then
	t2=t2-1
		move(x1)
		if (t2<=t1+0.1) and (y1>146) then
			 jump()
		end
	else
 		playto(600)
	end
end


function attack()

	if (math.abs(est-esto1)>0.2) then
		h2=900
		esto1=est
		imp,impt,impf=0,0,0
		x1=0
		t=27
		typ1=60
		typ2=120

		while (t>=0) do
			if (t==0) then j=0 else j=1 end
			t1f=t
			y1f=yp(t1f)
			t2g=math.floor(tb(y,vy,y1f+h,2))
			y2f=yb(y,vy,t2g)
			vy2f=vy-g*t2g
			x2f,y2f,vx2f,vy2f,t2f,_=estimate(x,y,vx,vy,y2f-vy2f/30,2)
			t1f=math.floor(tp(y2f-h))
			y1f=yp(t1f)
			if (t1f+math.abs(math.ceil((tp2(posy(),vp))))+2<t2f) and (t2g>1) and (t2f>1) then
				for x1f=pos(x2f)-20*4.5,pos(x2f)-4*4.5,4.5 do
					impf,_,xaf,yaf,vxaf,vyaf=impact(x2f,y2f,vx2f,vy2f,x1f,y1f,220,j,0)
					h1=yb(yaf,vyaf,(380-xaf)/vxaf)
					h2=yb(yaf,vyaf,(420-xaf)/vxaf)
					height=316+7+31.5

					if (impf>432) and (math.abs(posx()-x1f)/4.5+1<t2f) and (x1f>0) and (x1f<330) and (h2>height+typ1) and (h1>height+typ1) and (h2<height+typ2) and (h1<height+typ2)then
						imp=impf
						x1=x1f
						y1=y1f
						t1=t1f
						x2=x2f
						y2=y2f
						t2=t2f
						vx2=vx2f
						vy2=vy2f
						xa=xaf
						ya=yaf
						vxa=vxaf
						vya=vyaf
						break
					end
					if (impf>432) and (h2>height+typ2) then break end
				end

	
			end
			if (imp>0) then break end
		if (t>15) then t=t-6
		else t=t-3 end
		end
		t2=t2+1

	end

	if (x1>0) and (imp>0) then
	t2=t2-1
		move(x1)
		if (t2<=t1+0.1) and (y1>146) then
			 jump()
		end
	else
 		playto(600)
	end
end





function OnOpponentServe()
reset()
	if (math.abs(pos2(posx())-posx())>1) then
			move(400)
		else
			move(200)
	end
end

function OnServe(ballready)
reset()
	if (math.abs(pos2(posx())-posx())>1) then
			move(400)
		else
			if (math.abs(posx()-198)<2) then
					jump()
				else
					move(198)
			end
	end
end



function OnGame()

	yp2=y1p
	y1p=posy()
	vp=y1p-yp2
	
	if (math.abs(imp1-imp)>0.1) then
		imp2=imp1
		imp1=imp
	end
	
	esttold=estt
	netold=netc
	toucho=touch
	touch=touches()
	if (touch<toucho) then p=math.random() 
pp=math.random()
reset()
end
--phase
--0: Spielstop
--1: eigenes Feld
--2: gegnerisches Feld
--3: Netz mit Block
--4: Rest von 3
--5: Netz ohne Block
--6: Ball hängt fest

	x,y,vx,vy=ballx(),bally(),bspeedx(),bspeedy()
	estt,yestt,vxestt,vyestt,tnet,netc=estimate(x,y,vx,vy,220)
	
	if (math.abs(esttold-estt)<0.1) then -- Schutz gegen Fehler bei der estimate-Funktion während Netz/Wandkollisionen
			est=estt
	end
	if (active==1) then
			if (phase==3) and ((est>438.5) or (est<361.5)) then
				nettime=11
				phase=4
				elseif (phase==4) and (nettime>0) then
					nettime=nettime-1
				else
					if (est>438.5) then
							phase=2
						elseif (est<438.5) and (est>361.5) then
							if (((vyestt-g*(80-estt)/vxestt)>0) or (vxestt<0)) and ((360-posx())/4.5<tnet+1) then
									phase=3
								else
									phase=5
							end
						else
							phase=1
					end
			end
		else
			phase=0
	end
	if (bally()<130) then active=0 end
	
	if (math.sqrt((ballx()-400)^2+(bally()-316)^2)<(31.5+7)) and (math.sqrt((bspeedx())^2+(bspeedy())^2)<2) then phase=6 end
	
	if (phase==2) then
			move(200)
		elseif (phase==1) then
			if (p<0.6) then
					if (p<0.2) and (touch==0) then
							playto(300)
						elseif (touch==1) or ((touch==0) and (p>=0.2)) then
							attack()
						else
							playto(600)
					end
				elseif (p>=0.6) and (p<0.9) then
					if (p<0.7) and (touch==0) then
							playto(300)
						else
							playto(770)
					end
-- 				elseif (p>=0.9) and (p<0.95) then
-- 					playto(480)
				else
					if (p<0.95) and (touch==0) then
							playto(300)
						elseif (touch==1) or ((touch==0) and (p>=0.95)) then
							playto(480)
						else
							playto(600)
					end
			end
		elseif (phase==3) then
			if (tnet<=tp(393)-3) or (nettime>0) then jump() end
			if (math.abs(posx()-360)/4.5-7<=tnet) then
					left()
				else
					right()
			end
		elseif (phase==4) then
			right()
			jump()
		elseif (phase==5) then
			move(200)
		elseif (phase==6) then
			if (posx()>300) then
				jump()
			end
			right()
	end
	
	if ((x1==0) or (imp==0)) and (phase==1) then 
		move(est)
	end
-- 	debug(0)
-- 	debug(imp)
-- 	debug(est)
end