forked from vjosset/ktdash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
printop.php
531 lines (489 loc) · 12.7 KB
/
printop.php
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
<?php
if ($_SERVER['REQUEST_METHOD'] != "GET") {
header('HTTP/1.0 400 Invalid Request');
die();
}
$root = $_SERVER['DOCUMENT_ROOT'];
require_once $root . '/include.php';
// Get the specified roster operative
$roid = getIfSet($_REQUEST['roid'], '');
if ($roid == null || $roid == '') {
// Invalid Roster Operative ID
// Operative not found - Go to user's roster
header("Location: /rosters.php");
exit;
}
// Get the operative
$op = RosterOperative::GetRosterOperative($roid);
if ($op == null) {
// Invalid Roster Operative ID
// Operative not found - Go to user's roster
header("Location: /rosters.php");
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<?php include "header.shtml" ?>
<?php
$pagetitle = $op->opname . " - Print Operative";
$pagedesc = $op->opname . " - Print Operative";
$pagekeywords = "";
$pageimg = "https://ktdash.app/api/operativeportrait.php?roid=" . $roid;
$pageurl = "https://ktdash.app/printop.php?roid=" . $roid;
include "og.php"
?>
<link rel="stylesheet" href="/css/bootstrap-print.min.css">
<style>
<?php include "css/styles.css"; ?>
</style>
</head>
<body>
<!-- Front of Card -->
<div>
<div class="card darkcard m-1 h-100 opcard small lh-sm">
<div class="card-body m-1 p-0">
<!-- Print Op Card Title -->
<div class="card-title row py-0 my-0">
<h2 class="col-7 text-nowrap"><?php echo $op->opname ?></h2>
<div class="col-5 text-end small">
<?php echo $op->optype ?>
</div>
</div>
<!-- Operative Card Content -->
<div class="opinfo_<?php echo $op->rosteropid ?> p-0">
<!-- Dashboard Info -->
<div>
<h6>W:
<?php
for ($i = 0; $i < $op->W; $i++)
{
// Flag for "Injured" cutoff
//if ($i == floor($op->W / 2)) {
// echo " | ";
//}
?><input type="checkbox" /><?php
}
?>
</h6>
</div>
<!-- Operative Portrait and Stats Grid -->
<div class="row m-0 p-0 line-top-light">
<!-- Dashboard/Roster Portrait -->
<div class="col-5 m-0 p-0 pointer" style="overflow: hidden;">
<img id="opportrait_<?php echo $op->rosteropid ?>"
src="/api/operativeportrait.php?roid=<?php echo $op->rosteropid ?>"
style="height: 100%; width: 100%; min-height: 100px; max-height: 140px; object-fit:cover; object-position:50% 0%; display:block;" />
</div>
<!-- Operative Stats -->
<div class="col-7 p-0">
<h4>
<table width="100%" class="text-center">
<tr class="orange">
<td width="16%">M</td>
<td width="16%">APL</td>
<td width="16%">GA</td>
</tr>
<tr>
<td nowrap="true"><?php echo replaceDistance($op->M) ?></td>
<td><?php echo $op->APL ?></td>
<td><?php echo $op->GA ?></td>
</tr>
<tr class="orange">
<td width="16%">DF</td>
<td width="16%">SV</td>
<td width="16%">W</td>
</tr>
<tr>
<td><?php echo $op->DF ?></td>
<td> <?php echo $op->DF ?></td>
<td><?php echo $op->W ?></td>
</tr>
</table>
</h4>
</div>
</div>
<!-- Weapons -->
<div class="px-1 small lh-sm">
<table width="100%" class="line-top-light">
<thead>
<tr>
<td>
<h6>Weapons</h6>
</td>
<td class="text-center">
<h6> A </h6>
</td>
<td class="text-center">
<h6> BS </h6>
</td>
<td class="text-center">
<h6> D </h6>
</td>
</tr>
</thead>
<!-- Weapons (Regular + Equipment) -->
<?php
$weapons = [];
foreach ($op->weapons as $wep) {
$weapons[] = $wep;
}
foreach ($op->equipments as $eq) {
if ($eq->eqtype == 'Weapon') {
$weapons[] = $eq->weapon;
}
}
foreach($weapons as $wep)
{
if (count($wep->profiles) == 1)
{
?>
<tr>
<td width="70%">
<?php
switch ($wep->weptype) {
case "R":
echo "⊕";
break;
case "M":
echo "⚔";
break;
default:
echo "⛭";
break;
}
echo $wep->wepname;
if ($wep->profiles[0]->SR != "")
{
echo " <em>(" . replaceDistance($wep->profiles[0]->SR) . ")</em>";
}
?>
</td>
<td class="text-center h6">
<?php echo $wep->profiles[0]->A ?>
</td>
<td class="text-center h6">
<?php echo $wep->profiles[0]->BS ?>
</td>
<td class="text-center h6">
<?php echo $wep->profiles[0]->D ?>
</td>
</tr>
<?php
}
else
{
?>
<tr>
<td colspan="4">
<?php
switch ($wep->weptype) {
case "R":
echo "⊕";
break;
case "M":
echo "⚔";
break;
default:
echo "⛭";
break;
}
echo $wep->wepname;
?>
</td>
</tr>
<?php
foreach($wep->profiles as $pro)
{
?>
<tr>
<td>
- <?php echo $pro->name ?>
<?php if ($pro->SR != "") {?>
<em>(<?php echo replaceDistance($pro->SR) ?>)</em>
<?php
}
?>
</td>
<td class="text-center h6">
<?php echo $pro->A ?>
</td>
<td class="text-center h6">
<?php echo $pro->BS ?>
</td>
<td class="text-center h6">
<?php echo $pro->D ?>
</td>
</tr>
<?php
}
}
}
?>
</table>
</div>
<!-- Abilities -->
<?php
if (count($op->abilities) > 0)
{
?>
<div class="line-top-light px-1 m-0 small lh-sm">
<h6>Abilities</h6>
<?php
if (count($op->abilities) > 1 || strlen($op->abilities[0]->description) > 500)
{
?>
<div style="columns: 100px 2;">
<?php
}
else
{
?>
<div>
<?php
}
foreach($op->abilities as $ab)
{
?>
<div class="px-1">
<?php echo $ab->title ?>
</div>
<?php
}
// Close the div for abilities
echo "</div>";
?>
</div>
<?php
}
?>
<!-- Unique Actions -->
<?php
if (count($op->uniqueactions) > 0)
{
?>
<div class="line-top-light px-1 m-0 small lh-sm">
<h6>Unique Actions</h6>
<?php
if (count($op->uniqueactions) > 1 || strlen($op->uniqueactions[0]->description) > 500)
{
?>
<div style="columns: 100px 2;">
<?php
}
else
{
?>
<div>
<?php
}
foreach($op->uniqueactions as $ua)
{
?>
<div class="px-1">
<?php echo $ua->title ?> (<?php echo $ua->AP ?> AP)
</div>
<?php
}
// Close the div for unique actions
echo "</div>";
?>
</div>
<?php
}
?>
<!-- Equipment -->
<?php
if (count($op->equipments) > 0)
{
?>
<div class="line-top-light m-0 small lh-sm">
<h6>Equipment</h6>
<?php
if (count($op->equipments) > 1 || strlen($op->equipments[0]->eqdescription) > 500)
{
?>
<div style="columns: 100px 2;">
<?php
}
else
{
?>
<div>
<?php
}
foreach($op->equipments as $eq)
{
?>
<div class="px-1">
<?php
echo $eq->eqname;
if ($eq->eqpts > 0) {
echo " (" . $eq->eqpts . " EP)";
}
?>
</div>
<?php
}
// Close the div for equipments
echo "</div>";
?>
</div>
<?php
}
?>
<!-- Notes -->
<?php
if ($op->notes != null && $op->notes != "")
{
?>
<div class="line-top-light px-1 m-0">
<h6>Notes</h6>
<p class="d-inline px-2" style="text-align:justify;"><?php echo htmlspecialchars($op->notes) ?></p>
</div>
<?php
}
?>
</div>
</div>
<!-- Operative Card Footer -->
<div class="opinfo_{{ operative.rosteropid }} collapse show card-footer m-0 p-1">
<!-- Operative Keywords -->
<div class="align-bottom">
<em class="small"><?php echo htmlentities($op->keywords, ENT_HTML5 , 'UTF-8') ?></em>
</div>
</div>
</div>
</div>
<!-- Back of Card -->
<div>
<div class="card darkcard m-1 h-100 opcard small lh-sm">
<!-- Abilities -->
<?php
if (count($op->abilities) > 0)
{
?>
<div class="px-1 m-0">
<h6>Abilities</h6>
<?php
if (count($op->abilities) > 1 || strlen($op->abilities[0]->description) > 500)
{
?>
<div style="columns: 200px 2;">
<?php
}
else
{
?>
<div>
<?php
}
foreach($op->abilities as $ab)
{
?>
<div class="px-1" style="text-align:justify;">
<strong><?php echo $ab->title ?>: </strong>
<p class="d-inline"><?php echo replaceDistance($ab->description) ?></p>
</div>
<?php
}
// Close the div for abilities
echo "</div>";
?>
</div>
<?php
}
?>
<!-- Unique Actions -->
<?php
if (count($op->uniqueactions) > 0)
{
?>
<div class="line-top-light px-1 m-0">
<h6>Unique Actions</h6>
<?php
if (count($op->uniqueactions) > 1 || strlen($op->uniqueactions[0]->description) > 500)
{
?>
<div style="columns: 200px 2;">
<?php
}
else
{
?>
<div>
<?php
}
foreach($op->uniqueactions as $ua)
{
?>
<div class="px-1" style="text-align:justify;">
<strong><?php echo $ua->title ?> (<?php echo $ua->AP ?> AP): </strong>
<p class="d-inline"><?php echo replaceDistance($ua->description) ?></p>
</div>
<?php
}
// Close the div for unique actions
echo "</div>";
?>
</div>
<?php
}
?>
<!-- Equipment -->
<?php
if (count($op->equipments) > 0)
{
?>
<div class="line-top-light px-1 m-0">
<h6>Equipment</h6>
<?php
if (count($op->equipments) > 1 || strlen($op->equipments[0]->eqdescription) > 500)
{
?>
<div style="columns: 200px 2;">
<?php
}
else
{
?>
<div>
<?php
}
foreach($op->equipments as $eq)
{
?>
<div class="px-1" style="text-align:justify;">
<strong>
<?php
echo $eq->eqname;
if ($eq->eqpts > 0) {
echo " (" . $eq->eqpts . " EP)";
}
?></strong>
<?php if ($eq->eqtype != 'Weapon') {
echo ":";
?>
<p class="d-inline"><?php echo replaceDistance($eq->eqdescription) ?></p>
<?php
} else {
echo " <em>(See Weapons)</em>";
}
?>
</div>
<?php
}
// Close the div for equipment
echo "</div>";
?>
</div>
<?php
}
?>
</div>
</div>
<?php include "footer.shtml" ?>
</body>
</html>