Skip to content

Commit 4e09626

Browse files
committed
Add volume control for playlist and PLAYLIST_VOLUME option in settings.txt
Add thank you page to the intermission screens and increase delay between screens Add another default track to the playlist from MotionRide
1 parent 3f1cd93 commit 4e09626

6 files changed

+133
-38
lines changed

dk_config.py

+56-16
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
CONTROL_EXIT = pygame.K_ESCAPE
3434
CONTROL_TAB = pygame.K_TAB
3535
CONTROL_SNAP = pygame.K_F12
36+
CONTROL_PLAYLIST = pygame.K_p
37+
CONTROL_SKIP = pygame.K_s
3638

3739
# Joystick Options and Button Assignments
3840
USE_JOYSTICK = 0
@@ -58,7 +60,8 @@
5860
SHOW_GAMETEXT = 1 # Show the game text description when Jumpman faces an arcade machine
5961
ENABLE_HAMMERS = 1 # Show hammers and enable teleport between hammers in the frontend
6062
ENABLE_SHUTDOWN = 0 # Allow system shutdown from menu
61-
ENABLE_PLAYLIST = 0 # Play background music from playlist folder
63+
ENABLE_PLAYLIST = 1 # Play background music from playlist folder
64+
PLAYLIST_VOLUME = 5 # Volume of playlist music from 0 to 10
6265

6366
# DKWolf/Interface options
6467
HIGH_SCORE_SAVE = 1 # Retain high scores (they are specific to each hack)
@@ -129,6 +132,12 @@
129132
pygame.quit()
130133
exit()
131134

135+
# Validate some settings
136+
if PLAYLIST_VOLUME > 10: globals()["PLAYLIST_VOLUME"] = 10
137+
if PLAYLIST_VOLUME < 0: globals()["PLAYLIST_VOLUME"] = 0
138+
if SPEED_ADJUST > 8: globals()["SPEED_ADJUST"] = 8
139+
if SPEED_ADJUST < 0: globals()["SPEED_ADJUST"] = 0
140+
132141
# Frontend version
133142
VERSION = ''
134143
if os.path.exists("VERSION"):
@@ -346,14 +355,14 @@
346355
347356
The coins thrown by Donkey
348357
Kong must be collected by
349-
Jumpman so he has money
350-
to play the arcades.
358+
Jumpman so he has money to
359+
play the arcades.
351360
352361
Jumpman must play well to
353-
win prizes and unlock
354-
arcade machines as he works
355-
his way to the top of the
356-
building to rescue Pauline.
362+
win prizes and unlock arcade
363+
machines as he works his way
364+
to the top of the building
365+
to rescue Pauline.
357366
358367
Pauline will ♥ it when you
359368
beat all of the machines.
@@ -373,20 +382,20 @@
373382
Helpful hints
374383
~~~~~~~~~~~~~
375384
376-
• You can navigate Jumpman
377-
between stages using the
378-
exit ladders or by
379-
warping down an oilcan.
385+
• You can navigate Jumpman
386+
between stages using the
387+
exit ladders or by warping
388+
down an oilcan.
380389
381390
• You can teleport Jumpman
382391
over short distances by
383392
jumping up to a hammer.
384393
385-
• Help Jumpman get better
386-
by using practice modes.
387-
Maybe you can help him
388-
reach the infamous
389-
Donkey Kong killscreen.
394+
• Help Jumpman get better by
395+
using practice modes.
396+
Maybe you can help him to
397+
reach the infamous Donkey
398+
Kong killscreen.
390399
391400
"""
392401

@@ -420,6 +429,37 @@
420429
Exit - Exit DKAFE
421430
"""
422431

432+
THANKS_TO = """
433+
434+
Thanks to all these folks!
435+
436+
437+
Donkey Kong rom hacks:
438+
Paul Goes
439+
Sockmaster
440+
Jeff Kulczycki,
441+
Mike Mika & Clay Cowgill
442+
Don Hodges
443+
Tim Appleton
444+
Vic20 George
445+
Kirai Shouen & 125scratch
446+
447+
The DK rom hacking resource:
448+
furrykef
449+
450+
Feedback and feature ideas:
451+
Superjustinbros
452+
453+
Playlist music:
454+
LeviR.star's Music
455+
MyNameIsBanks
456+
SanHolo
457+
Nintega Dario
458+
MotionRide Music
459+
460+
461+
"""
462+
423463
# Sound setup
424464
pygame.mixer.init(frequency=48000)
425465
background_channel = pygame.mixer.Channel(1)

