This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy paththeme.qml
executable file
·1469 lines (1405 loc) · 77.7 KB
/
theme.qml
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
import QtQuick 2.15
import QtQuick.Window 2.15
import QtGraphicalEffects 1.12
import QtMultimedia 5.15
import QtQml.Models 2.15
import SortFilterProxyModel 0.2
import "Home"
import "Collections"
import "Menu"
import "Games"
import "Settings"
import "BGM"
FocusScope {
id: root
focus: true
FontLoader { id: montserratMedium; source: "./assets/fonts/Montserrat-Medium.ttf" }
FontLoader { id: montserratBold; source: "./assets/fonts/Montserrat-Bold.ttf" }
FontLoader { id: robotoSlabLight; source: "./assets/fonts/RobotoSlab-Light.ttf" }
FontLoader { id: robotoSlabThin; source: "./assets/fonts/RobotoSlab-Thin.ttf" }
FontLoader { id: robotoSlabRegular; source: "./assets/fonts/RobotoSlab-Regular.ttf" }
FontLoader {
id: glyphs;
property string favorite: '\ue800';
property string fullStar: '\ue801';
property string emptyStar: '\ue802';
property string halfStar: '\ue803';
property string uInputBtnD: '\ue804';
property string uInputBtnL: '\ue805';
property string uInputBtnLb: '\ue806';
property string uInputBtnLt: '\ue807';
property string uInputBtnR: '\ue808';
property string uInputBtnRb: '\ue809';
property string uInputBtnRt: '\ue80a';
property string uInputBtnU: '\ue80b';
property string xInputBtnD: '\ue80c';
property string xInputBtnL: '\ue80d';
property string xInputBtnLb: '\ue80e';
property string xInputBtnLt: '\ue80f';
property string xInputBtnR: '\ue810';
property string xInputBtnRb: '\ue811';
property string xInputBtnRt: '\ue812';
property string xInputBtnU: '\ue813';
property string pInputBtnD: '\ue814';
property string pInputBtnL: '\ue815';
property string pInputBtnLb: '\ue816';
property string pInputBtnLt: '\ue817';
property string pInputBtnR: '\ue818';
property string pInputBtnRb: '\ue819';
property string pInputBtnRt: '\ue81a';
property string pInputBtnU: '\ue81b';
property string search: '\ue81c';
property string spinner: '\ue839';
property string disabled: '\uf204';
property string enabled: '\uf205';
property string favoriteBG: '\ue821';
property string uInputBtnStart: '\ue81d';
property string uInputBtnSelect: '\ue81e';
property string xInputBtnStart: '\ue81f';
property string xInputBtnSelect: '\ue820';
property string pInputBtnStart: '\ue822';
property string pInputBtnSelect: '\ue823';
source: "assets/fonts/glyphs.ttf";
}
// Control schemes
property var osdScheme: {
"Universal": {
BTND: glyphs.uInputBtnD,
BTNL: glyphs.uInputBtnL,
BTNLB: glyphs.uInputBtnLb,
BTNLT: glyphs.uInputBtnLt,
BTNR: glyphs.uInputBtnR,
BTNRB: glyphs.uInputBtnRb,
BTNRT:glyphs.uInputBtnRt,
BTNU: glyphs.uInputBtnU,
BTNStart: glyphs.uInputBtnStart,
BTNSelect: glyphs.uInputBtnSelect
},
"Universal-JP": {
BTND: glyphs.uInputBtnR,
BTNL: glyphs.uInputBtnU,
BTNLB: glyphs.uInputBtnLb,
BTNLT: glyphs.uInputBtnLt,
BTNR: glyphs.uInputBtnD,
BTNRB: glyphs.uInputBtnRb,
BTNRT:glyphs.uInputBtnRt,
BTNU: glyphs.uInputBtnL,
BTNStart: glyphs.uInputBtnStart,
BTNSelect: glyphs.uInputBtnSelect
},
"XBOX": {
BTND: glyphs.xInputBtnD,
BTNL: glyphs.xInputBtnL,
BTNLB: glyphs.xInputBtnLb,
BTNLT: glyphs.xInputBtnLt,
BTNR: glyphs.xInputBtnR,
BTNRB: glyphs.xInputBtnRb,
BTNRT:glyphs.xInputBtnRt,
BTNU: glyphs.xInputBtnU,
BTNStart: glyphs.xInputBtnStart,
BTNSelect: glyphs.xInputBtnSelect
},
"PS": {
BTND: glyphs.pInputBtnD,
BTNL: glyphs.pInputBtnL,
BTNLB: glyphs.pInputBtnLb,
BTNLT: glyphs.pInputBtnLt,
BTNR: glyphs.pInputBtnR,
BTNRB: glyphs.pInputBtnRb,
BTNRT:glyphs.pInputBtnRt,
BTNU: glyphs.pInputBtnU,
BTNStart: glyphs.pInputBtnStart,
BTNSelect: glyphs.pInputBtnSelect
},
"PS-JP": {
BTND: glyphs.pInputBtnR,
BTNL: glyphs.pInputBtnU,
BTNLB: glyphs.pInputBtnLb,
BTNLT: glyphs.pInputBtnLt,
BTNR: glyphs.pInputBtnD,
BTNRB: glyphs.pInputBtnRb,
BTNRT:glyphs.pInputBtnRt,
BTNU: glyphs.pInputBtnL,
BTNStart: glyphs.pInputBtnStart,
BTNSelect: glyphs.pInputBtnSelect
}
}
// Color schemes
property var colorScheme: {
"Dark": {
main: "#202335",
secondary: "#1C1E2E",
background: "#25283B",
text: "white",
textalt: "#414767",
textlight: "white",
textdark: "#202333",
accent: "#757BA0",
accentalt:"#7981A8",
accentlight: "#757BA0",
accentdark:"#4D5167",
selected: "#FF9E12",
selectedtransition: "white",
icons: "white",
favorite: "#F3C03B",
completed: "#3847AD",
accepted: "#8E63EC",
cancel: "#E06C9A",
details: "#F3C03B",
filters: "#66D2EC",
sorters: "#8E63EC"
},
"Light": {
main: "white",
secondary: "#EBEBEB",
background: "white",
text: "black",
textalt: "#2C2C2C",
textlight: "white",
textdark: "black",
accent: "#10AEBE",
accentalt:"#2D2D2D",
accentlight: "#10AEBE",
accentdark:"#0E7882",
selected: "#00991E",
selectedtransition: "#00D92B",
icons: "black",
favorite: "#CC8F00",
completed: "#00991E",
accepted: "#00991E",
cancel: "#E6140D",
details: "#1C2C98",
filters: "#996B00",
sorters: "#00991E"
},
"OzoneDark": {
main: "#2D2D2D",
secondary: "#333333",
background: "#2D2D2D",
text: "white",
textalt: "#9F9FA1",
textlight: "white",
textdark: "black",
accent: "#00D9AE",
accentalt:"white",
accentlight: "#00D9AE",
accentdark:"#00896E",
selected: "#FF9E12",
selectedtransition: "white",
icons: "white",
favorite: "#F3C03B",
completed: "#3847AD",
accepted: "#996B00",
cancel: "#E6140D",
details: "#00991E",
filters: "#5365DF",
sorters: "#F3C03B"
},
"SteamOS": {
main: "black",
secondary: "#0E141B",
background: "#2B2F38",
text: "white",
textalt: "#EBEBEB",
textlight: "white",
textdark: "black",
accent: "#1A9FFF",
accentalt:"white",
accentlight: "#1A9FFF",
accentdark:"#1470B2",
selected: "#FF9E12",
selectedtransition: "white",
icons: "white",
favorite: "#CC8F00",
completed: "#1A9FFF",
accepted: "#EBEBEB",
cancel: "#EBEBEB",
details: "#EBEBEB",
filters: "#EBEBEB",
sorters: "#EBEBEB"
}
}
// Text strings
property var dataText: {
"en": {
settings_collection_accentColor_dimm: "dimm",
settings_collection_accentColor_bright: "bright",
settings_general_colorScheme_Dark: "Dark",
settings_general_colorScheme_Light: "Light",
settings_general_colorScheme_OzoneDark: "OzoneDark",
settings_general_colorScheme_SteamOS: "SteamOS",
settings_general_logoVariant_mono: "mono",
settings_general_logoVariant_color: "color",
global_yes: "Yes",
global_no: "No",
global_back: "GO <b>BACK</b>",
global_select: "OK",
global_games: "GAMES",
global_noFavorites: "No favorites set",
global_noFilteredGames: "No results for the current search",
global_switch: "SWITCH",
global_collCategory: "COLLECTION CATEGORY",
global_collections: "Collections",
collection_all: "All",
collection_favorites: "Favorites",
collection_lastplayed: "Last Played",
collectionDetails_gamesAvailable: "games available",
games_na: "N/A",
games_developedBy: "Developed by",
games_for: "for",
games_players: "PLAYERS",
games_player: "1 PLAYER",
games_favorited: "FAVORITED",
games_arcadeport: "Arcade Port",
games_completed: "COMPLETED",
games_withoutDescription: "without description",
games_removeFavorite: "REMOVE <b>FAVORITE</b>",
games_addFavorite: "ADD <b>FAVORITE</b>",
games_filtered: "<b>FILTERS</b>",
games_filterMultiplayer: "Multiplayer",
games_filter: "FILTERS",
games_sortedBy: "SORTED BY",
home_continue: "Continue playing",
home_favorites: "Favorites",
home_play: "Play",
settings_general: "General",
settings_general_restart: "(Requires restart)",
settings_general_language: "Language",
settings_general_colorScheme: "Color scheme",
settings_general_selectionFrame: "Selection frame color",
settings_general_music: "Music",
settings_general_muteSounds: "Mute sounds",
settings_general_logoVariant: "Logo variation",
settings_general_region: "Region",
settings_general_hideOSC: "Hide controls",
settings_general_dynamicFontScaling: "Dynamic font scaling",
settings_general_OSCScheme: "Controls scheme",
settings_global_backgroundImg: "Background image",
settings_global_videoPlayback: "Video playback",
settings_global_videoMute: "Mute video",
settings_global_ImgPrecompose: "Use precomposed image",
settings_global_ImgPrecomposePref: "Precomposed image type",
settings_collection_showAll: 'Show "All games" collection',
settings_collection_showFavorites: 'Show "Favorites" collection',
settings_collection_showLastPlayed: 'Show "Last Played" collection',
settings_collection_accentColor: "Accent color brightness",
settings_collection_accentColorNr: "Accent colors",
settings_collection_menuColor: "Manufacturer logo variant",
settings_games_layout: "Games layout",
settings_games_gridItemsPerRow: "Game grid - items per row",
settings_games_gridItemsViewableRows: "Game grid - viewable rows",
settings_games_BoxArtPref: "Prefered boxart image",
settings_games_page_updown_function: "Game grid - LT/RT button function",
settings_home_videoLogo: "Show logo when video plays",
menu_settings: "settings",
menu_home: "home",
menu_collections: "collections",
menu_games:"games"
},
"ch": {
settings_collection_accentColor_dimm: "暗淡的",
settings_collection_accentColor_bright: "明亮的",
settings_general_colorScheme_Dark: "暗模式",
settings_general_colorScheme_Light: "亮模式",
settings_general_colorScheme_OzoneDark: "臭氧黑",
settings_general_colorScheme_SteamOS: "蒸汽主题",
settings_general_logoVariant_mono: "黑色logo",
settings_general_logoVariant_color: "彩色logo",
global_yes: "是",
global_no: "否",
global_back: "取消<b>返回</b>",
global_select: "确认",
global_games: "游戏",
global_noFavorites: "没有收藏游戏",
global_noFilteredGames: "当前搜索没有结果",
global_switch: "SWITCH",
global_collCategory: "COLLECTION CATEGORY",
global_collections: "Collections",
collection_all: "全部",
collection_favorites: "收藏游戏",
collection_lastplayed: "最后游玩",
collectionDetails_gamesAvailable: "游戏可用",
games_na: "N/A",
games_developedBy: "开发由",
games_for: "for",
games_players: "PLAYERS",
games_player: "1 PLAYER",
games_favorited: "FAVORITED",
games_arcadeport: "Arcade Port",
games_completed: "COMPLETED",
games_withoutDescription: "没有描述",
games_removeFavorite: "取消收藏 <b>收藏</b>",
games_addFavorite: "添加 <b>收藏</b>",
games_filtered: "<b>搜索</b>",
games_filterMultiplayer: "多人游戏",
games_filter: "搜索",
games_sortedBy: "排序",
home_continue: "近期游戏",
home_favorites: "收藏",
home_play: "开始游玩",
settings_general: "通用设置",
settings_general_restart: "(重启生效)",
settings_general_language: "语言",
settings_general_colorScheme: "主题颜色",
settings_general_selectionFrame: "选择框颜色",
settings_general_music: "背景音乐",
settings_general_muteSounds: "静音",
settings_general_logoVariant: "改变logo",
settings_general_region: "区域",
settings_general_hideOSC: "隐藏按键提示",
settings_general_dynamicFontScaling: "动态字体缩放",
settings_general_OSCScheme: "按键方案",
settings_global_backgroundImg: "背景图片",
settings_global_videoPlayback: "视频播放",
settings_global_videoMute: "静音视频",
settings_global_ImgPrecompose: "使用预合成的图像",
settings_global_ImgPrecomposePref: "预合成的图像类型",
settings_collection_showAll: '显示 "全部游戏" ',
settings_collection_showFavorites: '显示“收藏夹”',
settings_collection_showLastPlayed: '显示“最后游玩”',
settings_collection_accentColor: "强调颜色亮度",
settings_collection_accentColorNr: "强调色",
settings_collection_menuColor: "制造商徽标变体",
settings_games_layout: "游戏布局",
settings_games_gridItemsPerRow: "游戏网格 - 每行项目",
settings_games_gridItemsViewableRows: "游戏网格 - 可查看的行",
settings_games_BoxArtPref: "首选的盒画图片。",
settings_games_page_updown_function: "游戏网格-LT/RT按钮功能",
settings_home_videoLogo: "视频播放时显示标识",
menu_settings: "设置",
menu_home: "主页",
menu_collections: "游戏系统",
menu_games:"全部游戏"
},
"de": {
settings_collection_accentColor_dimm: "Gedämpft",
settings_collection_accentColor_bright: "Leuchtend",
settings_general_colorScheme_Dark: "Dunkel",
settings_general_colorScheme_Light: "Hell",
settings_general_colorScheme_OzoneDark: "OzoneDark",
settings_general_colorScheme_SteamOS: "SteamOS",
settings_general_logoVariant_mono: "Einfarbig",
settings_general_logoVariant_color: "Bunt",
global_yes: "Ja",
global_no: "Nein",
global_back: "<b>ZURÜCK</b>",
global_select: "OK",
global_games: "SPIELE",
global_noFavorites: "Keine Favoriten gesetzt",
global_noFilteredGames: "Keine Ergebnisse für die aktuelle Suche",
global_switch: "SCHALTER",
global_collCategory: "SAMMLUNGSKATEGORIE",
global_collections: "Sammlungen",
collection_all: "Alle",
collection_favorites: "Favoriten",
collection_lastplayed: "Zuletzt gespielt",
collectionDetails_gamesAvailable: "Spiele verfügbar",
games_na: "K.A.",
games_developedBy: "Entwickelt von",
games_for: "für",
games_players: "SPIELER",
games_player: "1 SPIELER",
games_favorited: "FAVORISIERT",
games_arcadeport: "Arcade-Port",
games_completed: "ABGESCHLOSSEN",
games_withoutDescription: "ohne Beschreibung",
games_removeFavorite: "<b>FAVORIT</b> entfernen",
games_addFavorite: "<b>FAVORIT</b> hinzufügen",
games_filtered: "<b>FILTER</b>",
games_filterMultiplayer: "Mehrspieler",
games_filter: "FILTER",
games_sortedBy: "SORTIERT NACH",
home_continue: "Weiterspielen",
home_favorites: "Favoriten",
home_play: "Spiele",
settings_general: "Allgemein",
settings_general_restart: "(Benötigt Neustart)",
settings_general_language: "Sprache",
settings_general_colorScheme: "Farbschema",
settings_general_selectionFrame: "Farbe des Auswahlrahmens",
settings_general_music: "Musik",
settings_general_muteSounds: "Töne stummschalten",
settings_general_logoVariant: "Logo-Variation",
settings_general_region: "Region",
settings_general_hideOSC: "Steuerung ausblenden",
settings_general_dynamicFontScaling: "Dynamische Schriftskalierung",
settings_general_OSCScheme: "Steuerungschema",
settings_global_backgroundImg: "Hintergrundbild",
settings_global_videoPlayback: "Videowiedergabe",
settings_global_videoMute: "Video stummschalten",
settings_global_ImgPrecompose: "Vorgefertigte Bilder verwenden",
settings_global_ImgPrecomposePref: "Vorgefertigte Bildart",
settings_collection_showAll: 'Sammlung "Alle Spiele" anzeigen',
settings_collection_showFavorites: 'Sammlung "Favoriten" anzeigen',
settings_collection_showLastPlayed: 'Sammlung "Zuletzt gespielt" anzeigen',
settings_collection_accentColor: "Akzentfarbhelligkeit",
settings_collection_accentColorNr: "Akzentfarben",
settings_collection_menuColor: "Hersteller Logo-Variation",
settings_games_layout: "Spiele-Layout",
settings_games_gridItemsPerRow: "Spiele Raster - Objekte pro Reihe",
settings_games_gridItemsViewableRows: "Spiele Raster - Sichtbare Reihen",
settings_games_BoxArtPref: "Bevorzugtes Boxart-Bild",
settings_games_page_updown_function: "Spiel Raster - LT/RT-Tastenfunktion",
settings_home_videoLogo: "Logo während der Videowiedergabe anzeigen",
menu_settings: "Optionen",
menu_home: "Start",
menu_collections: "Sammlungen",
menu_games:"Spiele"
},
"fr": {
settings_collection_accentColor_dimm: "Assombrir",
settings_collection_accentColor_bright: "Illuminer",
settings_general_colorScheme_Dark: "Sombre",
settings_general_colorScheme_Light: "Clair",
settings_general_colorScheme_OzoneDark: "OzoneDark",
settings_general_colorScheme_SteamOS: "SteamOS",
settings_general_logoVariant_mono: "Monochrome",
settings_general_logoVariant_color: "Couleur",
global_yes: "Oui",
global_no: "Non",
global_back: "<b>RETOUR</b>",
global_select: "OK",
global_games: "JEUX",
global_noFavorites: "Aucun jeu en favoris",
global_noFilteredGames: "Aucun résultat pour la recherche actuelle",
global_switch: "CHANGER",
global_collCategory: "CATÉGORIE DE COLLECTE",
global_collections: "Collections",
collection_all: "Tous",
collection_favorites: "Favoris",
collection_lastplayed: "Dernier joué",
collectionDetails_gamesAvailable: "Jeux disponibles",
games_na: "NC",
games_developedBy: "Developpé par",
games_for: "pour",
games_players: "JOUEURS",
games_player: "1 JOUEUR",
games_favorited: "FAVORIS",
games_arcadeport: "Port d'arcade",
games_completed: "COMPLÉTÉ",
games_withoutDescription: "sans description",
games_removeFavorite: "RETIRER DES <b>FAVORIS</b>",
games_addFavorite: "AJOUTER AUX <b>FAVORIS</b>",
games_filtered: "<b>FILTRES</b>",
games_filterMultiplayer: "Multijoueur",
games_filter: "FILTRES",
games_sortedBy: "TRIÉ PAR",
home_continue: "Joué récemment",
home_favorites: "Favoris",
home_play: "Jouer",
settings_general: "Général",
settings_general_restart: "(Redémarrage nécessaire)",
settings_general_language: "Langue",
settings_general_colorScheme: "Style de couleur",
settings_general_selectionFrame: "Couleur de la grille de sélection",
settings_general_music: "Musique",
settings_general_muteSounds: "Désactiver le son",
settings_general_logoVariant: "Style des logos",
settings_general_region: "Région",
settings_general_hideOSC: "Masquer les contrôles",
settings_general_dynamicFontScaling: "Mise à l'échelle dynamique des polices",
settings_general_OSCScheme: "Style des contrôles",
settings_global_backgroundImg: "Image de fond",
settings_global_videoPlayback: "Activer les vidéos",
settings_global_videoMute: "Désactiver le son des vidéos",
settings_global_ImgPrecompose: "Utiliser des images pré-composées",
settings_global_ImgPrecomposePref: "Type d'image pré-composée",
settings_collection_showAll: 'Afficher la collection "Tous"',
settings_collection_showFavorites: 'Afficher la collection "Favoris"',
settings_collection_showLastPlayed: 'Afficher la collection "Dernière lecture"',
settings_collection_accentColor: "Accentuer la luminosité des couleurs",
settings_collection_accentColorNr: "Accentuer les couleurs",
settings_collection_menuColor: "Style des fabricant logos",
settings_games_layout: "Mise en page des jeux",
settings_games_gridItemsPerRow: "Grille - nombre de jeux par ligne",
settings_games_gridItemsViewableRows: "Grille - nombre de lignes",
settings_games_BoxArtPref: "Image de boxart préférée",
settings_games_page_updown_function: "Grille - Fonction bouton LT/RT",
settings_home_videoLogo: "Afficher le logo lorsque la vidéo est lue",
menu_settings: "Réglages",
menu_home: "Accueil",
menu_collections: "Collections",
menu_games:"Jeux"
},
"pt": {
settings_collection_accentColor_dimm: "dimm",
settings_collection_accentColor_bright: "bright",
settings_general_colorScheme_Dark: "Dark",
settings_general_colorScheme_Light: "Light",
settings_general_colorScheme_OzoneDark: "OzoneDark",
settings_general_colorScheme_SteamOS: "SteamOS",
settings_general_logoVariant_mono: "mono",
settings_general_logoVariant_color: "color",
global_yes: "Sim",
global_no: "Não",
global_back: "<b>VOLTAR</b>",
global_select: "OK",
global_games: "JOGOS",
global_noFavorites: "Nenhum favorito definido",
global_noFilteredGames: "Sem resultados para a busca actual",
global_noMultiplayer: "Sem jogos multijogador",
global_switch: "TROCAR",
global_collCategory: "CATEGORIA DE COLEÇÃO",
global_collections: "Coleções",
collection_all: "Todos",
collection_favorites: "Favoritos",
collection_lastplayed: "Jogou pela última vez",
collectionDetails_gamesAvailable: "Jogos disponíveis",
games_na: "N/A",
games_developedBy: "Desenvolvido por",
games_for: "por",
games_players: "JOGADORES",
games_player: "1 JOGADOR",
games_favorited: "FAVORITO",
games_arcadeport: "Porto Arcade",
games_completed: "CONCLUÍDO",
games_withoutDescription: "sem descrição",
games_removeFavorite: "REMOVER <b>FAVORITO</b>",
games_addFavorite: "ADICIONAR <b>FAVORITO</b>",
games_filtered: "<b>FILTROS</b>",
games_filterMultiplayer: "Multijogador",
games_sortedBy: "ORDENADO POR",
home_continue: "Continuar jogando",
home_favorites: "Favoritos",
home_play: "Jogar",
settings_general: "Geral",
settings_general_restart: "(Requer reinício)",
settings_general_language: "Idioma",
settings_general_colorScheme: "Estilo de cores",
settings_general_selectionFrame: "Cor da moldura de selecção",
settings_general_music: "Música",
settings_general_muteSounds: "Silenciar sons",
settings_general_logoVariant: "Estilo de logos",
settings_general_region: "Região",
settings_general_hideOSC: "Ocultar controles",
settings_general_dynamicFontScaling: "Dynamic font scaling",
settings_general_OSCScheme: "Estilo de controle",
settings_global_backgroundImg: "Imagem de fundo",
settings_global_videoPlayback: "Reprodução de vídeo",
settings_global_videoMute: "Silenciar vídeo",
settings_global_ImgPrecompose: "Utilizar imagem pré-composta",
settings_global_ImgPrecomposePref: "Tipo de imagem pré-composta",
settings_collection_showAll: 'Mostrar a coleção "Todos jogos"',
settings_collection_showFavorites: 'Mostrar coleção "Favoritos"',
settings_collection_showLastPlayed: 'Mostrar coleção "Últimas jogadas"',
settings_collection_accentColor: "Brilho da cor de destaque",
settings_collection_accentColorNr: "Cores de destaque",
settings_collection_menuColor: "Estilo dos fabricantes de logos",
settings_games_layout: "Layout do jogos",
settings_games_gridItemsPerRow: "Grade - Jogos por fileira",
settings_games_gridItemsViewableRows: "Grade - Fileiras visíveis",
settings_games_BoxArtPrev: "Imagem de boxart preferida",
settings_games_page_updown_function: "Grade - função do botão LT/RT",
settings_home_videoLogo: "Mostrar o logótipo quando o vídeo toca",
menu_settings: "ajustes",
menu_home: "início",
menu_collections: "coleções",
menu_games:"jogos"
}
}
Music { id: music}
// Load settings
property bool playBGM: {
if (api.memory.get('musicIndex') == 1) {
playBGM: true;
} else {
playBGM: false;
}
}
property string lang: api.memory.get('lang') || "en"
property string theme: {
if (api.memory.get('themeIndex') == "1") {
return "Light";
} else if (api.memory.get('themeIndex') == "2") {
return "OzoneDark";
} else if (api.memory.get('themeIndex') == "3") {
return "SteamOS";
} else {
return "Dark";
}
}
property string logoVariant: {
if (api.memory.get('logoVariantIndex') == "1") {
return "color";
} else {
return "mono";
}
}
property string region: api.memory.get('region') || "pal"
property string controlScheme: api.memory.get('controlScheme') || "Universal"
property int osc: api.memory.get('oscIndex') || 0
property int selectionFrame: api.memory.get('selectionFrameIndex') || 0
property double fontScalingFactor: {
if (api.memory.get('dynamicFontScalingIndex') == "1") {
if ((Math.round(Screen.pixelDensity * 10) / 100) >= 1.5)
return "1.5";
else if ((Math.round(Screen.pixelDensity * 10) / 100) >= 1.0)
return (Math.round(Screen.pixelDensity * 10) / 100);
else
return "1.0";
} else {
return "1.0";
}
}
property double mutesfx: {
if (api.memory.get('mutesfxIndex') == "1") {
return "0.0";
} else {
return "1.0";
}
}
property bool homeImgPrecompose: {
if (api.memory.get('homeImgPrecomposeIndex') == "1") {
return true;
} else {
return false;
}
}
property string homeImgPrecomposePref: {
if (api.memory.get('homeImgPrecomposePrefIndex') == "1") {
return "marquee";
} else {
return "steam";
}
}
property int homeVideo: api.memory.get('homeVideoIndex') || 0
property bool homeVideoLogo: {
if (api.memory.get('homeVideoLogoIndex') == "1") {
return false;
} else {
return true;
}
}
property bool homeVideoMute: {
if (api.memory.get('homeVideoMuteIndex') == "1") {
return true;
} else {
return false;
}
}
property string accentColor: {
if (api.memory.get('accentColorIndex') == "1") {
return "bright";
} else {
return "dimm";
}
}
property int accentColorNr: api.memory.get('accentColorNrIndex') || 0
property int menuColor: api.memory.get('menuColorIndex') || 0
property int allGamesCollection: api.memory.get('allGamesCollectionIndex') || 0
property int favoritesCollection: api.memory.get('favoritesCollectionIndex') || 0
property int lastPlayedCollection: api.memory.get('lastPlayedCollectionIndex') || 0
property int collectionVideo: api.memory.get('collectionVideoIndex') || 0
property bool collectionVideoMute: {
if (api.memory.get('collectionVideoMuteIndex') == "1") {
return true;
} else {
return false;
}
}
property string gamesLayout: api.memory.get('gamesLayout') || "BoxArt-Grid"
property int gamesGridIPR: api.memory.get('gamesGridIPR') || 4
property var gamesGridVR: api.memory.get('gamesGridVR') || 1
property string gamesPgUpDownFunction: api.memory.get('gamesPageUpDownFunction') || 'Collections'
property int gamesBGImg: api.memory.get('gamesBGImgIndex') || 0
property int gamesVideo: api.memory.get('gamesVideoIndex') || 0
property bool gamesVideoMute: {
if (api.memory.get('gamesVideoMuteIndex') == "1") {
return true;
} else {
return false;
}
}
property string gamesBoxArtPref: {
if (api.memory.get('gamesBoxArtPrefIndex') == "1") {
return "poster";
} else if (api.memory.get('gamesBoxArtPrefIndex') == "2") {
return "steam";
} else if (api.memory.get('gamesBoxArtPrefIndex') == "3") {
return "marquee";
} else {
return "boxfront";
}
}
// [0] = Settings
// [1] = HOME
// [2] = COLLECTIONS
// [3] = GAMES
property int currentMenuIndex: api.memory.get("currentMenuIndex") || 1
// List of game collections
property var allCollections: {
var collections = api.collections.toVarArray()
if (favoritesCollection !== 1) {
collections.unshift({"name": dataText[lang].collection_favorites, "shortName": "favorites", "games": allFavorites, "extra": {"collectiontype": "System"}});
}
if (lastPlayedCollection !== 1) {
collections.unshift({"name": dataText[lang].collection_lastplayed, "shortName": "lastplayed", "games": lastPlayed, "extra": {"collectiontype": "System"}});
}
if (allGamesCollection !== 1) {
collections.unshift({"name": dataText[lang].collection_all, "shortName": "all", "games": api.allGames, "extra": {"collectiontype": "System"}});
}
collections = collections.filter(systemCollection);
return collections
}
property string collectionType: api.memory.get("currentCollectionType") || "System"
property var collectionTypes: getAllCollectionTypes()
property int currentCollectionIndex: api.memory.get("currentCollectionIndex-" + collectionType) || 0
property var currentCollection: allCollections[currentCollectionIndex]
property string clearedShortname: clearShortname(currentCollection.shortName)
property var dataMenu: [
{ name: "settings", title: dataText[lang].menu_settings},
{ name: "home", title: dataText[lang].menu_home},
{ name: "collections", title: dataText[lang].menu_collections},
{ name: "games", title: dataText[lang].menu_games}
]
property var dataLaunchbox: {
"amstrad cpc" : "amstradcpc",
"apple ii" : "apple2",
"atari 2600" : "atari2600",
"atari 5200" : "atari5200",
"atari st" : "atarist",
"atari 7800" : "atari7800",
"atari lynx" : "atarilynx",
"atari jaguar" : "atarijaguar",
"capcom cps1" : "cps1",
"capcom cps2" : "cps2",
"capcom cps3" : "cps3",
"commodore 64" : "c64",
"commodore amiga" : "amiga",
"mattel intellivision" : "intellivision",
"microsoft msx" : "msx",
"microsoft msx2" : "msx2",
"nec turbografx-16" : "turbografx16",
"pc engine supergrafx" : "supergrafx",
"nec pc-fx" : "pcfx",
"nintendo entertainment system" : "nes",
"nintendo famicom disk system" : "fds",
"nintendo game boy" : "gb",
"super nintendo entertainment system" : "snes",
"nintendo 64" : "n64",
"nintendo game boy color" : "gbc",
"nintendo game boy advance" : "gba",
"nintendo gamecube" : "gc",
"nintendo ds" : "nds",
"nintendo wii" : "wii",
"nintendo 3ds" : "3ds",
"nintendo wii u" : "wiiu",
"3do interactive multiplayer" : "3do",
"sammy atomiswave" : "atomiswave",
"sega master system" : "mastersystem",
"sega genesis" : "genesis",
"sega mega drive" : "megadrive",
"sega game gear" : "gamegear",
"sega cd" : "segacd",
"sega 32x" : "sega32x",
"sega saturn" : "saturn",
"sega dreamcast" : "dreamcast",
"sega sg-1000" : "sg1000",
"sinclair zx spectrum" : "zxspectrum",
"gce vectrex" : "vectrex",
"snk neo geo aes" : "neogeo",
"snk neo geo mvs": "neogeo",
"snk neo geo cd" : "neogeocd",
"snk neo geo pocket" : "ngp",
"snk neo geo pocket color" : "ngpc",
"sony playstation" : "psx",
"sony playstation 2" : "ps2",
"sony psp" : "psp",
"final burn alpha" : "fba",
"final burn neo" : "fbneo",
"wswan": "wonderswan",
"wswanc": "wonderswancolor",
"gamecube": "gc",
"sgfx": "supergrafx"
}
property var dataManufacturers: {
"acorn": { color: "#FFFFFF" },
"amstrad": { color: "#FFFFFF" },
"apf": { color: "#FFFFFF" },
"apple": { color: "#FFFFFF" },
"arcade": { color: "#FFFFFF" },
"arcade_all": { color: "#FFFFFF" },
"atari": { color: "#FFFFFF" },
"bally": { color: "#FFFFFF" },
"bandai": { color: "#FFFFFF" },
"belogic": { color: "#FFFFFF" },
"bitcorp": { color: "#FFFFFF" },
"capcom": { color: "#FFFFFF" },
"casio": { color: "#FFFFFF" },
"cdproject": { color: "#FFFFFF" },
"coleco": { color: "#000000" },
"commodore": { color: "#FFFFFF" },
"dragonData": { color: "#FFFFFF" },
"entex": { color: "#FFFFFF" },
"fairchild": { color: "#FFFFFF" },
"fujitsu": { color: "#FFFFFF" },
"ibm": { color: "#FFFFFF" },
"infocom": { color: "#FFFFFF" },
"lexaloffle": { color: "#FFFFFF" },
"mattel": { color: "#FFFFFF" },
"media": { color: "#FFFFFF" },
"microsoft": { color: "#FFFFFF" },
"microsoft_t1986": { color: "#FFFFFF" },
"microsoft_t2011": { color: "#FFFFFF" },
"nec": { color: "#2E1D81" },
"nintendo": { color: "#E11919" },
"OpenHandsetAlliance": { color: "#FFFFFF" },
"panasonic": { color: "#FFFFFF" },
"pc": { color: "#FFFFFF" },
"philips": { color: "#FFFFFF" },
"sammy": { color: "#FFFFFF" },
"sega": { color: "#17569b" },
"sharp": { color: "#FFFFFF" },
"sinclair": { color: "#FFFFFF" },
"smitheng": { color: "#FFFFFF" },
"snk": { color: "#359CD2" },
"sony": { color: "#1D1D1D" },
"tandy": { color: "#FFFFFF" },
"ti": { color: "#FFFFFF" },
"thomson": { color: "#FFFFFF" },
"valve": { color: "#010314" },
"vadimGrigoruk": { color: "#FFFFFF" }
}
// Additional data to display manufacturers and release dates
property var dataConsoles: {
"default": { manufacturer: "various", release: null, color: "#202335", altColor: "#131520", altColor2: "#7981a8", fullName: "Default" },
"all": { manufacturer: "various", release: null, color: "#851740", altColor: "#6D1234", altColor2: "#364792", fullName: "All Games" },
"lastplayed": { manufacturer: "various", release: null, color: "#FFFFFF", altColor: "#E6E6E6", altColor2: "#CDCDCD", fullName: "Last Played" },
"favorites": { manufacturer: "various", release: null, color: "#D4C028", altColor: "#AA9A20", altColor2: "#100F57", fullName: "Favorites" },
"3do": { manufacturer: "panasonic", release: "1993", color: "#0000A0", altColor: "#000080", altColor2: "#FFE41B", fullName: "3DO" },
"3ds": { manufacturer: "nintendo", release: "2011", color: "#C02424", altColor: "#961D1D", altColor2: "#929497", fullName: "Nintendo 3DS" },
"64dd": { manufacturer: "nintendo", release: "1999", color: "#233387", altColor: "#1A2765", altColor2: "#238B41", fullName: "Nintendo 64DD" },
"adam": { manufacturer: "coleco", release: "1983", color: "#A4DDF0", altColor: "#7BCEEA", altColor2: "#F3994B", fullName: "Coleco Adam" },
"advision": { manufacturer: "entexIndustries", release: "1982", color: "#b3000f", altColor: "#80000b", altColor2: "#ee7811", fullName: "Entex Adventure Vision" },
"ags": { manufacturer: "pc", release: null, color: "#0068ff", altColor: "#0052cc" , altColor2: "#ffffff", fullName: "Adventure Game Studio"},
"amiga": { manufacturer: "commodore", release: "1985", color: "#192753", altColor: "#121B3B", altColor2: "#ED2224", fullName: "Amiga" },
"amiga600": { manufacturer: "commodore", release: "1992", color: "#192753", altColor: "#121B3B", altColor2: "#ED2224", fullName: "Amiga 600" },
"amiga1200": { manufacturer: "commodore", release: "1992", color: "#ED2224", altColor: "#D41114", altColor2: "#192753", fullName: "Amiga 1200" },
"amigacd32": { manufacturer: "commodore", release: "1993", color: "#FF5853", altColor: "#FF3A33", altColor2: "#4A9BE4", fullName: "Amiga CD32" },
"amigacdtv": { manufacturer: "commodore", release: "1991", color: "#C86388", altColor: "#BD426F", altColor2: "#F62717", fullName: "Amiga CDTV" },
"amstradcpc": { manufacturer: "amstrad", release: "1984", color: "#942647", altColor: "#7A1F3A", altColor2: "#00A651", fullName: "Amstrad CPC" },
"android": { manufacturer: "OpenHandsetAlliance", release: null, color: "#77C159", altColor: "#5CA83E", altColor2: "#478230", fullName: "Android" },
"apfm1000": { manufacturer: "apf", release: "1978", color: "#9A5F41", altColor: "#7E4D35", altColor2: "#373632", fullName: "APF M-1000" },
"apple2": { manufacturer: "apple", release: "1977", color: "#009DDC", altColor: "#0080B3", altColor2: "#61BB46", fullName: "Apple II" },
"apple2gs": { manufacturer: "apple", release: "1986", color: "#D27C35", altColor: "#BC6B29", altColor2: "#8C3E8C", fullName: "Apple IIGS" },
"arcade": { manufacturer: "arcade_all", release: null, color: "#FCE236", altColor: "#DDC003", altColor2: "#5D9EED", fullName: "Arcade" },
"arcade-mame": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-neogeo": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-naomi": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-naomi2": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-fbneo": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-atomiswave": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-model2": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-model3": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-stv": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-taito": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"arcade-teknoparrot": { manufacturer: null, release: null, color: "#D00E2D", altColor: "#9B071E", altColor2: "#FFFFFF", fullName: "Arcade" },
"astrocade": { manufacturer: "bally", release: "1978", color: "#D27C35", altColor: "#CCA300", altColor2: "#9A5F41", fullName: "Bally Astrocade" },
"atari800": { manufacturer: "atari", release: "1979", color: "#B6B896", altColor: "#9FA276", altColor2: "#EBD335", fullName: "Atari 800" },
"atari2600": { manufacturer: "atari", release: "1977", color: "#C1272A", altColor: "#941E20", altColor2: "#1C267D", fullName: "Atari 2600" },
"atari5200": { manufacturer: "atari", release: "1982", color: "#1C6EB8", altColor: "#175E9B", altColor2: "#973E3A", fullName: "Atari 5200" },
"atari7800": { manufacturer: "atari", release: "1986", color: "#840B19", altColor: "#5E0811", altColor2: "#0B1984", fullName: "Atari 7800" },
"atarijaguar": { manufacturer: "atari", release: "1993", color: "#232326", altColor: "#0C0C0D", altColor2: "#FF0000", fullName: "Atari Jaguar" },
"atarijaguarcd": { manufacturer: "atari", release: "1995", color: "#FF0000", altColor: "#CC0000", altColor2: "#232326", fullName: "Atari Jaguar CD" },
"atarilynx": { manufacturer: "atari", release: "1989", color: "#262626", altColor: "#0D0D0D", altColor2: "#F38900", fullName: "Atari Lynx" },
"atarist": { manufacturer: "atari", release: "1985", color: "#357BB7", altColor: "#2E6A9E", altColor2: "#949494", fullName: "Atari ST" },
"atarixe": { manufacturer: "atari", release: "1987", color: "#AB9BA6", altColor: "#978290", altColor2: "#250D16", fullName: "Atari XEGS" },
"atomiswave": { manufacturer: "sammy", release: "2003", color: "#FF6B00", altColor: "#CC5500", altColor2: "#029205", fullName: "Arcade" },
"bbcmicro": { manufacturer: "acorn", release: "1981", color: "#1C0B0A", altColor: "#000000", altColor2: "#26250E", fullName: "BBC Micro" },
"c128": { manufacturer: "commodore", release: "1985", color: "#BBAD93", altColor: "#A79472", altColor2: "#FD4120", fullName: "Commodore 128" },
"c64": { manufacturer: "commodore", release: "1982", color: "#968971", altColor: "#847862", altColor2: "#FD4120", fullName: "Commodore 64" },
"cdi": { manufacturer: "philips", release: "1991", color: "#1E0A0A", altColor: "#000000", altColor2: "#1F0B0B", fullName: "Philips CDi" },
"channelf": { manufacturer: "fairchild", release: "1976", color: "#E0E0E0", altColor: "#CCCCCC", altColor2: "#4B3FF3", fullName: "Fairchild Channel F" },
"chihiro": { manufacturer: "sega", release: "2002", color: "#000000", altColor: "#252525", altColor2: "#181C4E", fullName: "Arcade" },
"coco": { manufacturer: "tandy", release: "1980", color: "#93A3B3", altColor: "#798CA0", altColor2: "#3A3B40", fullName: "Tandy TRS-80" },
"colecovision": { manufacturer: "coleco", release: "1982", color: "#EF8185", altColor: "#E9585D", altColor2: "#A4DDF0", fullName: "ColecoVision" },
"cplus4": { manufacturer: "commodore", release: "1983", color: "#BBAD93", altColor: "#A79472", altColor2: "#00A0C6", fullName: "Commodore Plus/4" },
"cps1": { manufacturer: "capcom", release: "1988", color: "#000000", altColor: "#252525", altColor2: "#252525", fullName: "Arcade" },
"cps2": { manufacturer: "capcom", release: "1993", color: "#000000", altColor: "#252525", altColor2: "#252525", fullName: "Arcade" },
"cps3": { manufacturer: "capcom", release: "1996", color: "#000000", altColor: "#252525", altColor2: "#252525", fullName: "Arcade" },
"daphne": { manufacturer: "arcade", release: null, color: "#856125", altColor: "#63481C", altColor2: "#DEBA27", fullName: "Daphne" },
"dos": { manufacturer: "ibm", release: "1981", color: "#666870", altColor: "#55575E", altColor2: "#1F70C1", fullName: "DOS" },
"dragon32": { manufacturer: "dragonData", release: "1982", color: "#F50019", altColor: "#CC0014", altColor2: "#74B719", fullName: "Dragon 32" },
"dreamcast": { manufacturer: "sega", release: "1998", color: "#C1C3C2", altColor: "#b1b4b3", altColor2: "#3e649f", fullName: "Sega Dreamcast" },
"famicom": { manufacturer: "nintendo", release: "1983", color: "#AA1C41", altColor: "#841533", altColor2: "#C0A987", fullName: "Famicom" },
"fba": { manufacturer: "arcade", release: null, color: "#231F20", altColor: "#0E0C0C", altColor2: "#FE7B07", fullName: "Arcade" },
"fbneo": { manufacturer: "arcade", release: null, color: "#FF8200", altColor: "#CC6900", altColor2: "#FFDBA1", fullName: "Arcade" },
"fds": { manufacturer: "nintendo", release: "1986", color: "#A71636", altColor: "#87122B", altColor2: "#C7AF89", fullName: "Famicom Disk System" },
"fmtowns": { manufacturer: "fujitsu", release: "1989", color: "#DFE0DF", altColor: "#CBCDCB", altColor2: "#8C8C8B", fullName: "FM Towns" },
"gamate": { manufacturer: "bitcorp", release: "1990", color: "#FFFC6D", altColor: "#FFFC4D", altColor2: "#464A53", fullName: "Gamate" },
"gameandwatch": { manufacturer: "nintendo", release: "1980", color: "#7B0000", altColor: "#4D0000", altColor2: "#FFFFFF", fullName: "Nintendo Game & Watch" },
"gamegear": { manufacturer: "sega", release: "1990", color: "#2B2B2B", altColor: "#0D0D0D", altColor2: "#0000FE", fullName: "Game Gear" },
"gba": { manufacturer: "nintendo", release: "2001", color: "#280FBE", altColor: "#1A097B", altColor2: "#5C67A9", fullName: "Game Boy Advance" },
"gbc": { manufacturer: "nintendo", release: "1998", color: "#2D308E", altColor: "#1C1E59", altColor2: "#7642B6", fullName: "Game Boy Color" },
"gb": { manufacturer: "nintendo", release: "1989", color: "#2D308E", altColor: "#1F2161", altColor2: "#9B2063", fullName: "Game Boy" },
"gc": { manufacturer: "nintendo", release: "2001", color: "#524C82", altColor: "#3D3960", altColor2: "#7B79AA", fullName: "Nintendo GameCube" },
"genesis": { manufacturer: "sega", release: "1988", color: "#2D2D2E", altColor: "#0D0D0D", altColor2: "#181C4E", fullName: "Sega Genesis" },
"gog": { manufacturer: "cdproject", release: "2008", color: "#1D1D1D", altColor: "#0D0D0D", altColor2: "#6D1D72", fullName: "GOG" },
"gx4000": { manufacturer: "amstrad", release: "1990", color: "#9E4968", altColor: "#7A3850", altColor2: "#DBD9D4", fullName: "Amstrad GX4000" },
"intellivision": { manufacturer: "mattel", release: "1979", color: "#3D2F29", altColor: "#1C1C1C", altColor2: "#D4C1A0", fullName: "Intellivision" },
"kodi": { manufacturer: "media", release: null, color: "#186AAC", altColor: "#125287", altColor2: "#36A2CD", fullName: "Kodi" },
"linux": { manufacturer: null, release: "1991", color: "#EBC40C", altColor: "#C2A30A", altColor2: "#141413", fullName: "Linux" },
"love": { manufacturer: "pc", release: null, color: "#3b6fc6", altColor: "#2e579e", altColor2: "#e3e3e3", fullName: "Löve" },
"macintosh": { manufacturer: "apple", release: "1984", color: "#76B845", altColor: "#609438", altColor2: "#009DDD", fullName: "Apple MacIntosh" },
"mame": { manufacturer: "arcade", release: null, color: "#231F20", altColor: "#0E0C0C", altColor2: "#00ADEF", fullName: "MAME" },
"mastersystem": { manufacturer: "sega", release: "1985", color: "#165193", altColor: "#113D6F", altColor2: "#E60000", fullName: "Sega Master System" },
"megadrive": { manufacturer: "sega", release: "1988", color: "#20211D", altColor: "#0D0E0C", altColor2: "#DCE3E6", fullName: "Sega Mega Drive" },
"model3": { manufacturer: "sega", release: "1996", color: "#282A71", altColor: "#1b1c4b", altColor2: "#474748", fullName: "Arcade" },
"moto": { manufacturer: "thomson", release: "1986", color: "#E6F0EF", altColor: "#CFE2E0", altColor2: "#4F8E5C", fullName: "Thomson MOTO" },
"msx2": { manufacturer: "microsoft_t1986", release: "1985", color: "#B7B7B7", altColor: "#949494", altColor2: "#7C3036", fullName: "MSX2" },
"msx": { manufacturer: "microsoft_t1986", release: "1983", color: "#9D9B91", altColor: "#848275", altColor2: "#89283B", fullName: "MSX" },
"msxturbor": { manufacturer: "panasonic", release: "1990", color: "#637080", altColor: "#4E5865", altColor2: "#99784B", fullName: "MSX Turbo-R" },
"n64": { manufacturer: "nintendo", release: "1996", color: "#238B41", altColor: "#19662F", altColor2: "#233387", fullName: "Nintendo 64" },
"naomi": { manufacturer: "sega", release: "1998", color: "#C75433", altColor: "#A2442A", altColor2: "#E4E7D7", fullName: "Arcade" },
"naomi2": { manufacturer: "sega", release: "2000", color: "#C75433", altColor: "#A2442A", altColor2: "#E4E7D7", fullName: "Arcade" },
"naomigd": { manufacturer: "sega", release: "1998", color: "#243551", altColor: "#182335", altColor2: "#E4E7D7", fullName: "Arcade" },
"nds": { manufacturer: "nintendo", release: "2004", color: "#BCBCBC", altColor: "#9E9E9E", altColor2: "#212121", fullName: "Nintendo DS" },
"neogeocd": { manufacturer: "snk", release: "1994", color: "#24241E", altColor: "#0E0E0C", altColor2: "#FFD400", fullName: "Neo Geo CD" },
"neogeo": { manufacturer: "snk", release: "1990", color: "#2D2D2D", altColor: "#1a1a1a", altColor2: "#BF9328", fullName: "Neo Geo" },
"nes": { manufacturer: "nintendo", release: "1983", color: "#D20014", altColor: "#A80010", altColor2: "#1A1919", fullName: "Nintendo Entertainment System" },
"ngpc": { manufacturer: "snk", release: "1999", color: "#E92A30", altColor: "#D0161C", altColor2: "#25374A", fullName: "Neo Geo Pocket Color" },
"ngp": { manufacturer: "snk", release: "1998", color: "#E92A30", altColor: "#D0161C", altColor2: "#25374A", fullName: "Neo Geo Pocket" },
"openbor": { manufacturer: "pc", release: null, color: "#E17930", altColor: "#C9641d", altColor2: "#407AC0", fullName: "Open BOR" },
"pc": { manufacturer: "ibm", release: "1981", color: "#666870", altColor: "#55575E", altColor2: "#1F70C1", fullName: "PC" },
"pc88": { manufacturer: "nec", release: "1981", color: "#B6A781", altColor: "#AB9A6D", altColor2: "#342B22", fullName: "NEC PC-88" },
"pc98": { manufacturer: "nec", release: "1982", color: "#3B3431", altColor: "#2A2523", altColor2: "#16643C", fullName: "NEC PC-98" },
"pce-cd": { manufacturer: "nec", release: "1987", color: "#B2B2B2", altColor: "#999999", altColor2: "#FE0000", fullName: "PC Engine CD" },
"pcengine": { manufacturer: "nec", release: "1987", color: "#FE0000", altColor: "#CC0000", altColor2: "#D9D9D9", fullName: "PC Engine" },
"pcfx": { manufacturer: "nec", release: "1994", color: "#5C3073", altColor: "#3D204C", altColor2: "#FEC101", fullName: "PC-FX" },
"pet": { manufacturer: "commodore", release: "1977", color: "#FBFFFE", altColor: "#CCFFF2", altColor2: "#2A2A2A", fullName: "Commodore PET" },
"pico8": { manufacturer: "lexaloffle", release: "2015", color: "#00E436", altColor: "#00B32A", altColor2: "#29ADFF", fullName: "PICO-8" },
"pokemini": { manufacturer: "nintendo", release: "2001", color: "#FCE200", altColor: "#CCB800", altColor2: "#004F8A", fullName: "Pokemon Mini" },
"ports": { manufacturer: "pc", release: null, color: "#4B77BE", altColor: "#3D66A9", altColor2: "#36D7B7", fullName: "PC" },
"ps2": { manufacturer: "sony", release: "2000", color: "#33438A", altColor: "#293670", altColor2: "#40A9A8", fullName: "PS2" },
"ps3": { manufacturer: "sony", release: "2006", color: "#0D1114", altColor: "#333333", altColor2: "#0095D5", fullName: "PS3" },
"psp": { manufacturer: "sony", release: "2004", color: "#313131", altColor: "#141414", altColor2: "#97A9BA", fullName: "PSP" },
"pspminis": { manufacturer: "sony", release: "2004", color: "#313131", altColor: "#141414", altColor2: "#97A9BA", fullName: "PSP Minis" },
"psvita": { manufacturer: "sony", release: "2011", color: "#0F1012", altColor: "#000000", altColor2: "#F9F7F7", fullName: "PS Vita" },
"psx": { manufacturer: "sony", release: "1994", color: "#F1C002", altColor: "#CAA202", altColor2: "#252525", fullName: "PlayStation" },
"pv1000": { manufacturer: "casio", release: "1983", color: "#526B89", altColor: "#435770", altColor2: "#DA353A", fullName: "Casio PV-1000" },
"residualvm": { manufacturer: "pc", release: null, color: "#CDA335", altColor: "#B8912E", altColor2: "#9ECB2E", fullName: "PC" },
"retropie": { manufacturer: "pc", release: null, color: "#CB2027", altColor: "#B01C21", altColor2: "#FEE600", fullName: "RetroPie" },
"rpgmaker": { manufacturer: "pc", release: null, color: "#4D603D", altColor: "#3E4E32", altColor2: "#838382", fullName: "PC" },
"samcoupe": { manufacturer: "milesGordonTech", release: "1989", color: "#2A46A5", altColor: "#253d8e", altColor2: "#96958C", fullName: "SAM Coupé" },
"satellaview": { manufacturer: "nintendo", release: "1995", color: "#CD2943", altColor: "#AA2238", altColor2: "#FFDF68", fullName: "Nintendo SatellaView" },