-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathcredits.pl
More file actions
executable file
·1317 lines (1157 loc) · 48 KB
/
Copy pathcredits.pl
File metadata and controls
executable file
·1317 lines (1157 loc) · 48 KB
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
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/perl
#
# This tools is kind of a hack to be able to maintain the credits list of
# ScummVM in a single central location. We then generate the various versions
# of the credits in other places from this source. In particular:
# - The AUTHORS file
# - The gui/credits.h header file
# - The Credits.rtf file used by the macOS port
# - The credits.yaml, alternative version for use on the website
# - The credits.rst file used by the manual
#
# Initial version written by Fingolfin in December 2004.
#
use strict;
use Text::Wrap;
if ($Text::Wrap::VERSION < 2001.0929) {
die "Text::Wrap version >= 2001.0929 is required. You have $Text::Wrap::VERSION\n";
}
my $mode = "";
my $max_name_width;
# Count the level in the section hierarchy, i.e. how deep we are currently nested
# in terms of 'sections'.
my $section_level = 0;
# Variables used for yaml output
my $person_started = 0;
my $group_started = 0;
my $group_indent = "";
my $paragraph_started = 0;
my $indent = "";
# Count how many sections there have been on this level already
my @section_count = ( 0, 0, 0 );
if ($#ARGV >= 0) {
$mode = "TEXT" if ($ARGV[0] eq "--text"); # AUTHORS file
$mode = "CPP" if ($ARGV[0] eq "--cpp"); # credits.h (for use by about.cpp)
$mode = "RTF" if ($ARGV[0] eq "--rtf"); # Credits.rtf (macOS About box)
$mode = "YAML" if ($ARGV[0] eq "--yaml"); # YAML (Simple format, used in the Website)
$mode = "RST" if ($ARGV[0] eq "--rst"); # Restructured text (used in the manual)
}
if ($mode eq "") {
print STDERR "Usage: $0 [--text | --cpp | --rtf | --yaml | --rst]\n";
print STDERR " Just pass --text / --cpp / --rtf / --yaml / --rst as parameter, and credits.pl\n";
print STDERR " will print out the corresponding version of the credits to stdout.\n";
exit 1;
}
$Text::Wrap::unexpand = 0;
if ($mode eq "TEXT") {
$Text::Wrap::columns = 78;
$max_name_width = 30; # The maximal width of a name.
} elsif ($mode eq "CPP") {
$Text::Wrap::columns = 48; # Approx.
}
# Convert HTML entities to ASCII for the plain text mode
sub html_entities_to_ascii {
my $text = shift;
# For now we hardcode these mappings
$text =~ s/Á/A/g;
$text =~ s/á/a/g;
$text =~ s/é/e/g;
$text =~ s/í/i/g;
$text =~ s/ì/i/g;
$text =~ s/ó/o/g;
$text =~ s/ø/o/g;
$text =~ s/ú/u/g;
$text =~ s/ą/a/g;
$text =~ s/č/c/g;
$text =~ s/Ł/L/g;
$text =~ s/ł/l/g;
$text =~ s/ś/s/g;
$text =~ s/Ľ/L/g;
$text =~ s/Š/S/g;
$text =~ s/å/aa/g;
$text =~ s/ñ/n/g;
$text =~ s/ä/a/g;
$text =~ s/ë/e/g;
$text =~ s/ü/ue/g;
# HACK: Torbj*o*rn but G*oe*ffringmann and R*oe*ver and J*oe*rg
$text =~ s/Torbjörn/Torbjorn/g;
$text =~ s/ö/oe/g;
$text =~ s/&/&/g;
return $text;
}
# Convert HTML entities to UTF-8 for Restructured Text output
sub html_entities_to_utf8 {
my $text = shift;
$text =~ s/Á/\xC3\x81/g;
$text =~ s/á/\xC3\xA1/g;
$text =~ s/é/\xC3\xA9/g;
$text =~ s/í/\xC3\xAD/g;
$text =~ s/ì/\xC3\xAC/g;
$text =~ s/ó/\xC3\xB3/g;
$text =~ s/ø/\xC3\xB8/g;
$text =~ s/ú/\xC3\xBA/g;
$text =~ s/ą/\xC4\x85/g;
$text =~ s/č/\xC4\x8D/g;
$text =~ s/Ł/\xC5\x81/g;
$text =~ s/ł/\xC5\x82/g;
$text =~ s/ś/\xC5\x9B/g;
$text =~ s/Ľ/\xC4\xBD/g;
$text =~ s/Š/\xC5\xA0/g;
$text =~ s/å/\xC3\xA5/g;
$text =~ s/ñ/\xC3\xB1/g;
$text =~ s/ä/\xC3\xA4/g;
$text =~ s/ë/\xC3\xAB/g;
$text =~ s/ü/\xC3\xBC/g;
$text =~ s/ö/\xC3\xB6/g;
$text =~ s/&/&/g;
return $text;
}
# Convert HTML entities to C++ characters
sub html_entities_to_cpp {
my $text = shift;
$text =~ s/Á/\\303\\201/g;
$text =~ s/á/\\303\\241/g;
$text =~ s/é/\\303\\251/g;
$text =~ s/í/\\303\\255/g;
$text =~ s/ì/\\303\\254/g;
$text =~ s/ó/\\303\\263/g;
$text =~ s/ø/\\303\\270/g;
$text =~ s/ú/\\303\\272/g;
$text =~ s/ą/\\304\\205/g;
$text =~ s/č/\\304\\215/g;
$text =~ s/Ł/\\305\\201/g;
$text =~ s/ł/\\305\\202/g;
$text =~ s/ś/\\305\\233/g;
$text =~ s/Ľ/\\304\\275/g;
$text =~ s/Š/\\305\\240/g;
$text =~ s/å/\\303\\245/g;
$text =~ s/ñ/\\303\\261/g;
$text =~ s/ä/\\303\\244/g;
$text =~ s/ë/\\303\\253/g;
$text =~ s/ü/\\303\\274/g;
$text =~ s/ö/\\303\\266/g;
$text =~ s/&/&/g;
return $text;
}
# Convert HTML entities to RTF codes
# This is using the Mac OS Roman encoding
sub html_entities_to_rtf {
my $text = shift;
$text =~ s/Á/\\'c1/g;
$text =~ s/á/\\'87/g;
$text =~ s/é/\\'8e/g;
$text =~ s/í/\\'92/g;
$text =~ s/ì/\\'93/g;
$text =~ s/ó/\\'97/g;
$text =~ s/ø/\\'bf/g;
$text =~ s/ú/\\'9c/g;
$text =~ s/å/\\'8c/g;
# The following numerical values are decimal!
$text =~ s/ą/\\uc0\\u261 /g;
$text =~ s/č/\\uc0\\u269 /g;
$text =~ s/Ł/\\uc0\\u321 /g;
$text =~ s/ł/\\uc0\\u322 /g;
$text =~ s/ś/\\uc0\\u347 /g;
$text =~ s/Ľ/\\uc0\\u317 /g;
$text =~ s/Š/\\uc0\\u352 /g;
# Back to hex numbers
$text =~ s/ñ/\\'96/g;
$text =~ s/ä/\\'8a/g;
$text =~ s/ë/\\'91/g;
$text =~ s/ö/\\'9a/g;
$text =~ s/ü/\\'9f/g;
$text =~ s/&/&/g;
return $text;
}
#
# Small reference of the RTF commands used here:
#
# \fs28 switches to 14 point font (28 = 2 * 14)
# \pard reset to default paragraph properties
#
# \ql left-aligned text
# \qr right-aligned text
# \qc centered text
# \qj justified text
#
# \b turn on bold
# \b0 turn off bold
#
# For more information: <http://latex2rtf.sourceforge.net/rtfspec.html>
#
sub begin_credits {
my $title = shift;
if ($mode eq "RTF") {
print '{\rtf1\mac\ansicpg10000' . "\n";
print '{\fonttbl\f0\fswiss\fcharset77 Helvetica-Bold;\f1\fswiss\fcharset77 Helvetica;}' . "\n";
print '{\colortbl;\red255\green255\blue255;\red0\green128\blue0;\red128\green128\blue128;}' . "\n";
print '\vieww6920\viewh15480\viewkind0' . "\n";
print "\n";
} elsif ($mode eq "CPP") {
print "// This file was generated by credits.pl. Do not edit by hand!\n";
print "static const char *const credits[] = {\n";
} elsif ($mode eq "YAML") {
print "# This file was generated by credits.pl. Do not edit by hand!\n";
} elsif ($mode eq "RST") {
print "..\n";
print " This file was generated by credits.pl. Do not edit by hand!\n";
print "\n";
print "=========\n";
print "Credits\n";
print "=========\n";
print "\n";
}
}
sub end_credits {
if ($mode eq "TEXT") {
} elsif ($mode eq "RTF") {
print "}\n";
} elsif ($mode eq "CPP") {
print "};\n";
}
}
sub begin_section {
my $title = shift;
my $anchor = shift;
if ($mode eq "TEXT") {
$title = html_entities_to_ascii($title);
if ($section_level >= 2) {
$title .= ":"
}
print " " x $section_level . $title."\n";
if ($section_level eq 0) {
print " " x $section_level . "*" x (length $title)."\n";
} elsif ($section_level eq 1) {
print " " x $section_level . "-" x (length $title)."\n";
}
} elsif ($mode eq "RTF") {
$title = html_entities_to_rtf($title);
# Center text
print '\pard\qc' . "\n";
print '\f0\b';
if ($section_level eq 0) {
print '\fs40 ';
} elsif ($section_level eq 1) {
print '\fs32 ';
}
# Insert an empty line before this section header, *unless*
# this is the very first section header in the file.
if ($section_level > 0 || @section_count[0] > 0) {
print "\\\n";
}
print '\cf2 ' . $title . "\n";
print '\f1\b0\fs24 \cf0 \\' . "\n";
} elsif ($mode eq "CPP") {
if ($section_level eq 0) {
# TODO: Would be nice to have a 'fat' or 'large' mode for
# headlines...
$title = html_entities_to_cpp($title);
print '"C1""'.$title.'",' . "\n";
print '"",' . "\n";
} else {
$title = html_entities_to_cpp($title);
print '"C1""'.$title.'",' . "\n";
}
} elsif ($mode eq "YAML") {
my $key = "";
$indent = (" " x ($section_level));
if ($section_level eq 1) {
$key = "subsection:\n";
}
if ($section_level < 2) {
if (@section_count[$section_level] eq 0) {
print $indent . $key;
}
print $indent . "-\n";
print $indent . " title: \"" . $title . "\"\n";
if ($anchor) {
print $indent . " anchor: \"" . $anchor . "\"\n";
}
}
} elsif ($mode eq "RST") {
$title = html_entities_to_utf8($title);
print $title."\n";
my $rst_header = "";
if ($section_level eq 0) {
print "=" x (length $title)."\n\n";
} elsif ($section_level eq 1) {
print "*" x (length $title)."\n\n";
} elsif ($section_level eq 2) {
print "^" x (length $title)."\n\n";
}
}
# Implicit start of person list on section level 2
if ($section_level >= 2) {
begin_persons($title, 1);
}
@section_count[$section_level]++;
$section_level++;
@section_count[$section_level] = 0;
}
sub end_section {
$section_level--;
$paragraph_started = 0;
$group_started = 0;
# Implicit end of person list on section level 2
if ($section_level >= 2) {
end_persons();
$group_started = 1;
}
if ($mode eq "TEXT") {
# nothing
} elsif ($mode eq "RTF") {
# nothing
} elsif ($mode eq "CPP") {
print '"",' . "\n";
}
}
sub begin_persons {
my $title = shift;
my $level = shift;
if ($mode eq "YAML") {
$group_indent = $level eq 1 ? " " : (" " x $section_level);
if ($group_started == 0) {
print $group_indent . "group:\n";
$group_started = 1;
}
print $group_indent . "-\n";
print $group_indent . " name: \"" . $title . "\"\n";
} elsif ($mode eq "RST") {
print ".. list-table::\n";
print " :widths: 35 65\n";
print "\n";
}
}
sub end_persons {
if ($mode eq "TEXT") {
print "\n";
} elsif ($mode eq "RTF") {
# nothing
} elsif ($mode eq "YAML") {
$person_started = 0;
} elsif ($mode eq "RST") {
print "\n";
}
}
sub add_person {
my $name = shift;
my $nick = shift;
my $desc = shift;
my $tab;
if ($mode eq "TEXT") {
my $min_name_width = length $desc > 0 ? $max_name_width : 0;
$name = $nick if $name eq "";
$name = html_entities_to_ascii($name);
if (length $name > $max_name_width) {
print STDERR "Warning: max_name_width is too small (" . $max_name_width . " < " . (length $name) . " for \"" . $name. "\")\n";
}
$desc = html_entities_to_ascii($desc);
$tab = " " x ($section_level * 2 + 1);
printf $tab."%-".$min_name_width.".".$max_name_width."s", $name;
# Print desc wrapped
if (length $desc > 0) {
my $inner_indent = ($section_level * 2 + 1) + $max_name_width + 3;
my $multitab = " " x $inner_indent;
print " - " . substr(wrap($multitab, $multitab, $desc), $inner_indent);
}
print "\n";
} elsif ($mode eq "RTF") {
$name = $nick if $name eq "";
$name = html_entities_to_rtf($name);
# Center text
print '\pard\qc' . "\n";
# Activate 1.5 line spacing mode
print '\sl360\slmult1';
# The name
print $name . "\\\n";
# Description using italics
if (length $desc > 0) {
$desc = html_entities_to_rtf($desc);
print '\pard\qc' . "\n";
print "\\cf3\\i " . $desc . "\\i0\\cf0\\\n";
}
} elsif ($mode eq "CPP") {
$name = $nick if $name eq "";
$name = html_entities_to_cpp($name);
print '"C0""'.$name.'",' . "\n";
# Print desc wrapped
if (length $desc > 0) {
$desc = html_entities_to_cpp($desc);
print '"C2""'.$desc.'",' . "\n";
}
} elsif ($mode eq "YAML") {
$indent = $group_indent . " ";
if ($person_started eq 0) {
print $indent . "person:\n";
$person_started = 1;
}
print $indent . "-\n";
$name = "???" if $name eq "";
print $indent . " name: \"" . $name . "\"\n";
print $indent . " alias: \"" . $nick . "\"\n";
print $indent . " description: \"" . $desc . "\"\n";
} elsif ($mode eq "RST") {
my $min_name_width = length $desc > 0 ? $max_name_width : 0;
$name = $nick if $name eq "";
$name = html_entities_to_utf8($name);
$desc = html_entities_to_utf8($desc);
print " * - " . $name . "\n";
if (length $desc > 0) {
print " - " . $desc . "\n";
} else {
print " -\n";
}
}
}
sub add_paragraph {
my $text = shift;
my $tab;
if ($mode eq "TEXT") {
$tab = " " x ($section_level * 2 + 1);
print wrap($tab, $tab, html_entities_to_ascii($text))."\n";
print "\n";
} elsif ($mode eq "RTF") {
$text = html_entities_to_rtf($text);
# Center text
print '\pard\qc' . "\n";
print "\\\n";
print $text . "\\\n";
} elsif ($mode eq "CPP") {
$text = html_entities_to_cpp($text);
my $line_start = '"C0""';
my $line_end = '",';
print $line_start . $text . $line_end . "\n";
print $line_start . $line_end . "\n";
} elsif ($mode eq "YAML") {
$indent = (" " x $section_level);
if ($paragraph_started eq 0) {
print $indent . "paragraph:\n";
$paragraph_started = 1;
}
print $indent . "- \"" . $text . "\"\n";
} elsif ($mode eq "RST") {
$text = html_entities_to_utf8($text);
print $text . "\n\n";
}
}
sub readfile { do { local(@ARGV,$/) = $_[0]; <> } }
#
# Now follows the actual credits data! The format should be clear, I hope.
# Note that people are sorted by their last name in most cases; in the
# 'Team' section, they are first grouped by category (Engine; porter; misc).
#
begin_credits("Credits");
begin_section("ScummVM Team", "scummvm_team");
begin_section("Project Leaders", "project_leader");
begin_persons();
add_person("Eugene Sandulenko", "sev", "Project Leader");
add_person("Lothar Serra Mari", "felsqualle", "Project Co-Leader and Admin");
end_persons();
end_section();
begin_section("PR Office", "pr");
begin_persons();
add_person("Arnaud Boutonné", "Strangerke", "Public Relations Officer, Project Administrator");
add_person("Eugene Sandulenko", "sev", "Project Leader");
end_persons();
end_section();
begin_section("Retired Project Leaders", "retired_leaders");
begin_persons();
add_person("James Brown", "ender", "");
add_person("Vincent Hamm", "yaz0r", "ScummVM co-founder, Original Cruise/CinE author");
add_person("Max Horn", "Fingolfin", "");
add_person("Ludvig Strigeus", "ludde", "Original ScummVM and SimonVM author");
end_persons();
end_section();
begin_section("Engine Teams", "engine_teams");
# read the credits from all engines; this is a bit of a hack.
# if one wants different sorting (e.g. based on the full engine name, not
# just the abbreviation used for the directory name), then somewhat more
# sophistication is needed
my $dir;
my @dirs = `ls -d engines/*/ | sort`;
foreach $dir (@dirs) {
my $file = "${dir}/credits.pl";
$file =~ s/\R//g;
if (-e $file) {
my $credits_pl = readfile($file);
eval $credits_pl;
}
}
end_section();
begin_section("Backend Teams", "backend_teams");
begin_section("Atari");
add_person("Miro Kropáček", "mikrosk", "");
end_section();
begin_section("Android");
add_person("Andre Heider", "dhewg", "");
add_person("Angus Lees", "Gus", "");
add_person("Lubomyr Lisen", "", "");
end_section();
begin_section("Dreamcast");
add_person("Marcus Comstedt", "", "");
end_section();
begin_section("GCW0");
add_person("Eugene Sandulenko", "", "");
end_section();
begin_section("GPH Devices (GP2X, GP2XWiz & Caanoo)");
add_person("John Willis", "DJWillis", "");
end_section();
begin_section("iPhone / iPad");
add_person("Oystein Eftevaag", "vinterstum", "(retired)");
add_person("Vincent Bénony", "bSr43", "");
add_person("Thierry Crozat", "criezy", "");
add_person("Lars Sundström", "larsamannen", "");
end_section();
begin_section("LinuxMoto");
add_person("Lubomyr Lisen", "", "");
end_section();
begin_section("Maemo");
add_person("Frantisek Dufka", "fanoush", "(retired)");
add_person("Tarek Soliman", "tsoliman", "");
end_section();
begin_section("Nintendo 3DS");
add_person("Thomas Edvalson", "Cruel", "");
end_section();
begin_section("Nintendo 64");
add_person("Fabio Battaglia", "Hkz", "");
end_section();
begin_section("Nintendo DS");
add_person("Bertrand Augereau", "Tramb", "HQ software scaler");
add_person("Cameron Cawley", "ccawley2011", "");
add_person("Neil Millstone", "agent-q", "");
end_section();
begin_section("Nintendo Switch");
add_person("", "Cpasjuste", "");
add_person("", "rsn8887", "");
end_section();
begin_section("OpenPandora");
add_person("John Willis", "DJWillis", "");
end_section();
begin_section("PocketPC / WinCE");
add_person("Nicolas Bacca", "arisme", "(retired)");
add_person("Ismail Khatib", "CeRiAl", "(retired)");
add_person("Kostas Nakos", "Jubanka", "(retired)");
end_section();
begin_section("PlayStation 2");
add_person("Robert Göffringmann", "lavosspawn", "(retired)");
add_person("Max Lingua", "sunmax", "");
end_section();
begin_section("PSP (PlayStation Portable)");
add_person("Yotam Barnoy", "bluddy", "");
add_person("Joost Peters", "joostp", "");
end_section();
begin_section("PlayStation Vita");
add_person("", "Cpasjuste", "");
add_person("", "rsn8887", "");
end_section();
begin_section("SDL (Win/Linux/macOS/etc.)");
add_person("Max Horn", "Fingolfin", "(retired)");
add_person("Eugene Sandulenko", "sev", "Asm routines, GFX layers");
end_section();
begin_section("SymbianOS");
add_person("Jurgen Braam", "SumthinWicked", "");
add_person("Lars Persson", "AnotherGuest", "");
add_person("Fedor Strizhniou", "zanac", "");
end_section();
begin_section("Tizen / BADA");
add_person("Chris Warren-Smith", "", "");
end_section();
begin_section("Webassembly / Emscripten");
add_person("Christian Kündig", "chkuendig", "");
end_section();
begin_section("WebOS");
add_person("Klaus Reimer", "kayahr", "");
end_section();
begin_section("Wii");
add_person("Andre Heider", "dhewg", "");
add_person("Alexander Reim", "AReim1982", "");
end_section();
begin_section("Raspberry Pi");
add_person("Manuel Alfayate", "vanfanel", "");
end_section();
begin_section("Libretro");
add_person("Giovanni Cascione", "spleen1981", "");
end_section();
end_section();
begin_section("Other subsystems", "other_subsystems");
begin_section("Infrastructure");
add_person("Max Horn", "Fingolfin", "Backend & Engine APIs, file API, sound mixer, audiostreams, data structures, etc. (retired)");
add_person("Eugene Sandulenko", "sev", "");
add_person("Johannes Schickel", "LordHoto", "(retired)");
end_section();
begin_section("GUI");
add_person("Max Horn", "Fingolfin", "(retired)");
add_person("Vicent Marti", "tanoku", "");
add_person("Eugene Sandulenko", "sev", "");
add_person("Johannes Schickel", "LordHoto", "(retired)");
end_section();
begin_section("Miscellaneous");
add_person("David Corrales-Lopez", "david_corrales", "Filesystem access improvements (GSoC 2007 task) (retired)");
add_person("Jerome Fisher", "KingGuppy", "MT-32 emulator");
add_person("Benjamin Haisch", "john_doe", "Heavily improved de-/encoder for DXA videos");
add_person("Jochen Hoenicke", "hoenicke", "Speaker & PCjr sound support, AdLib work (retired)");
add_person("Daniël ter Laan", "NoiZe", "Restoring original Drascula tracks, and writing convert_dxa.bat");
add_person("Chris Page", "cp88", "Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task) (retired)");
add_person("Coen Rampen", "NMIError", "Sound improvements");
add_person("Robin Watts", "robinwatts", "ARM assembly routines for nice speedups on several ports; improvements to the sound mixer");
add_person("", "Trembyle", "Archivist");
add_person("Lothar Serra Mari", "felsqualle", "Tackling Tremendously Tedious Tasks(tm); ScummVM's Seal of Approval (Awp?!)");
end_section();
end_section();
begin_section("Website (code)", "web_code");
begin_persons();
add_person("Fredrik Wendel", "", "(retired)");
end_persons();
end_section();
begin_section("Website (maintenance)", "web_maint");
begin_persons();
add_person("James Brown", "Ender", "IRC Logs maintainer");
add_person("Thierry Crozat", "criezy", "Wiki maintainer");
add_person("Andre Heider", "dhewg", "Buildbot maintainer");
add_person("Joost Peters", "JoostP", "Doxygen Project Documentation maintainer");
add_person("Jordi Vilalta Prat", "jvprat", "Wiki maintainer");
add_person("Eugene Sandulenko", "sev", "Forum, IRC channel, Screen Shots and Mailing list maintainer");
add_person("John Willis", "DJWillis", "");
end_persons();
end_section();
begin_section("Website (content)", "web_content");
add_paragraph("All active team members");
end_section();
begin_section("Documentation", "docs");
begin_persons();
add_person("Thierry Crozat", "criezy", "Numerous contributions to documentation");
add_person("Joachim Eberhard", "joachimeberhard", "Numerous contributions to documentation (retired)");
add_person("Matthew Hoops", "clone2727", "Numerous contributions to documentation (retired)");
add_person("Cadi Howley", "cadih", "User documentation (GSOD 2020)");
end_persons();
end_section();
begin_section("Retired Team Members", "retired_members");
begin_persons();
add_person("Chris Apers", "chrilith ", "Former PalmOS porter");
add_person("Ralph Brorsen", "painelf", "Help with GUI implementation");
add_person("Jamieson Christian", "jamieson630", "iMUSE, MIDI, all things musical");
add_person("Felix Jakschitsch", "yot", "Zak256 reverse engineering");
add_person("Mutwin Kraus", "mutle", "Original MacOS porter");
add_person("Peter Moraliyski", "ph0x", "Port: GP32");
add_person("Jeremy Newman", "laxdragon", "Former webmaster");
add_person("Lionel Ulmer", "bbrox", "Port: X11");
add_person("Won Star", "wonst719", "Former GP32 porter");
add_person("Matan Bareket", "mataniko", "Website, Infrastructure, UI/UX");
end_persons();
end_section();
end_section();
begin_section("Other contributions", "other_contrib");
begin_section("Packages", "packages");
begin_section("AmigaOS 4");
add_person("Hans-Jörg Frieden", "", "(retired)");
add_person("Hubert Maier", "raziel-", "");
add_person("Juha Niemimäki", "", "(retired)");
end_section();
begin_section("Atari/FreeMiNT");
add_person("Keith Scroggins", "KeithS", "");
end_section();
begin_section("BeOS");
add_person("Stefan Parviainen", "", "(retired)");
add_person("Luc Schrijvers", "Begasus", "");
end_section();
begin_section("Debian GNU/Linux");
add_person("Tore Anderson", "tore", "(retired)");
add_person("David Weinehall", "tao", "");
end_section();
begin_section("Fedora / RedHat");
add_person("Willem Jan Palenstijn", "wjp", "");
end_section();
begin_section("Haiku");
add_person("Luc Schrijvers", "Begasus", "");
end_section();
begin_section("macOS");
add_person("Max Horn", "Fingolfin", "(retired)");
add_person("Oystein Eftevaag", "vinterstum", "(retired)");
add_person("Thierry Crozat", "criezy", "");
add_person("", "dwa", "Tiger/Leopard PPC");
end_section();
begin_section("Mandriva");
add_person("Dominik Scherer", "", "(retired)");
end_section();
begin_section("MorphOS");
add_person("", "BeWorld", "");
add_person("Fabien Coeurjoly", "fab1", "");
add_person("Rüdiger Hanke", "", "(retired)");
end_section();
begin_section("OS/2");
add_person("Paul Smedley", "Creeping", "");
end_section();
begin_section("RISC OS");
add_person("Cameron Cawley", "ccawley2011", "");
end_section();
begin_section("SlackWare");
add_person("Robert Kelsen", "", "");
end_section();
begin_section("Solaris x86");
add_person("Laurent Blume", "laurent", "");
end_section();
begin_section("Solaris SPARC");
add_person("Markus Strangl", "WooShell", "");
end_section();
begin_section("Win32");
add_person("Travis Howell", "Kirben", "");
add_person("Lothar Serra Mari", "felsqualle", "");
end_section();
begin_section("Win64");
add_person("Chris Gray", "Psychoid", "(retired)");
add_person("Johannes Schickel", "LordHoto", "(retired)");
add_person("Lothar Serra Mari", "felsqualle", "");
end_section();
end_section();
begin_section("GUI Translations (with 10+ translations)", "gui_translations");
begin_persons();
add_person("Thierry Crozat", "criezy", "Translation Lead");
end_persons();
begin_section("Arabic");
add_person("Malek Bellasfar", "DoomHEADSHOT", "");
end_section();
begin_section("Basque");
add_person("Josu Igoa", "josuigoa", "");
add_person("Mikel Iturbe Urretxa", "", "");
end_section();
begin_section("Belarusian");
add_person("Ivan Lukyanov", "", "");
end_section();
begin_section("Belarusian (Taraškievica)");
add_person("", "Kage", "");
end_section();
begin_section("Catalan");
add_person("Sergi Pérez Labernia", "sperezl", "");
add_person("Jordi Vilalta Prat", "jvprat", "");
add_person("Xaviu", "", "");
end_section();
begin_section("Chinese (Simplified Han script)");
add_person("复予", "CloneWith", "");
add_person("Crane yang", "ysj1173886760", "");
add_person("Xiao Zheng", "CaesarZX", "");
add_person("", "kane159", "");
end_section();
begin_section("Czech");
add_person("Zbynìk Schwarz", "tsbook", "");
add_person("", "AsciiWolf", "");
end_section();
begin_section("Danish");
add_person("Bo Mortensen", "Boz0r", "");
add_person("Steffen Nyeland", "", "");
add_person("", "scootergrisen", "");
end_section();
begin_section("Dutch");
add_person("Ben Castricum", "", "");
add_person("", "SecularSteve", "");
end_section();
begin_section("Finnish");
add_person("Timo Mikkolainen", "timpii", "");
add_person("Toni Saarela", "catnose", "");
add_person("Linus Virtanen", "", "");
add_person("", "jepael", "");
add_person("", "LINUX-SAUNA", "");
end_section();
begin_section("French");
add_person("Thierry Crozat", "criezy", "");
add_person("", "dwa", "");
add_person("", "Purple T", "");
end_section();
begin_section("Galician");
add_person("Santiago G. Sanz", "sgsanz", "");
end_section();
begin_section("Georgian");
add_person("", "NorwayFun", "");
end_section();
begin_section("German");
add_person("Lothar Serra Mari", "felsqualle", "");
add_person("Simon Sawatzki", "SimSaw", "");
add_person("", "SecularSteve", "");
end_section();
begin_section("Greek");
add_person("Filippos Karapetis", "bluegr", "");
add_person("Antoniou Thanasis", "Praetorian", "");
end_section();
begin_section("Hebrew");
add_person("Niv Baehr", "blooperz", "");
end_section();
begin_section("Hindi");
add_person("Krish", "Krish2882005", "");
add_person("Aditya Mohan", "Brakkugit", "");
add_person("Aashwin Vaish", "av-dx", "");
add_person("", "barryspacezero", "");
end_section();
begin_section("Hungarian");
add_person("Alex Bevilacqua", "", "");
add_person("George Kormendi", "GoodOldGeorg", "");
add_person("Hovánszki Tamás", "mdv", "");
end_section();
begin_section("Italian");
add_person("Walter Agazzi", "tag2015", "");
add_person("Matteo Angelino", "Maff", "");
add_person("Paolo Bossi", "", "");
end_section();
begin_section("Japanese");
add_person("", "iplaysomegames101", "");
add_person("", "VAN-Gluon", "");
end_section();
begin_section("Korean");
add_person("Joohan Lee", "losernator", "");
add_person("Hoseok Seo", "DDinghoya", "");
add_person("Won Star", "wonst719", "");
add_person("", "papercutter0324", "");
end_section();
begin_section("Norwegian (Bokmål)");
add_person("Thomas Risan", "pncFreak", "");
add_person("Einar Johan Sømåen", "somaen", "");
add_person("Stian Schultz", "Carnivol", "");
end_section();
begin_section("Norwegian (Nynorsk)");
add_person("Einar Johan Sømåen", "somaen", "");
end_section();
begin_section("Polish");
add_person("Paweł Kołodziejski", "aquadran", "");
add_person("Eryk Michalak", "gnu-ewm", "");
add_person("", "GrajPoPolsku.pl Team", "");
add_person("", "SkiffPL", "");
end_section();
begin_section("Brazilian Portuguese");
add_person("Marcel Souza Lemes", "marcosoutsider", "");
add_person("ScummBR Team", "", "");
end_section();
begin_section("Portuguese");
add_person("Daniel Albano", "SupSuper", "");
end_section();
begin_section("Russian");
add_person("Eugene Sandulenko", "sev", "");
add_person("", "iplaysomegames101", "");
end_section();
begin_section("Spanish");
add_person("Tomás Maidagan", "", "");
add_person("Jordi Vilalta Prat", "jvprat", "");
add_person("Rodrigo Vegas Sánchez-Ferrero", "", "");
add_person("", "IlDucci", "");
end_section();
begin_section("Swedish");
add_person("Henrik Andersson", "Henke37", "");
add_person("Hampus Flink", "", "");
add_person("Adrian Frühwirth", "bonki", "");
add_person("Daniel Nylander", "", "");
add_person("Sebastian Rasmussen", "sebras", "");
end_section();
begin_section("Turkish");
add_person("Ahmet Furkan", "ahmetfkocaoglu", "");
add_person("", "mdenizdemirci", "");
end_section();
begin_section("Ukrainian");
add_person("Lubomyr Lisen", "", "");
add_person("Eugene Sandulenko", "sev", "");
add_person("", "iplaysomegames101", "");
end_section();
end_section();
begin_section("Game Translations", "game_translations");
begin_section("CGE");
add_person("Arnaud Boutonné", "Strangerke", "Soltys English translation");
add_person("Dan Serban", "nutron", "Soltys English translation");
add_person("Víctor González", "IlDucci", "Soltys Spanish translation");
add_person("Alejandro Gómez de la Muñoza", "TheFireRed", "Soltys Spanish translation");
end_section();
begin_section("CGE2");
add_person("Arnaud Boutonné", "Strangerke", "Sfinx English translation");
add_person("Thierry Crozat", "criezy", "Sfinx English translation");
add_person("Peter Bozsó", "uruk", "Sfinx English translation editor");
add_person("Ryan Clark", "", "Sfinx English translation editor");
end_section();
begin_section("Drascula");
add_person("Thierry Crozat", "criezy", "Improve French translation");
end_section();
begin_section("Mortevielle");
add_person("Arnaud Boutonné", "Strangerke", "First English translation, improve German translation");
add_person("Hugo Labrande", "", "Improve English translation");
add_person("Thierry Crozat", "criezy", "Improve English translation");
end_section();
begin_section("Prince");
add_person("", "ShinjiGR", "English translation");
add_person("Eugene Sandulenko", "sev", "English translation");
add_person("Anna Baldur", "Balduranne", "English translation");
end_section();
begin_section("Supernova");
add_person("Joseph-Eugene Winzer", "Joefish", "English translation");