Skip to content

Commit

Permalink
initial wii work (.. merge)
Browse files Browse the repository at this point in the history
  • Loading branch information
LlysiX committed Feb 15, 2024
1 parent 833c2b8 commit 86298ae
Show file tree
Hide file tree
Showing 3 changed files with 1,805 additions and 2 deletions.
136 changes: 134 additions & 2 deletions _ark/(..)/(..)/system/run/band/band_objects.dta
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,24 @@
object
(class Environ)
(help
"environment override for this target during this shot")))))
"environment override for this target during this shot"))
#ifdef HX_WII
(lod_override
bool
(help
"Force target to least-detailed LOD"))
(outfit_hides
bitfield
(list
{if_else
{$this
has
(outfit_list)}
{$this outfit_list}
()})
(help
"Hide specified character outfits"))
#endif)))
(triggers
(array
(struct
Expand Down Expand Up @@ -473,6 +490,12 @@
int
(help
"30fps maximum duration for this shot, 0 is infinite"))
#ifdef HX_WII
(fps_override
bool
(help
"Force world to render at 20Hz when 3 or more gem tracks are in play (Wii only)"))
#endif
(store
script
(script
Expand Down Expand Up @@ -511,6 +534,22 @@
"kValidDramatic"
"kValidRocker"
"kValidSpazz"))
#ifdef HX_WII
(outfit_list
("kOutfitHideHair"
"kOutfitHideHeads"
"kOutfitHideFaceHair"
"kOutfitHideGlasses"
"kOutfitHideTorso"
"kOutfitHideHands"
"kOutfitHideLegs"
"kOutfitHideFeet"
"kOutfitHideWrist"
"kOutfitHideBass"
"kOutfitHideGuitar"
"kOutfitHideMic"
"kOutfitHideDrum"))
#endif
(worst FALSE)
(editor
(bass_focus
Expand Down Expand Up @@ -742,6 +781,7 @@
{$char reset_hair})
(update_overlay
#ifndef _SHIP
#ifndef WII_OUTPUTONLY
{rnd
reflect
camera
Expand Down Expand Up @@ -791,11 +831,14 @@
" postprocess: "
[postprocess]}}
"\n"}}
#endif
#endif)
(start_shot
#ifndef _SHIP
#ifndef WII_OUTPUTONLY
{$this update_overlay}
#endif
#endif
{if
[play_anim]
{[play_anim]
Expand Down Expand Up @@ -1278,6 +1321,7 @@
[abs_regulate])})
(start_shot
#ifndef _SHIP
#ifndef WII_OUTPUTONLY
{rnd
reflect
camera
Expand All @@ -1287,6 +1331,7 @@
" category:"
[category]
"\n"}}
#endif
#endif)
(stop_shot
{foreach_int
Expand Down Expand Up @@ -4445,4 +4490,91 @@
(challenge_list
object
(class BandList)))
(types))
(types))
#ifdef HX_WII
(ScoreboardDir
(description
"In-game scoreboard")
(superclasses RndDir)
(types)
(editor
(reset
script
(script
{$this reset}))
(test_score
float
(post_sync
{$this
set_score
[test_score]})
(help
"Current score."))
(test_stars
float
(post_sync
{$this
set_num_stars
[test_stars]}))
(test_opponent_score
float
(post_sync
{$this
set_opponent_score
[test_opponent_score]})
(help
"BotB opponent's total score."))
(sound
bool
"Play a sound when the stars change")
(config
symbol
(list
(normal botb botb_star))
(post_sync
{$this
set_config
[config]}))
(stars
(array
object
(class RndDir)))))
(BandPowerMeterDir
(description
"Overdrive power meter")
(superclasses RndDir)
(types)
(editor
(initialize
script
(script
{$this reset}
{$this set_showing TRUE}))
(test_energy
float
(post_sync
{$this
set_energy
[test_energy]
[state]
guitar}))
(energy_added
script
(script
{$this energy_added}))
(energy_ready
script
(script
{$this energy_ready guitar}))
(stop
script
(script
{$this stop_deploy}))
(disable_overdrive
script
(script
{$this set_no_overdrive}))
(vocal_meter
bool
(read_only TRUE))))
#endif
Loading

0 comments on commit 86298ae

Please sign in to comment.