File: credits.rst

package info (click to toggle)
scummvm 2.9.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 450,580 kB
  • sloc: cpp: 4,299,825; asm: 28,322; python: 12,901; sh: 11,302; java: 9,289; xml: 7,895; perl: 2,639; ansic: 2,465; yacc: 1,670; javascript: 1,020; makefile: 933; lex: 578; awk: 275; objc: 82; sed: 11; php: 1
file content (2837 lines) | stat: -rw-r--r-- 43,470 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
..
   This file was generated by credits.pl. Do not edit by hand!

=========
Credits
=========

ScummVM Team
============

Project Leaders
***************

.. list-table::
   :widths: 35 65

   * - Paweł Kołodziejski
     -
   * - Eugene Sandulenko
     -
   * - Einar Johan T. Sømåen
     -
   * - Lothar Serra Mari
     -

PR Office
*********

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     - Public Relations Officer, Project Administrator
   * - Eugene Sandulenko
     - Project Leader

Retired Project Leaders
***********************

.. list-table::
   :widths: 35 65

   * - James Brown
     -
   * - Vincent Hamm
     - ScummVM co-founder, Original Cruise/CinE author
   * - Max Horn
     -
   * - Ludvig Strigeus
     - Original ScummVM and SimonVM author

Engine Teams
************

Access
^^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -

ADL
^^^

.. list-table::
   :widths: 35 65

   * - Walter van Niftrik
     -

AGI
^^^

.. list-table::
   :widths: 35 65

   * - Stuart George
     -
   * - Matthew Hoops
     - (retired)
   * - Filippos Karapetis
     -
   * - Martin Kiewitz
     -
   * - Paweł Kołodziejski
     -
   * - Walter van Niftrik
     -
   * - Kari Salminen
     -
   * - Eugene Sandulenko
     -
   * - David Symonds
     - (retired)

AGOS
^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Paul Gilbert
     -
   * - Travis Howell
     -
   * - Oliver Kiehl
     - (retired)
   * - Ludvig Strigeus
     - (retired)

AGS
^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -
   * - Thierry Crozat
     -
   * - Walter Agazzi
     - Maintenance, Game archival
   * - Chris Jones
     - Creator
   * - Alan Van Drake
     - AGS
   * - Benjamin Penney
     - AGS
   * - Benoit Pierre
     - AGS
   * - Bernhard Rosenkraenzer
     - AGS
   * - Cristian Morales Vega
     - AGS
   * - Edward Rudd
     - AGS
   * - Erico Vieira Porto
     - AGS
   * - Ferdinand Thiessen
     - AGS
   * - Francesco Ariis
     - AGS
   * - Gilad Shaham
     - AGS
   * - Ivan Mogilko
     - AGS
   * - Janet Gilbert
     - AGS
   * - Jochen Schleu
     - AGS
   * - Joe Lee
     - AGS
   * - John Steele Scott
     - AGS
   * - Martin Sedlak
     - AGS
   * - Matthew Gambrell
     - AGS
   * - Michael Rittenhouse
     - AGS
   * - Morgan Willcock
     - AGS
   * - Nick Sonneveld
     - AGS
   * - Ori Avtalion
     - AGS
   * - Paul Wilkinson
     - AGS
   * - Per Olav Flaten
     - AGS
   * - Piotr Wieczorek
     - AGS
   * - Ryan O'Connor
     - AGS
   * - Scott Baker
     - AGS
   * - Shane Stevens
     - AGS
   * - Shawn R. Walker
     - AGS
   * - Stefano Collavini
     - AGS
   * - Steve McCrea
     - AGS
   * - Steven Poulton
     - AGS
   * - Sunit Das
     - AGS
   * - Tobias Hansen
     - AGS
   * - Tom Vandepoele
     - AGS
   * - Tzach Shabtay
     - AGS
   * - rofl0r
     - AGS
   * - Berian Williams
     - AgsCreditz

Asylum
^^^^^^

.. list-table::
   :widths: 35 65

   * - Alex Bevilacqua
     -
   * - Alex Fontoura
     -
   * - Alexander Panov
     -
   * - Benjamin Haisch
     -
   * - Filippos Karapetis
     -
   * - Joseph Davies
     -
   * - Julien Templier
     -

Avalanche
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Peter Bozsó
     -
   * - Arnaud Boutonné
     -

Bagel
^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Daniel Albano
     -
   * - Eugene Sandulenko
     -
   * - Paul Gilbert
     -

BBVS
^^^^

.. list-table::
   :widths: 35 65

   * - Benjamin Haisch
     -

Blade Runner
^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Thanasis Antoniou
     -
   * - Thomas Fach-Pedersen
     -
   * - Peter Kohaut
     -
   * - Eugene Sandulenko
     -

Buried
^^^^^^

.. list-table::
   :widths: 35 65

   * - Matthew Hoops
     -

CGE
^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -

CGE2
^^^^

.. list-table::
   :widths: 35 65

   * - Peter Bozsó
     -
   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -

Chamber
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Retro-Junk;
     -
   * - Eugene Sandulenko
     -

Chewy
^^^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -
   * - Eugene Sandulenko
     -
   * - Arnaud Boutonné
     -
   * - Filippos Karapetis
     -

Cine
^^^^

.. list-table::
   :widths: 35 65

   * - Vincent Hamm
     - (retired)
   * - Paweł Kołodziejski
     -
   * - Gregory Montoir
     - (retired)
   * - Kari Salminen
     -
   * - Eugene Sandulenko
     -

