-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from Bollos00/39-sound-effects
sound effects in the game
- Loading branch information
Showing
38 changed files
with
428 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,11 +34,11 @@ jobs: | |
run: "sudo apt-get update" | ||
|
||
- name: "Install dependencies" | ||
run: "sudo apt-get install build-essential qt5-default cmake libqt5svg5-dev" | ||
run: "sudo apt-get install build-essential qt5-default cmake libqt5svg5-dev qtmultimedia5-dev" | ||
|
||
- name: "Create build directory and run CMake" | ||
run: "mkdir build && cd build && cmake .." | ||
|
||
- name: "Build" | ||
run: "cd build && make" | ||
|
||
|
@@ -51,19 +51,19 @@ jobs: | |
- uses: actions/checkout@v2 | ||
|
||
- name: "Install dependencies" | ||
run: "pacman -Syu --noconfirm base-devel qt6-base qt6-svg cmake" | ||
run: "pacman -Syu --noconfirm base-devel qt6-base qt6-svg qt6-multimedia cmake" | ||
|
||
- name: "Create build directory and run CMake" | ||
run: "mkdir build && cd build && cmake -DUSE_QT6='YES' .." | ||
|
||
- name: "Build" | ||
run: "cd build && make" | ||
|
||
build-windows: | ||
runs-on: windows-2019 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: "Install Qt" | ||
uses: jurplel/[email protected] | ||
with: | ||
|
@@ -78,7 +78,6 @@ jobs: | |
|
||
- name: "Create build directory and run CMake" | ||
run: "mkdir build && cd build && cmake .." | ||
|
||
- name: "Build" | ||
run: "cd build && cmake --build . --config Release" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<RCC> | ||
<qresource prefix="/"> | ||
<file>sound_effects/clock_tick.wav</file> | ||
<file>sound_effects/flag_cell.wav</file> | ||
<file>sound_effects/game_lost.wav</file> | ||
<file>sound_effects/game_won.wav</file> | ||
<file>sound_effects/release_cell.wav</file> | ||
<file>sound_effects/move.wav</file> | ||
</qresource> | ||
</RCC> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Credits | ||
|
||
* Clock tick: https://freesound.org/people/andersmmg/sounds/511492/ | ||
|
||
* Flag cell: https://freesound.org/people/ironcross32/sounds/582695/ | ||
|
||
* Game lost: https://freesound.org/people/Nbs%20Dark/sounds/94185/ | ||
|
||
* Game won: https://freesound.org/people/Mativve/sounds/391539/ | ||
|
||
* Release cell: https://freesound.org/people/Greencouch/sounds/124897/ | ||
|
||
* Move: https://freesound.org/people/AbdrTar/sounds/558117/ |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.