Skip to content

Commit bc26c29

Browse files
authored
Merge pull request #30 from kostyabet/dev
PR #7 Create Go REST API based on PostgresSQL
2 parents ae000be + c0f727f commit bc26c29

File tree

22 files changed

+658
-100
lines changed

22 files changed

+658
-100
lines changed

.vs/TacticsGame-fasm/v17/.wsuo

12.5 KB
Binary file not shown.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"Version": 1,
3+
"WorkspaceRootPath": "C:\\KostyaBetenya\\GitHub\\TacticsGame-fasm\\",
4+
"Documents": [
5+
{
6+
"AbsoluteMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|C:\\KostyaBetenya\\GitHub\\TacticsGame-fasm\\winhttp.dll||{177559E0-D141-11D0-92DF-00A0C9138C45}",
7+
"RelativeMoniker": "D:0:0:{A2FE74E1-B743-11D0-AE1A-00A0C90FFFC3}|\u003CMiscFiles\u003E|solutionrelative:winhttp.dll||{177559E0-D141-11D0-92DF-00A0C9138C45}"
8+
}
9+
],
10+
"DocumentGroupContainers": [
11+
{
12+
"Orientation": 0,
13+
"VerticalTabListWidth": 256,
14+
"DocumentGroups": [
15+
{
16+
"DockedWidth": 200,
17+
"SelectedChildIndex": 0,
18+
"Children": [
19+
{
20+
"$type": "Document",
21+
"DocumentIndex": 0,
22+
"Title": "winhttp.dll",
23+
"DocumentMoniker": "C:\\KostyaBetenya\\GitHub\\TacticsGame-fasm\\winhttp.dll",
24+
"RelativeDocumentMoniker": "winhttp.dll",
25+
"ToolTip": "C:\\KostyaBetenya\\GitHub\\TacticsGame-fasm\\winhttp.dll",
26+
"RelativeToolTip": "winhttp.dll",
27+
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.001697|",
28+
"WhenOpened": "2024-12-09T20:03:01.477Z"
29+
},
30+
{
31+
"$type": "Bookmark",
32+
"Name": "ST:0:0:{cce594b6-0c39-4442-ba28-10c64ac7e89f}"
33+
}
34+
]
35+
}
36+
]
37+
}
38+
]
39+
}

.vs/VSWorkspaceState.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"ExpandedNodes": [
3+
""
4+
],
5+
"SelectedNode": "\\winhttp.dll",
6+
"PreviewInSolutionExplorer": false
7+
}

.vs/slnx.sqlite

96 KB
Binary file not shown.
Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,30 @@
1-
proc Animation.Static.LoadingPage.Bar
2-
mov ebx, lp_bar_main_coords
3-
add ebx, 12
4-
mov eax, [ebx]
5-
cmp eax, 1286
6-
je .skip
7-
inc eax
8-
mov [ebx], eax
9-
add ebx, 24
10-
mov [ebx], eax
11-
stdcall Scripts.Getters.ConvertCoords, lp_bar_main_coords, lp_bar_main_design
12-
jmp .end
13-
.skip:
14-
mov [CurentPage], MainPage
1+
; progressStatus 0..100
2+
startValue dd 632
3+
endValue dd 1286
4+
progressBarLen dd 654
5+
maxValue dd 100
6+
minValue dd 0
7+
proc Animation.Static.LoadingPage.Bar uses eax ebx edx
8+
locals
9+
result dd ?
10+
endl
11+
fild dword [progressStatus]
12+
fidiv dword [maxValue]
13+
fimul dword [progressBarLen]
14+
fistp dword [result]
15+
mov eax, [result]
16+
add eax, [startValue]
17+
18+
mov ebx, lp_bar_main_coords
19+
add ebx, 12
20+
mov edx, [ebx]
21+
mov [ebx], eax
22+
stdcall Scripts.Getters.ConvertCoords, lp_bar_main_coords, lp_bar_main_design
23+
24+
mov eax, [maxValue]
25+
cmp [progressStatus], eax
26+
jne .end
27+
mov [CurentPage], MainPage
1528
.end:
1629
ret
1730
endp

Graphics/Draw/Shapes/Sprite.asm

Lines changed: 0 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -21,81 +21,6 @@ proc Graphics.Draw.Shapes.Sprite uses eax,\
2121
ret
2222
endp
2323

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-
9924
proc Log.Create
10025

10126
invoke AllocConsole

Server/DataBaseAPI/.env

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
DEV_HOST=localhost
2+
DEV_PORT=8080
3+
PROD_HOST=emotioniq.by
4+
PROD_PORT=8080

0 commit comments

Comments
 (0)