Composer
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Alyssa Milburn
     -

Crab
^^^^

.. list-table::
   :widths: 35 65

   * - Kartik Agarwala
     -

CruisE
^^^^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -
   * - Vincent Hamm
     - (retired)

Cryo
^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Filippos Karapetis
     -
   * - Retro-Junk;
     -
   * - Eugene Sandulenko
     -

Cryomni3D
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Philippe Valembois
     -

Director
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -
   * - Crane Yang
     - GSoC Student
   * - Dmitry Iskrich
     -
   * - Deborah Servilla
     - GSoC Student
   * - Nathanael Gentry
     - GSoC Student
   * - Roland van Laar
     -
   * - Scott Percival
     -
   * - Steven Hoefel
     -
   * - Tobia Tesan
     -
   * - Misty De Méo
     -

DM
^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Bendegúz Nagy
     -

Draci
^^^^^

.. list-table::
   :widths: 35 65

   * - Denis Kasak
     -
   * - Robert Špalek
     -

Dragons
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Eric Fry
     -
   * - Benjamin Haisch
     - Actor pathfinding
   * - Ángel Eduardo García Hernández
     - Help with reverse engineering

Drascula
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Filippos Karapetis
     -
   * - Paweł Kołodziejski
     -
   * - Thierry Crozat
     -

DreamWeb
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Bertrand Augereau
     -
   * - Filippos Karapetis
     -
   * - Vladimir Menshakov
     -
   * - Willem Jan Palenstijn
     -

Efh
^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -

Freescape
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Chris Allen
     - Sound engine programming
   * - Gustavo Grieco
     -

Glk
^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -
   * - Tor Andersson
     - GarGlk library
   * - Stefan Jokisch
     - Frotz interpreter
   * - Andrew Plotkin
     - Glulxe interpreter
   * - Alan Cox
     - ScottFree interpreter
   * - Michael J. Roberts
     - TADS interpreter
   * - Avijeet Maurya
     - Scott Sub-engine

Gnap
^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Benjamin Haisch
     -

Gob
^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Arnaud Boutonné
     -
   * - Simon Delamarre
     -
   * - Sven Hesse
     -
   * - Eugene Sandulenko
     -

Griffon
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -

Grim
^^^^

.. list-table::
   :widths: 35 65

   * - James Brown
     - Grim (retired)
   * - Giulio Camuffo
     - Grim (retired)
   * - Daniel Schepler
     - Initial engine contributor
   * - Dries Harnie
     - EMI
   * - Paweł Kołodziejski
     - Grim
   * - Christian Krause
     - EMI (retired)
   * - Einar Johan T. Sømåen
     - Grim, EMI
   * - Joel Teichroeb
     - EMI
   * - Joni Vähämäki
     - EMI (retired)

Groovie
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Henry Bush
     -
   * - Ray Carro
     -
   * - Scott Thomas
     -
   * - Jordi Vilalta Prat
     -

Hades Challenge
^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Vladimir Serbinenko/Google
     -

HDB
^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -
   * - Nipun Garg
     - GSoC student

Hopkins
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -

Hpl1
^^^^

.. list-table::
   :widths: 35 65

   * - Emanuele Grisenti
     -

Hugo
^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Oystein Eftevaag
     -
   * - Eugene Sandulenko
     -

Hypno
^^^^^

.. list-table::
   :widths: 35 65

   * - Gustavo Grieco
     -

ICB
^^^

.. list-table::
   :widths: 35 65

   * - Paweł Kołodziejski
     -
   * - Joost Peters
     -
   * - Einar Johan T. Sømåen
     -

Illusions
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Benjamin Haisch
     -
   * - Eric Fry
     -

Immortal
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Michael Hayman
     -

Kingdom
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Thomas Fach-Pedersen
     -
   * - Hein-Pieter van Braam-Stewart
     -

Kyra
^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     - VQA Player
   * - Oystein Eftevaag
     -
   * - Florian Kagerer
     -
   * - Gregory Montoir
     - (retired)
   * - Johannes Schickel
     - (retired)

Lab
^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Filippos Karapetis
     -
   * - Willem Jan Palenstijn
     -
   * - Eugene Sandulenko
     -

Lastexpress
^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Matthew Hoops
     - (retired)
   * - Jordi Vilalta Prat
     -
   * - Julien Templier
     -

Lilliput
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -

Lure
^^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -

M4
^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -

MacVenture
^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Borja Lorente
     - GSoC student

MADE
^^^^

.. list-table::
   :widths: 35 65

   * - Benjamin Haisch
     -
   * - Filippos Karapetis
     -

MADS
^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -
   * - Filippos Karapetis
     -

MM (Xeen)
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -
   * - Benoit Pierre
     -
   * - TheDrakeRaider
     - (M&M1 Gfx Mod)
   * - David Goldsmith
     - (Xeen analysis)
   * - Matt Taylor
     - (Xeen analysis)

Mohawk
^^^^^^

.. list-table::
   :widths: 35 65

   * - Bastien Bouclet
     -
   * - Matthew Hoops
     - (retired)
   * - Filippos Karapetis
     -
   * - Alyssa Milburn
     -
   * - Eugene Sandulenko
     -
   * - David Turner
     -
   * - David Fioramonti
     -

Mortevielle
^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -

mTropolis
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Eric Lasota
     -

MutationOfJB
^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Ľubomír Remák
     -
   * - Miroslav Remák
     -

Myst 3
^^^^^^

.. list-table::
   :widths: 35 65

   * - Bastien Bouclet
     -