launch.py

+38-13
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,12 @@ def check_for_input(force_exit=False):
242242
_g.showslots = not _g.showslots
243243
if event.key == CONTROL_SNAP:
244244
take_screenshot()
245+
if event.key == CONTROL_SKIP:
246+
if ENABLE_PLAYLIST and playlist.get_busy():
247+
play_from_tracklist()
248+
if event.key == CONTROL_PLAYLIST:
249+
globals()["ENABLE_PLAYLIST"] = not ENABLE_PLAYLIST
250+
set_playlist(None, ENABLE_PLAYLIST, external=True) # Fix pygamemenu issue
245251

246252
# Optional joystick controls
247253
if USE_JOYSTICK:
@@ -555,7 +561,10 @@ def build_menus(initial=False):
555561
('+8', 8)], default=SPEED_ADJUST, onchange=set_speed)
556562
_g.setmenu.add_vertical_margin(10)
557563
_g.setmenu.add_selector('Highscore Save: ', [('Off', 0), ('On', 1)], default=HIGH_SCORE_SAVE, onchange=set_high)
558-
_g.setmenu.add_selector(' Music Playlist: ', [('Off', 0), ('On', 1)], default=ENABLE_PLAYLIST, onchange=set_playlist)
564+
_g.setmenu.add_selector('Music Playlist: ', [('Off', 0), ('On', 1)], default=ENABLE_PLAYLIST, onchange=set_playlist)
565+
_g.setmenu.add_selector(' Music Volume: ',
566+
[('0%', 0), ('10%', 1), ('20%', 2), ('30%', 3), ('40%', 4), ('50%', 5), ('60%', 6),
567+
('70%', 7), ('80%', 8), ('90%', 9), ('100%', 10)], default=PLAYLIST_VOLUME, onchange=set_volume)
559568
_g.setmenu.add_vertical_margin(10)
560569
_g.setmenu.add_button('Save Changes to File', save_menu_settings)
561570
_g.setmenu.add_button('Close Menu', close_menu)
@@ -657,6 +666,8 @@ def save_menu_settings():
657666
f_out.write(f"HIGH_SCORE_SAVE = {HIGH_SCORE_SAVE}\n")
658667
elif "ENABLE_PLAYLIST=" in line_packed:
659668
f_out.write(f"ENABLE_PLAYLIST = {ENABLE_PLAYLIST}\n")
669+
elif "PLAYLIST_VOLUME=" in line_packed:
670+
f_out.write(f"PLAYLIST_VOLUME = {PLAYLIST_VOLUME}\n")
660671
else:
661672
f_out.write(line)
662673
write_text(text=" Changes have been saved ", font=dk_font, y=232, fg=PINK, bg=RED)
@@ -679,17 +690,14 @@ def set_speed(_, setting_value):
679690
globals()["SPEED_ADJUST"] = setting_value
680691

681692

682-
def set_high(_, setting_value):
683-
globals()["HIGH_SCORE_SAVE"] = setting_value
693+
def set_volume(_, setting_value):
694+
globals()["PLAYLIST_VOLUME"] = setting_value
695+
playlist.set_volume(setting_value / 10)
684696

685697

686-
def set_playlist(_, setting_value):
687-
globals()["ENABLE_PLAYLIST"] = setting_value
688-
if setting_value == 1:
689-
background_channel.stop()
690-
else:
691-
background_channel.play(pygame.mixer.Sound('sounds/background.wav'), -1)
692-
playlist.stop()
698+
699+
def set_high(_, setting_value):
700+
globals()["HIGH_SCORE_SAVE"] = setting_value
693701

694702

695703
def set_confirm(_, setting_value):
@@ -702,11 +710,27 @@ def set_gametext(_, setting_value, external=False):
702710
if external:
703711
# Hack to fix pygamemenu when updating outside the menu
704712
for i, w in enumerate(_g.setmenu._widgets):
705-
if w._title.startswith("Show Game Text"):
713+
if "Show Game Text" in w._title:
706714
_g.setmenu._widgets[i]._index = int(SHOW_GAMETEXT)
707715
break
708716

709717

