-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.py
83 lines (60 loc) · 2.1 KB
/
functions.py
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
import pygame as pg
from pygame.math import Vector2 as Pos
from pygame.rect import Rect
percent = lambda All,part: (100/All) * part
import math
import cv2
"""
function RectCircleColliding(circle,rect){
var distX = Math.abs(circle.x - rect.x-rect.w/2);
var distY = Math.abs(circle.y - rect.y-rect.h/2);
if (distX > (rect.w/2 + circle.r)) { return false; }
if (distY > (rect.h/2 + circle.r)) { return false; }
if (distX <= (rect.w/2)) { return true; }
if (distY <= (rect.h/2)) { return true; }
var dx=distX-rect.w/2;
var dy=distY-rect.h/2;
return (dx*dx+dy*dy<=(circle.r*circle.r));
}
"""
def polygon( surface, color, center: Pos, radius, edges, angle=0,width=0 ) :
top = center.copy()
top.y -= radius
points = [rotate(center, top, ((360 / edges) * j + angle)) for j in range(edges)]
return pg.draw.polygon(surface, color, points,width=width)
def cap(num,min_,max_):
if num < min_: num = min_
if num > max_: num = max_
return num
def rotate(origin, point, angle):
angle = math.radians(angle)
ox, oy = origin
px, py = point
qx = ox + math.cos(angle) * (px - ox) - math.sin(angle) * (py - oy)
qy = oy + math.sin(angle) * (px - ox) + math.cos(angle) * (py - oy)
return qx, qy
def RectCircleCollision(circle_center:Pos,circle_radius,rect:Rect):
distX = abs(circle_center.x - rect.x-rect.w/2)
distY = abs(circle_center.y - rect.y-rect.h/2)
if distX > (rect.w/2 + circle_radius): return False
if distY > (rect.h/2 + circle_radius): return False
dx = distX - rect.w/2
dy = distY - rect.h/2
return dx*dx+dy*dy<=(circle_radius*circle_radius)
def get_video_frames(path:str,max_frame=100,read_counter=5) -> list[pg.surface.Surface]:
L = []
video = cv2.VideoCapture(path)
c = 0
while True:
c+=1
if len(L)>=max_frame:
break
s,v = video.read()
if s:
video_surf = pg.image.frombuffer(v.tobytes(), v.shape[1 : :-1],
"BGR")
if c % read_counter == 0 :
L.append(video_surf)
else:
break
return L