Nancy
^^^^^

.. list-table::
   :widths: 35 65

   * - Kaloyan Chehlarski
     -
   * - Walter van Niftrik
     -

Neverhood
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Benjamin Haisch
     -
   * - Filippos Karapetis
     -

NGI
^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -

Parallaction
^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - peres
     -

Pegasus
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Matthew Hoops
     - (retired)

Petka
^^^^^

.. list-table::
   :widths: 35 65

   * - Andrei Prykhodko
     -
   * - Eugene Sandulenko
     -

Pink
^^^^

.. list-table::
   :widths: 35 65

   * - Andrei Prykhodko
     -
   * - Eugene Sandulenko
     -

Plumbers
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Retro-Junk;
     -

Prince
^^^^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -
   * - Łukasz Wątka
     -
   * - Kamil Zbróg
     -

Private
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Gustavo Grieco
     -

Queen
^^^^^

.. list-table::
   :widths: 35 65

   * - David Eriksson
     - (retired)
   * - Gregory Montoir
     - (retired)
   * - Joost Peters
     -

SAGA
^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Daniel Balsom
     - Original engine reimplementation author (retired)
   * - Filippos Karapetis
     -
   * - Andrew Kurushin
     -
   * - Eugene Sandulenko
     -

SAGA2
^^^^^

.. list-table::
   :widths: 35 65

   * - Yuri Guimaraes
     - GSoC Student
   * - Eugene Sandulenko
     -

SCI
^^^

.. list-table::
   :widths: 35 65

   * - Chris Benshoof
     -
   * - Greg Frieger
     -
   * - Paul Gilbert
     -
   * - Max Horn
     - (retired)
   * - Filippos Karapetis
     -
   * - Martin Kiewitz
     -
   * - Walter van Niftrik
     -
   * - Willem Jan Palenstijn
     -
   * - Jordi Vilalta Prat
     -
   * - Lars Skovlund
     -
   * - Colin Snover
     -

SCUMM
^^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Andrea Boscarino
     - Digital iMUSE, SMUSH audio, GUI
   * - James Brown
     - (retired)
   * - Jonathan Gray
     - (retired)
   * - Vincent Hamm
     - (retired)
   * - Max Horn
     - (retired)
   * - Travis Howell
     -
   * - Paweł Kołodziejski
     - Codecs, iMUSE, Smush, etc.
   * - Gregory Montoir
     - (retired)
   * - Eugene Sandulenko
     - FT INSANE, MM NES, MM C64, game detection, Herc/CGA
   * - Ludvig Strigeus
     - (retired)

SCUMM HE
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Andrea Boscarino
     - Digital audio, WIZ graphics system
   * - Jonathan Gray
     - (retired)
   * - Travis Howell
     -
   * - Gregory Montoir
     - (retired)
   * - Eugene Sandulenko
     -

Sherlock
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -
   * - Martin Kiewitz
     -

Sky
^^^

.. list-table::
   :widths: 35 65

   * - Robert Göffringmann
     - (retired)
   * - Oliver Kiehl
     - (retired)
   * - Joost Peters
     -

SLUDGE
^^^^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -
   * - Simei Yin
     - GSoC Student

Stark
^^^^^

.. list-table::
   :widths: 35 65

   * - Bastien Bouclet
     -
   * - Einar Johan T. Sømåen
     -
   * - Liu Zhaosong
     -

Star Trek
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Matthew Hoops
     - (retired)
   * - Filippos Karapetis
     -
   * - Matthew Stewart
     - GSoC Student

Supernova
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Joseph-Eugene Winzer
     -
   * - Jaromír Wysoglad
     -
   * - Thierry Crozat
     -

Sword1
^^^^^^

.. list-table::
   :widths: 35 65

   * - Fabio Battaglia
     - PSX version support
   * - Andrea Boscarino
     - Palette fading, menus, audio
   * - Thierry Crozat
     - Mac version support
   * - Robert Göffringmann
     - (retired)

Sword2
^^^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Fabio Battaglia
     - PSX version support
   * - Jonathan Gray
     - (retired)

Sword2.5
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Paul Gilbert
     -
   * - Max Horn
     - (retired)
   * - Filippos Karapetis
     -
   * - Eugene Sandulenko
     -

TeenAgent
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Robert Megone
     - Help with callback rewriting
   * - Vladimir Menshakov
     -

Tetraedge
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Matthew Duggan
     -

Tinsel
^^^^^^

.. list-table::
   :widths: 35 65

   * - Torbjörn Andersson
     -
   * - Fabio Battaglia
     - PSX version support
   * - Paul Gilbert
     -
   * - Sven Hesse
     -
   * - Max Horn
     - (retired)
   * - Filippos Karapetis
     -
   * - Joost Peters
     -

Titanic
^^^^^^^

.. list-table::
   :widths: 35 65

   * - David Fioramonti
     -
   * - Paul Gilbert
     -
   * - Colin Snover
     -

Toltecs
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Benjamin Haisch
     -
   * - Filippos Karapetis
     -

Tony
^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -
   * - Alyssa Milburn
     -

Toon
^^^^

.. list-table::
   :widths: 35 65

   * - Sylvain Dupont
     -

Touché
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Gregory Montoir
     - (retired)

Trecision
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Daniel Albano
     -
   * - Arnaud Boutonné
     -
   * - Thomas Fach-Pedersen
     - Smacker video support
   * - Filippos Karapetis
     -

TsAGE
^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -

Tucker
^^^^^^