718+
# noinspection PyProtectedMember
719+
def set_playlist(_, setting_value, external=False):
720+
globals()["ENABLE_PLAYLIST"] = setting_value
721+
if setting_value == 1:
722+
background_channel.stop()
723+
else:
724+
background_channel.play(pygame.mixer.Sound('sounds/background.wav'), -1)
725+
playlist.stop()
726+
if external:
727+
# Hack to fix pygamemenu when updating outside the menu
728+
for i, w in enumerate(_g.setmenu._widgets):
729+
if "Music Playlist" in w._title:
730+
_g.setmenu._widgets[i]._index = int(ENABLE_PLAYLIST)
731+
break
732+
733+
710734
def set_fullscreen(_, setting_value):
711735
if FULLSCREEN != setting_value:
712736
globals()["FULLSCREEN"] = setting_value
@@ -1110,11 +1134,11 @@ def inactivity_check():
11101134
if _g.timer.duration - _g.lastmove > INACTIVE_TIME:
11111135
_g.ready = False # Jumpman status changed to be not ready to play.
11121136
_g.facing = 1
1113-
pause_mod = ((pygame.time.get_ticks() - _g.pause_ticks) % 39000) - 3000
1137+
pause_mod = ((pygame.time.get_ticks() - _g.pause_ticks) % 51000) - 3000
11141138
if pause_mod < 0:
11151139
_g.screen.blit(get_image(f"artwork/intro/f{randint(0, 1)}.png"), TOPLEFT)
11161140
else:
1117-
lines = (INSTRUCTION, MORE_INSTRUCTION, CONTROLS)[floor(pause_mod / 12000)]
1141+
lines = (INSTRUCTION, MORE_INSTRUCTION, CONTROLS, THANKS_TO)[floor(pause_mod / 12000)]
11181142
for i, line in enumerate(lines.split("\n")):
11191143
write_text(line + (" " * 28), y=i * 8 + 20, fg=CYAN, bg=BLACK, font=dk_font)
11201144
show_score()
@@ -1233,6 +1257,7 @@ def main(initial=True):
12331257
_g.tracklist = _s.glob("playlist/*.mp3") + _s.glob("playlist/*.ogg")
12341258
if not ENABLE_PLAYLIST:
12351259
background_channel.play(pygame.mixer.Sound('sounds/background.wav'), -1)
1260+
playlist.set_volume(PLAYLIST_VOLUME / 10)
12361261

12371262
# Main game loop
12381263
while True:
4.71 MB
Binary file not shown.

readme.md

+17-6
Original file line numberDiff line numberDiff line change
@@ -309,9 +309,12 @@ The stage to start the frontend on. 0 is barrels stage. 1 is rivets stage.
309309
`HIGH_SCORE_SAVE = 1`
310310
Save your high score tables for each game.
311311

312-
`ENABLE_PLAYLIST = 0`
312+
`ENABLE_PLAYLIST = 1`
313313
1 to play music files from the **playlist** folder instead of the regular Donkey kong background music.
314314

315+
'PLAYLIST_VOLUME = 5'
316+
Playlist music volume from 0 (minimum) to 10 (maximum).
317+
315318
`ENABLE_MENU=1`
316319
1 to enable the game list when P2 Start button is pressed to quickly launch an available game via the menu.
317320

