UI/UX: Add new icon for Lap Trial mode

Also fix more license documentation stuff
This commit is contained in:
QwertyChouskie 2023-05-01 22:47:44 -07:00
parent 4174237302
commit 4932a60a9b
6 changed files with 61 additions and 7 deletions

View File

@ -14,6 +14,8 @@ Files:
*.png *.png
back.png back.png
player.png player.png
mode_3strikes.png
mode_weapons.png
Copyright: SuperTuxKart dev team Copyright: SuperTuxKart dev team
License: CC-BY-SA 3.0+ License: CC-BY-SA 3.0+
Comment: Comment:
@ -52,8 +54,59 @@ License: CC-BY-SA 3.0
Comment: combination of main_network.png and blue_plus.png Comment: combination of main_network.png and blue_plus.png
Files: Files:
mode_*.png mode_ftl.png
mode_ghost.png
mode_normal.png
mode_soccer.png
race_giveup.png race_giveup.png
Copyright: Totoplus62, SuperTuxKart dev team, ???
License: CC-BY-SA 3.0
Comment:
Original backgrounds come from set made by onyum.com (see above)
Backgrounds edited by Totoplus62
TODO: Source of ghost icon unknown
TODO: Check license of gift box model
TODO: Source of flag icon unknown
Files:
mode_normal.png
Copyright: Totoplus62, MiniBjorn, Marianne "Auria" Gagnon, SuperTuxKart dev team
License: CC-BY-SA 3.0
Comment:
Original backgrounds come from set made by onyum.com (see above)
Backgrounds edited by Totoplus62
Gift box model by MiniBjorn, with slight modifications by Marianne Gagnon
Files:
mode_tt.png
Copyright: Totoplus62, yeKcim, SuperTuxKart dev team
License: CC-BY-SA 3.0
Comment:
Original backgrounds come from set made by onyum.com (see above)
Backgrounds edited by Totoplus62
Clock icon from set by yeKcim
Files:
mode_easter.png
Copyright: Totoplus62, fraang, SuperTuxKart dev team
License: CC-BY-SA 3.0
Comment:
Original backgrounds come from set made by onyum.com (see above)
Backgrounds edited by Totoplus62
Eggs by fraang from https://opengameart.org/content/easter-egg
Rabbit and other bits by Totoplus62
Files:
mode_laptrial.png
Copyright: Totoplus62, yeKcim, Alina Oleynik, SuperTuxKart dev team
License: CC-BY-SA 3.0
Comment:
Original backgrounds come from set made by onyum.com (see above)
Backgrounds edited by Totoplus62
Clock icon from set by yeKcim
Flag is lap_flag.png by Alina Oleynik
Files:
tutorial.png tutorial.png
Copyright: Totoplus62 Copyright: Totoplus62
License: CC-BY-SA 3.0 License: CC-BY-SA 3.0
@ -158,10 +211,11 @@ License: CC-BY-SA 4
Files: Files:
lap_flag.png lap_flag.png
Copyright: Alayan Copyright: Alina Oleynik
License: CC-BY-SA 3 License: CC BY 3.0
Comment: Comment:
original by Alina Oleynik from The Noun Project "racing flag" icon by Alina Oleynik, from thenounproject.com
Source: https://thenounproject.com/icon/racing-flag-1298802/
Files: Files:
robot.png robot.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -88,7 +88,7 @@
</div> </div>
<div width="100%" proportion="2" layout="horizontal-row"> <div width="100%" proportion="2" layout="horizontal-row">
<icon align="center" width="8%" height="100%" icon="gui/icons/mode_normal.png"/> <icon align="center" width="8%" height="100%" icon="gui/icons/mode_laptrial.png"/>
<spacer width="3%" height="100%"/> <spacer width="3%" height="100%"/>
<bubble proportion="1" height="100%" <bubble proportion="1" height="100%"
I18N="In the help menu" I18N="In the help menu"

View File

@ -22,7 +22,7 @@
I18N="In the high score selection screen" text="Time Trial"/> I18N="In the high score selection screen" text="Time Trial"/>
<icon-button id="tab_egg_hunt" width="128" height="128" icon="gui/icons/mode_easter.png" <icon-button id="tab_egg_hunt" width="128" height="128" icon="gui/icons/mode_easter.png"
I18N="In the high score selection screen" text="Egg Hunt"/> I18N="In the high score selection screen" text="Egg Hunt"/>
<icon-button id="tab_lap_trial" width="128" height="128" icon="gui/icons/mode_normal.png" <icon-button id="tab_lap_trial" width="128" height="128" icon="gui/icons/mode_laptrial.png"
I18N="In the high score selection screen" text="Lap Trial"/> I18N="In the high score selection screen" text="Lap Trial"/>
<icon-button id="tab_grand_prix" width="128" height="128" icon="gui/icons/gp_new.png" <icon-button id="tab_grand_prix" width="128" height="128" icon="gui/icons/gp_new.png"
I18N="In the high score selection screen" text="Grand Prix"/> I18N="In the high score selection screen" text="Grand Prix"/>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

View File

@ -169,7 +169,7 @@ public:
case MINOR_MODE_NORMAL_RACE: return "/gui/icons/mode_normal.png"; case MINOR_MODE_NORMAL_RACE: return "/gui/icons/mode_normal.png";
case MINOR_MODE_TIME_TRIAL: return "/gui/icons/mode_tt.png"; case MINOR_MODE_TIME_TRIAL: return "/gui/icons/mode_tt.png";
case MINOR_MODE_FOLLOW_LEADER: return "/gui/icons/mode_ftl.png"; case MINOR_MODE_FOLLOW_LEADER: return "/gui/icons/mode_ftl.png";
case MINOR_MODE_LAP_TRIAL: return "/gui/icons/mode_normal.png"; // TODO: Add lap trial icon case MINOR_MODE_LAP_TRIAL: return "/gui/icons/mode_laptrial.png";
case MINOR_MODE_3_STRIKES: return "/gui/icons/mode_3strikes.png"; case MINOR_MODE_3_STRIKES: return "/gui/icons/mode_3strikes.png";
case MINOR_MODE_FREE_FOR_ALL: return "/gui/icons/mode_weapons.png"; case MINOR_MODE_FREE_FOR_ALL: return "/gui/icons/mode_weapons.png";
case MINOR_MODE_CAPTURE_THE_FLAG: return "/gui/icons/mode_weapons.png"; case MINOR_MODE_CAPTURE_THE_FLAG: return "/gui/icons/mode_weapons.png";