.. list-table::
   :widths: 35 65

   * - Gregory Montoir
     - (retired)

TwinE
^^^^^

.. list-table::
   :widths: 35 65

   * - Alexandre Fontoura
     - (retired)
   * - Vincent Hamm
     - (retired)
   * - Felipe Sanches
     - (retired)
   * - Nikita Tereshin
     - (retired)
   * - Patrik Dahlström
     - (retired)
   * - Arthur Blot
     - (retired)
   * - Kyuubu
     - (retired)
   * - Toël Hartmann
     - (retired)
   * - Sebástien Viannay
     - (retired)
   * - Martin Gerhardy
     -

Thimbleweed Park
^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Valéry Sablonnière
     -

Ultima
^^^^^^

.. list-table::
   :widths: 35 65

   * - Paul Gilbert
     -
   * - Matthew Duggan
     -
   * - Matthew Jimenez
     -
   * - Daniel c. Würl
     - (Nuvie)
   * - Eric Fry
     - (Nuvie)
   * - Jeremy Newman
     - (Nuvie)
   * - Jonathan E. Wright
     - (Nuvie)
   * - Joseph Applegate
     - (Nuvie)
   * - Malignant Manor
     - (Nuvie)
   * - Markus Niemistö
     - (Nuvie)
   * - Michael Fink
     - (Nuvie)
   * - Pieter Luteijn
     - (Nuvie)
   * - Sam Matthews
     - (Nuvie)
   * - Travis Howell
     - (Nuvie)
   * - Willem Jan Palenstijn
     - (Nuvie)
   * - Brian Tietz
     - (Pentagram)
   * - Dominik Reichardt
     - (Pentagram)
   * - Max Horn
     - (Pentagram)
   * - Patrick Burke
     - (Pentagram)
   * - Ryan Nunn
     - (Pentagram)
   * - Willem Jan Palenstijn
     - (Pentagram)

V-Cruise
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Eric Lasota
     -

Voyeur
^^^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     -
   * - Paul Gilbert
     -

WAGE
^^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -

Watchmaker
^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Einar Johan Troan Somaen;
     -

Wintermute
^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Gunnar Birke
     - Wintermute 3D
   * - Einar Johan T. Sømåen
     -
   * - Tobia Tesan
     -

Z-Vision
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Adrian Astley
     -
   * - Filippos Karapetis
     -
   * - Anton Yarcev
     -

Backend Teams
*************

Atari
^^^^^

.. list-table::
   :widths: 35 65

   * - Miro Kropáček
     -

Android
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Andre Heider
     -
   * - Angus Lees
     -
   * - Lubomyr Lisen
     -

Dreamcast
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Marcus Comstedt
     -

GCW0
^^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -

GPH Devices (GP2X, GP2XWiz & Caanoo)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - John Willis
     -

iPhone / iPad
^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Oystein Eftevaag
     - (retired)
   * - Vincent Bénony
     -
   * - Thierry Crozat
     -
   * - Lars Sundström
     -

LinuxMoto
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Lubomyr Lisen
     -

Maemo
^^^^^

.. list-table::
   :widths: 35 65

   * - Frantisek Dufka
     - (retired)
   * - Tarek Soliman
     -

Nintendo 3DS
^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Thomas Edvalson
     -

Nintendo 64
^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Fabio Battaglia
     -

Nintendo DS
^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Bertrand Augereau
     - HQ software scaler
   * - Cameron Cawley
     -
   * - Neil Millstone
     -

Nintendo Switch
^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Cpasjuste
     -
   * - rsn8887
     -

OpenPandora
^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - John Willis
     -

PocketPC / WinCE
^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Nicolas Bacca
     - (retired)
   * - Ismail Khatib
     - (retired)
   * - Kostas Nakos
     - (retired)

PlayStation 2
^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Robert Göffringmann
     - (retired)
   * - Max Lingua
     -

PSP (PlayStation Portable)
^^^^^^^^^^^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Yotam Barnoy
     -
   * - Joost Peters
     -

PlayStation Vita
^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Cpasjuste
     -
   * - rsn8887
     -

SDL (Win/Linux/macOS/etc.)
^^^^^^^^^^^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Max Horn
     - (retired)
   * - Eugene Sandulenko
     - Asm routines, GFX layers

SymbianOS
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Jurgen Braam
     -
   * - Lars Persson
     -
   * - Fedor Strizhniou
     -

Tizen / BADA
^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Chris Warren-Smith
     -

Webassembly / Emscripten
^^^^^^^^^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Christian Kündig
     -

WebOS
^^^^^

.. list-table::
   :widths: 35 65

   * - Klaus Reimer
     -

Wii
^^^

.. list-table::
   :widths: 35 65

   * - Andre Heider
     -
   * - Alexander Reim
     -

Raspberry Pi
^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Manuel Alfayate
     -

Libretro
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Giovanni Cascione
     -

Other subsystems
****************

Infrastructure
^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Max Horn
     - Backend & Engine APIs, file API, sound mixer, audiostreams, data structures, etc. (retired)
   * - Eugene Sandulenko
     -
   * - Johannes Schickel
     - (retired)

GUI
^^^

.. list-table::
   :widths: 35 65

   * - Max Horn
     - (retired)
   * - Vicent Marti
     -
   * - Eugene Sandulenko
     -
   * - Johannes Schickel
     - (retired)