@@ -427,6 +430,8 @@ CONTROL_INFO = 5
427430
CONTROL_EXIT = escape
428431
CONTROL_SETTINGS = tab
429432
CONTROL_SNAP = F12
433+
CONTROL_SKIP = s
434+
CONTROL_PLAYLIST = p
430435
```
431436

432437
IMPORTANT NOTE: The controls configured in the frontend do not apply to the emulator. If your controls are not default then you will also have to configure your controls in the emulator menu (tab).
@@ -475,7 +480,8 @@ dtoverlay=gpio-key,gpio=26,keycode=1,label="KEY_ESC"
475480
You can override the default Donkey Kong background music by setting `ENABLE_PLAYLIST = 1` in the settings.txt file.
476481
Several default music files are provided for your enjoyment. These files can be removed and replaced with your own favourite music tracks in **.mp3** or **.ogg** format.
477482

478-
The "Music Playlist" can also be activated via the frontend settings menu (by pressing the TAB key).
483+
The "Music Playlist" can also be activated via the frontend settings menu (by pressing the TAB key) or it can be toggle on/off by pressing the CONTROL_PLAYLIST key (p).
484+
When music is playing you can skip to the next track by pressing the CONTROL_SKIP key (s).
479485

480486

481487
### How to use romlist.csv
@@ -558,6 +564,7 @@ I would love to get to the infamous killscreen on level 22. My current PB is 51
558564
- Create an alternative frontend for vertical arcade games (like 60-in-1 board) with DK, Pacman, Ms Pacman, Galaga, Burger Time, Frogger etc. No roms will be provided.
559565
- Add support for console versions of DK
560566

567+
561568
## Thanks to
562569

563570
The Donkey Kong rom hacking resource
@@ -580,18 +587,22 @@ https://docs.mamedev.org/
580587
WolfMAME by Mahlemiut
581588
https://github.com/mahlemiut/wolfmame
582589

583-
The VRC6 Project by LeviR.star's Music. 4 DK remix tracks are used in the default playlist folder
590+
The VRC6 Project by LeviR.star's Music. 4 DK remix tracks are included in the default playlist folder
584591
https://www.youtube.com/watch?v=Ufd9UC2wUpA
585592

586-
DonkeyKong Classic Remix Music by MyNameIsBanks. This track is used in the default playlist folder.
593+
DonkeyKong Classic Remix Music by MyNameIsBanks. This track is included in the default playlist folder.
587594
https://www.youtube.com/watch?v=MDw2goJSi4k
588595

589-
Donkey Kong Remix Music by SanHolo. This track is used in the default playlist folder.
596+
Donkey Kong Remix Music by SanHolo. This track is included in the default playlist folder.
590597
https://www.youtube.com/watch?v=_kdgB5SRqHw
591598

592-
Main Theme Remix Music by Nintega Dario. This track is used in the default playlist folder.
599+
Main Theme Remix Music by Nintega Dario. This track is included in the default playlist folder.
593600
https://www.youtube.com/watch?v=VPT42lfFNMY
594601

602+
Donkey Kong Arcade by MotionRide Music. This track is included in the default playlist folder.
603+
https://www.youtube.com/watch?v=gy0C2a5QEu8
604+
605+
595606
## License
596607

597608
DKAFE is a free, open source, cross-platform front-end for emulators.

rpi4/settings.txt

+20-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ SPEED_ADJUST = 0
2222
SKILL_LEVEL = 1
2323
START_STAGE = 0
2424
HIGH_SCORE_SAVE = 1
25-
ENABLE_PLAYLIST = 0
25+
ENABLE_PLAYLIST = 1
26+
PLAYLIST_VOLUME = 5
2627

2728
# Emulator Settings
2829
ROM_DIR = <ROOT>/roms
@@ -33,7 +34,7 @@ OPTIONS = -rompath <ROM_DIR> -view "Screen 0 Pixel Aspect (7:8)" -nofilter -vide
3334
EMU_1 = <ROOT>/dkwolf/dkwolfrpi <OPTIONS>
3435
EMU_2 = <ROOT>/dkwolf/dkwolfrpi <OPTIONS> -nvram_directory /dev/null -record <RECORD_ID>
3536

36-
# Interface Settings
37+
# DKWolf/Interface Settings
3738
CREDITS = 1
3839
AUTOSTART = 1
3940
ALLOW_SKIP_INTRO = 1
@@ -42,6 +43,8 @@ SHOW_AWARD_TARGETS = 1
4243
SHOW_HUD = 1
4344

4445
# Controls
46+
# NOTE: These controls apply to the DKAFE frontend only.
47+
# If you change controls here then you should also change controls in your emulator menu (accessed using tab key).
4548
CONTROL_LEFT = left
4649
CONTROL_RIGHT = right
4750
CONTROL_UP = up
@@ -53,3 +56,18 @@ CONTROL_P2 = 2
5356
CONTROL_COIN = 5
5457
CONTROL_EXIT = escape
5558
CONTROL_SETTINGS = tab
59+
60+
# Optional Joystick and Button Assignments
61+
# Note: DPAD and first analog axis are automatically mapped to directions
62+
# Device 1 buttons start from 0, Device 2 buttons start from 20
63+
USE_JOYSTICK = 0
64+
BUTTON_JUMP = 0
65+
BUTTON_ACTION = 1
66+
BUTTON_P1 = 9
67+
BUTTON_P2 = 29
68+
BUTTON_EXIT = 6
69+
BUTTON_COIN = 7
70+
71+
#
72+
# For a complete list of settings visit - https://github.com/10yard/dkafe#frontend-settings
73+
#

settings.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ SPEED_ADJUST = 0
2222
SKILL_LEVEL = 1
2323
START_STAGE = 0
2424
HIGH_SCORE_SAVE = 1
25-
ENABLE_PLAYLIST = 0
25+
ENABLE_PLAYLIST = 1
26+
PLAYLIST_VOLUME = 5
2627

2728
# Emulator Settings
2829
ROM_DIR = <ROOT>/roms

0 commit comments

Comments
 (0)