Miscellaneous
^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - David Corrales-Lopez
     - Filesystem access improvements (GSoC 2007 task) (retired)
   * - Jerome Fisher
     - MT-32 emulator
   * - Benjamin Haisch
     - Heavily improved de-/encoder for DXA videos
   * - Jochen Hoenicke
     - Speaker & PCjr sound support, AdLib work (retired)
   * - Daniël ter Laan
     - Restoring original Drascula tracks, and writing convert_dxa.bat
   * - Chris Page
     - Return to launcher, savestate improvements, leak fixes, ... (GSoC 2008 task) (retired)
   * - Coen Rampen
     - Sound improvements
   * - Robin Watts
     - ARM assembly routines for nice speedups on several ports; improvements to the sound mixer
   * - Trembyle
     - Archivist
   * - Lothar Serra Mari
     - Tackling Tremendously Tedious Tasks(tm); ScummVM's Seal of Approval (Awp?!)

Website (code)
**************

.. list-table::
   :widths: 35 65

   * - Fredrik Wendel
     - (retired)

Website (maintenance)
*********************

.. list-table::
   :widths: 35 65

   * - James Brown
     - IRC Logs maintainer
   * - Thierry Crozat
     - Wiki maintainer
   * - Andre Heider
     - Buildbot maintainer
   * - Joost Peters
     - Doxygen Project Documentation maintainer
   * - Jordi Vilalta Prat
     - Wiki maintainer
   * - Eugene Sandulenko
     - Forum, IRC channel, Screen Shots and Mailing list maintainer
   * - John Willis
     -

Website (content)
*****************

All active team members

Documentation
*************

.. list-table::
   :widths: 35 65

   * - Thierry Crozat
     - Numerous contributions to documentation
   * - Joachim Eberhard
     - Numerous contributions to documentation (retired)
   * - Matthew Hoops
     - Numerous contributions to documentation (retired)
   * - Cadi Howley
     - User documentation (GSOD 2020)

Retired Team Members
********************

.. list-table::
   :widths: 35 65

   * - Chris Apers
     - Former PalmOS porter
   * - Ralph Brorsen
     - Help with GUI implementation
   * - Jamieson Christian
     - iMUSE, MIDI, all things musical
   * - Felix Jakschitsch
     - Zak256 reverse engineering
   * - Mutwin Kraus
     - Original MacOS porter
   * - Peter Moraliyski
     - Port: GP32
   * - Jeremy Newman
     - Former webmaster
   * - Lionel Ulmer
     - Port: X11
   * - Won Star
     - Former GP32 porter
   * - Matan Bareket
     - Website, Infrastructure, UI/UX

Other contributions
===================

Packages
********

AmigaOS 4
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Hans-Jörg Frieden
     - (retired)
   * - Hubert Maier
     -
   * - Juha Niemimäki
     - (retired)

Atari/FreeMiNT
^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Keith Scroggins
     -

BeOS
^^^^

.. list-table::
   :widths: 35 65

   * - Stefan Parviainen
     - (retired)
   * - Luc Schrijvers
     -

Debian GNU/Linux
^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Tore Anderson
     - (retired)
   * - David Weinehall
     -

Fedora / RedHat
^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Willem Jan Palenstijn
     -

Haiku
^^^^^

.. list-table::
   :widths: 35 65

   * - Luc Schrijvers
     -

macOS
^^^^^

.. list-table::
   :widths: 35 65

   * - Max Horn
     - (retired)
   * - Oystein Eftevaag
     - (retired)
   * - Thierry Crozat
     -
   * - dwa
     - Tiger/Leopard PPC

Mandriva
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Dominik Scherer
     - (retired)

MorphOS
^^^^^^^

.. list-table::
   :widths: 35 65

   * - BeWorld
     -
   * - Fabien Coeurjoly
     -
   * - Rüdiger Hanke
     - (retired)

OS/2
^^^^

.. list-table::
   :widths: 35 65

   * - Paul Smedley
     -

RISC OS
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Cameron Cawley
     -

SlackWare
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Robert Kelsen
     -

Solaris x86
^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Laurent Blume
     -

Solaris SPARC
^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Markus Strangl
     -

Win32
^^^^^

.. list-table::
   :widths: 35 65

   * - Travis Howell
     -
   * - Lothar Serra Mari
     -

Win64
^^^^^

.. list-table::
   :widths: 35 65

   * - Chris Gray
     - (retired)
   * - Johannes Schickel
     - (retired)
   * - Lothar Serra Mari
     -

GUI Translations
****************

.. list-table::
   :widths: 35 65

   * - Thierry Crozat
     - Translation Lead

Basque
^^^^^^

.. list-table::
   :widths: 35 65

   * - Mikel Iturbe Urretxa
     -

Belarusian
^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Ivan Lukyanov
     -

Catalan
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Jordi Vilalta Prat
     -

Czech
^^^^^

.. list-table::
   :widths: 35 65

   * - Zbynìk Schwarz
     -

Danish
^^^^^^

.. list-table::
   :widths: 35 65

   * - Steffen Nyeland
     -
   * - scootergrisen
     -

Dutch
^^^^^

.. list-table::
   :widths: 35 65

   * - Ben Castricum
     -

Finnish
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Linus Virtanen
     -
   * - Toni Saarela
     -
   * - Timo Mikkolainen
     -

French
^^^^^^

.. list-table::
   :widths: 35 65

   * - Thierry Crozat
     -
   * - Purple T
     -

Galician
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Santiago G. Sanz
     -

German
^^^^^^

.. list-table::
   :widths: 35 65

   * - Simon Sawatzki
     -
   * - Lothar Serra Mari
     -

Greek
^^^^^

.. list-table::
   :widths: 35 65

   * - Thanasis Antoniou
     -
   * - Filippos Karapetis
     -

Hungarian
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Alex Bevilacqua
     -
   * - George Kormendi
     -

Italian
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Matteo Angelino
     -
   * - Paolo Bossi
     -
   * - Walter Agazzi
     -

Norwegian (Bokmål)
^^^^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Einar Johan Sømåen
     -

Norwegian (Nynorsk)
^^^^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Einar Johan Sømåen
     -

Polish
^^^^^^

.. list-table::
   :widths: 35 65

   * - GrajPoPolsku.pl Team
     -

Brazilian Portuguese
^^^^^^^^^^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - ScummBR Team
     -
   * - Marcel Souza Lemes
     -

Portuguese
^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Daniel Albano
     -

Russian
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Eugene Sandulenko
     -

Spanish
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Tomás Maidagan
     -
   * - Jordi Vilalta Prat
     -
   * - IlDucci
     -
   * - Rodrigo Vegas Sánchez-Ferrero
     -

Swedish
^^^^^^^

.. list-table::
   :widths: 35 65

   * - Hampus Flink
     -
   * - Adrian Frühwirth
     -

Ukrainian
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Lubomyr Lisen
     -

Game Translations
*****************

CGE
^^^

.. list-table::
   :widths: 35 65

   * - Dan Serban
     - Soltys English translation
   * - Víctor González
     - Soltys Spanish translation
   * - Alejandro Gómez de la Muñoza
     - Soltys Spanish translation

CGE2
^^^^

.. list-table::
   :widths: 35 65

   * - Arnaud Boutonné
     - Sfinx English translation
   * - Thierry Crozat
     - Sfinx English translation
   * - Peter Bozsó
     - Sfinx English translation editor
   * - Ryan Clark
     - Sfinx English translation editor

Drascula
^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Thierry Crozat
     - Improve French translation

Mortevielle
^^^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Hugo Labrande
     - Improve English translation
   * - Thierry Crozat
     - Improve English translation

Prince
^^^^^^

.. list-table::
   :widths: 35 65

   * - ShinjiGR
     - English translation
   * - Eugene Sandulenko
     - English translation
   * - Anna Baldur
     - English translation

Supernova
^^^^^^^^^

.. list-table::
   :widths: 35 65

   * - Joseph-Eugene Winzer
     - English translation
   * - Thierry Crozat
     - English translation
   * - Walter Agazzi
     - Italian translation

Websites (design)
*****************

.. list-table::
   :widths: 35 65

   * - Dobó Balázs
     - Website design
   * - William Claydon
     - Skins for doxygen, buildbot and wiki
   * - Yaroslav Fedevych
     - HTML/CSS for the website
   * - Jean Marc Gimenez
     - ScummVM logo
   * - David Jensen
     - SVG logo conversion
   * - Raina
     - ScummVM forum buttons

Icons pack
**********

.. list-table::
   :widths: 35 65

   * - Stefan Philippsen
     - Primary contributor and coordination
   * - Benjamin Funke
     -
   * - Daniel Albano
     -
   * - David Calvert
     -
   * - Eugene Sandulenko
     -
   * - J Moretti
     -
   * - Jennifer McMurray
     -
   * - Lothar Serra Mari
     -
   * - Oleg Ermakov
     -
   * - Olly Dean
     -
   * - Walter Agazzi
     -
   * - beresk137
     -
   * - Canuma
     -
   * - Thunderforge
     -
   * - neuromancer
     -
   * - nightm4re94
     -
   * - trembyle
     -

Code contributions
******************

.. list-table::
   :widths: 35 65

   * - Ori Avtalion
     - Subtitle control options in the GUI; BASS GUI fixes
   * - Stuart Caie
     - Decoders for Amiga and AtariST data files (AGOS engine)
   * - Paolo Costabel
     - PSP port contributions
   * - Martin Doucha
     - CinE engine objectification
   * - Thomas Fach-Pedersen
     - ProTracker module player, Smacker video decoder
   * - Tobias Gunkel
     - Sound support for C64 version of MM/Zak, Loom PCE support
   * - Dries Harnie
     - Android port for ResidualVM
   * - Janne Huttunen
     - V3 actor mask support, Dig/FT SMUSH audio
   * - Kovács Endre János
     - Several fixes for Simon1
   * - Jeroen Janssen
     - Numerous readability and bugfix patches
   * - Keith Kaisershot
     - Several Pegasus Prime patches and DVD additions
   * - Andreas Karlsson
     - Initial port for SymbianOS
   * - Stefan Kristiansson
     - Initial work on SDL2 support
   * - Claudio Matsuoka
     - Daily Linux builds
   * - Thomas Mayer
     - PSP port contributions
   * - Sean Murray
     - ScummVM tools GUI application (GSoC 2007 task)
   * - n0p
     - Windows CE port aspect ratio correction scaler and right click input method
   * - Mikesch Nepomuk
     - MI1 VGA floppy patches
   * - Nicolas Noble
     - Config file and ALSA support
   * - Tim Phillips
     - Initial MI1 CD music support
   * - Quietust
     - Sound support for Amiga SCUMM V2/V3 games, MM NES support
   * - Robert Crossfield
     - Improved support for Apple II/C64 versions of MM
   * - Andreas Röver
     - Broken Sword I & II MPEG2 cutscene support
   * - Edward Rudd
     - Fixes for playing MP3 versions of MI1/Loom audio
   * - Daniel Schepler
     - Final MI1 CD music support, initial Ogg Vorbis support
   * - André Souza
     - SDL-based OpenGL renderer
   * - Joel Teichroeb
     - Android port for ResidualVM
   * - Tom Frost
     - WebOS port contributions

FreeSCI Contributors
********************

.. list-table::
   :widths: 35 65

   * - Francois-R Boyer
     - MT-32 information and mapping code
   * - Rainer Canavan
     - IRIX MIDI driver and bug fixes
   * - Xiaojun Chen
     -
   * - Paul David Doherty
     - Game version information
   * - Vyacheslav Dikonov
     - Config script improvements
   * - Ruediger Hanke
     - Port to the MorphOS platform
   * - Matt Hargett
     - Clean-ups, bugfixes, Hardcore QA, Win32
   * - Max Horn
     - SetJump implementation
   * - Ravi I.
     - SCI0 sound resource specification
   * - Emmanuel Jeandel
     - Bugfixes and bug reports
   * - Dmitry Jemerov
     - Port to the Win32 platform, numerous bugfixes
   * - Chris Kehler
     - Makefile enhancements
   * - Christopher T. Lansdown
     - Original CVS maintainer, Alpha compatibility fixes
   * - Sergey Lapin
     - Port of Carl's type 2 decompression code
   * - Rickard Lind
     - MT-32->GM MIDI mapping magic, sound research
   * - Hubert Maier
     - AmigaOS 4 port
   * - Johannes Manhave
     - Document format translation
   * - Claudio Matsuoka
     - CVS snapshots, daily builds, BeOS and cygwin ports
   * - Dark Minister
     - SCI research (bytecode and parser)
   * - Carl Muckenhoupt
     - Sources to the SCI resource viewer tools that started it all
   * - Anders Baden Nielsen
     - PPC testing
   * - Walter van Niftrik
     - Ports to the Dreamcast and GP32 platforms
   * - Rune Orsval
     - Configuration file editor
   * - Solomon Peachy
     - SDL ports and much of the sound subsystem
   * - Robey Pointer
     - Bug tracking system hosting
   * - Magnus Reftel
     - Heap implementation, Python class viewer, bugfixes
   * - Christoph Reichenbach
     - UN*X code, VM/Graphics/Sound/other infrastructure
   * - George Reid
     - FreeBSD package management
   * - Lars Skovlund
     - Project maintenance, most documentation, bugfixes, SCI1 support
   * - Rink Springer
     - Port to the DOS platform, several bug fixes
   * - Rainer De Temple
     - SCI research
   * - Sean Terrell
     -
   * - Hugues Valois
     - Game selection menu
   * - Jordi Vilalta
     - Numerous code and website clean-up patches
   * - Petr Vyhnak
     - The DCL-INFLATE algorithm, many Win32 improvements
   * - Bas Zoetekouw
     - Man pages, debian package management, CVS maintenance

Special thanks to Prof. Dr. Gary Nutt for allowing the FreeSCI VM extension as a course project in his Advanced OS course.

Special thanks to Bob Heitman and Corey Cole for their support of FreeSCI.

ResidualVM Contributors
***********************

Grim
^^^^

.. list-table::
   :widths: 35 65

   * - Thomas Allen
     - Various engine code fixes and improvements
   * - Torbjörn Andersson
     - Various code fixes
   * - Ori Avtalion
     - Lipsync, LAF support, various code fixes
   * - Robert Biro
     - Antialiasing support
   * - Bastien Bouclet
     - Various fixes to engine
   * - David Cardwell
     - Few fixes to EMI
   * - Marcus Comstedt
     - Initial Dreamcast port
   * - Andrea Corna
     - Patcher module, various engine improvements
   * - Jonathan Gray
     - Various code fixes
   * - Tobias Gunkel
     - Initial Android port, few engines fixes
   * - Azamat H. Hackimov
     - Configure fix
   * - Vincent Hamm
     - Various engine code fixes and improvements
   * - Sven Hesse
     - Various compilation fixes
   * - Matthew Hoops
     - Smush codec48, Grim and EMI engine improvements
   * - Erich Hoover
     - x86-64 fixes, various code fixes and improvements
   * - Max Horn
     - Few code fixes
   * - Travis Howell
     - Various code fixes, Windows port
   * - Joseph Jezak
     - A lot of engine improvements and fixes
   * - Guillem Jover
     - Few code improvements
   * - Filippos Karapetis
     - Compilation fixes
   * - Ingo van Lil
     - Various fixes and improvements for EMI
   * - Vincent Pelletier
     - Various engine and TinyGL improvements
   * - Joost Peters
     - Various code fixes
   * - George Macon
     - Few fixes
   * - Josh Matthews
     - Few fixes to engine
   * - Matthieu Milan
     - Various engine improvements
   * - Gregory Montoir
     - Few fixes to engine
   * - Stefano Musumeci
     - TinyGL backend and engine driver improvements
   * - Christian Neumair
     - Various optimisation patches
   * - Daniel Schepler
     - Initial grim engine contributor, LUA support
   * - Dmitry Smirnov
     - Minor spelling corrections
   * - Yaron Tausky
     - Fixes to subtitles
   * - Julien Templier
     - create_project tool
   * - Pino Toscano
     - Debian GNU/Linux package files
   * - Lionel Ulmer
     - OpenGL optimisations
   * - cmayer0087
     - Various engine code fixes
   * - JenniBee
     - Compilation fixes
   * - karjonas
     - Various engine code fixes
   * - mparnaudeau
     - Various grim engine code fixes
   * - PoulpiFr
     - Few fixes to Android port
   * - sietschie
     - Few fixes to engine

Myst 3
^^^^^^

.. list-table::
   :widths: 35 65

   * - David Fioramonti
     - Autosave support and few fixes
   * - Matthew Hoops
     - Various engine improvements and code fixes
   * - Stefano Musumeci
     - TinyGL engine support

Stark
^^^^^

.. list-table::
   :widths: 35 65

   * - Bartosz Dudziak
     - Various engine improvements and code fixes
   * - Matthew Hoops
     - ADPCM decoder
   * - Paweł Kołodziejski
     - Various engine code fixes
   * - Awad Mackie
     - Few fixes to engine
   * - Marius Ioan Orban
     - Code fix
   * - Vincent Pelletier
     - Raw sound support
   * - Jordi Vilalta Prat
     - Initial engine contributor
   * - Scott Thomas
     - Initial engine author
   * - Will Thomson
     - Few fixes to engine
   * - Faalagorn
     - Few code improvements
   * - orangeforest11
     - Few engine improvements

And to all the contributors, users, and beta testers we've missed. Thanks!

Special thanks to
=================

.. list-table::
   :widths: 35 65

   * - Daniel Balsom
     - For the original Reinherit (SAGA) code
   * - Sander Buskens
     - For his work on the initial reversing of Monkey2
   * - Dean Beeler
     - For the original MT-32 emulator
   * - Kevin Carnes
     - For Scumm16, the basis of ScummVM's older gfx codecs
   * - Curt Coder
     - For the original TrollVM (preAGI) code
   * - Patrick Combet
     - For the original Gobliiins ADL player
   * - Ivan Dubrov
     - For contributing the initial version of the Gobliiins engine
   * - Henrik Engqvist
     - For generously providing hosting for our buildbot, SVN repository, planet and doxygen sites as well as tons of HD space
   * - DOSBox Team
     - For their awesome OPL2 and OPL3 emulator
   * - Yusuke Kamiyamane
     - For contributing some GUI icons
   * - Till Kresslein
     - For design of modern ScummVM GUI
   * - Jezar Wakefield
     - For his freeverb filter implementation
   * - Jim Leiterman
     - Various info on his FM-TOWNS/Marty SCUMM ports
   * - Lloyd Rosen
     - For deep tech details about C64 Zak & MM
   * - Sarien Team
     - Original AGI engine code
   * - Jimmi Thøgersen
     - For ScummRev, and much obscure code/documentation
   * - Tristan Matthews
     - For additional work on the original MT-32 emulator
   * - James Woodcock
     - Soundtrack enhancements
   * - Anton Yartsev
     - For the original re-implementation of the Z-Vision engine

Tony Warriner and everyone at Revolution Software Ltd. for sharing with us the source of some of their brilliant games, allowing us to release Beneath a Steel Sky as freeware... and generally being supportive above and beyond the call of duty.

John Passfield and Steve Stamatiadis for sharing the source of their classic title, Flight of the Amazon Queen and also being incredibly supportive.

Joe Pearce from The Wyrmkeep Entertainment Co. for sharing the source of their famous title Inherit the Earth, for sharing the source of The Labyrinth of Time and for always replying promptly to our questions.

Aric Wilmunder, Ron Gilbert, David Fox, Vince Lee, and all those at LucasFilm/LucasArts who made SCUMM the insane mess to reimplement that it is today. Feel free to drop us a line and tell us what you think, guys!

Alan Bridgman, Simon Woodroffe and everyone at Adventure Soft for sharing the source code of some of their games with us.

John Young, Colin Smythe and especially Terry Pratchett himself for sharing the source code of Discworld I & II with us.

Emilio de Paz Aragón from Alcachofa Soft for sharing the source code of Drascula: The Vampire Strikes Back with us and his generosity with freewaring the game.

David P. Gray from Gray Design Associates for sharing the source code of the Hugo trilogy.

The mindFactory team for writing Broken Sword 2.5, a splendid fan-made sequel, and for sharing the source code with us.

Neil Dodwell and David Dew from Creative Reality for providing the source of Dreamweb and for their tremendous support.

Janusz Wiśniewski and Miroslaw Liminowicz from Laboratorium Komputerowe Avalon for providing full source code for Sołtys and Sfinx and letting us redistribute the games.

Jan Nedoma for providing the sources to the Wintermute-engine, and for his support while porting the engine to ScummVM.

Bob Bell, David Black, Michel Kripalani, and Tommy Yune from Presto Studios for providing the source code of The Journeyman Project: Pegasus Prime and The Journeyman Project 2: Buried in Time.

Electronic Arts IP Preservation Team, particularly Stefan Serbicki, and Vasyl Tsvirkunov of Electronic Arts for providing the source code of the two Lost Files of Sherlock Holmes games. James M. Ferguson and Barry Duncan for their tenacious efforts to recover the sources.

John Romero for sharing the source code of Hyperspace Delivery Boy! with us.

Steffen Dingel for sharing the source code of the Mission Supernova game with us.

The LUA developers, for creating a nice compact script interpreter.

Tim Schafer, for obvious reasons, and everybody else who helped make Grim Fandango a brilliant game; and the EMI team for giving it their best try.

Bret Mogilefsky, for managing to create a SPUTM-style 3D LUA engine, and avoiding the horrible hack it could have been.

Benjamin Haisch, for emimeshviewer, which our EMI code borrows heavily from.

Fabrizio Lagorio from Trecision S.p.A., for finding and providing the source code of many of their games.