-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
source code cleanup and optimizations
- Loading branch information
1 parent
1a4c8e5
commit e00215d
Showing
389 changed files
with
1,393 additions
and
318,334 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
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,85 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<vbox width="100%" height="100%"> | ||
<menubar id="bar" width="100%" paddingLeft="180"> | ||
<style> | ||
.menu { | ||
// The width of the individual menu items | ||
width: 160px; | ||
} | ||
</style> | ||
<menu text="Chart" style="padding: 5px;"> | ||
<menu-item id="chartSave" text="Save Chart" /> | ||
<menu-item id="chartReload" text="Reload Chart" /> | ||
<menu-item id="chartLoadAuto" text="Load Autosave" /> | ||
<menu-item id="chartClear" text="Clear Chart" /> | ||
</menu> | ||
<menu text="Preferences" style="padding: 5px;"> | ||
<menu-checkbox id="editorDrag" text="Drag Editor" /> | ||
<menu-item id="editorReset" text="Reset Editor Position" /> | ||
<menu-separator /> | ||
<vbox width="100%" style="padding: 5px;"> | ||
<label width="100%" styleName="menuHeader" text="Metronome Volume" verticalAlign="center" /> | ||
<slider id="editorMetroVol" majorTicks="10" minorTicks="5" pos="100" verticalAlign="center" /> | ||
</vbox> | ||
<menu-checkbox id="editorHitsoundP" text="Player Hitsounds" /> | ||
<menu-checkbox id="editorHitsoundsE" text="Enemy Hitsounds" /> | ||
</menu> | ||
<menu text="Game" style="padding: 5px;"> | ||
<menu-item id="editorPlaytest" text="Playtest Chart Ingame" /> | ||
<menu-checkbox id="editorOpponentMode" text="Opponent Mode" /> | ||
</menu> | ||
</menubar> | ||
<spacer height="280" /> | ||
<tabview id="tabs" width="400" height="400" style="padding: 5px; spacing : 5px;"> | ||
<vbox text="Assets"> | ||
<frame width="350" height="350"> | ||
<vbox> | ||
<hbox> | ||
<label text="Player" horizontalAlign="center" /> | ||
<spacer width="75" /> | ||
<label text="GF" horizontalAlign="center" /> | ||
<spacer width="75" /> | ||
<label text="Opponent" verticalAlign="center" /> | ||
</hbox> | ||
<hbox> | ||
<dropdown id="playerSelect" width="75" horizontalAlign="center" /> | ||
<spacer /> | ||
<dropdown id="gfSelect" width="75" horizontalAlign="center" /> | ||
<spacer /> | ||
<dropdown id="opponentSelect" width="75" horizontalAlign="center" /> | ||
</hbox> | ||
<menu-separator /> | ||
<hbox> | ||
<label text="Stage" width="100" horizontalAlign="center" /> | ||
<label text="Style" width="100" horizontalAlign="center" /> | ||
<label text="Difficulty" width="100" horizontalAlign="center" /> | ||
</hbox> | ||
<hbox> | ||
<dropdown id="stageSelect" width="90" horizontalAlign="center" /> | ||
<dropdown id="styleSelect" width="90" horizontalAlign="center" /> | ||
<dropdown id="diffSelect" width="90" horizontalAlign="center" /> | ||
</hbox> | ||
</vbox> | ||
</frame> | ||
</vbox> | ||
<vbox text="Section"> | ||
|
||
</vbox> | ||
<vbox text="Song"> | ||
<frame> | ||
<grid> | ||
<label text="Song ID" verticalAlign="center" /> | ||
<textfield id="dataID" verticalAlign="center" /> | ||
<label text="Song Name" verticalAlign="center" /> | ||
<textfield id="dataName" verticalAlign="center" /> | ||
<label text="Audio Path" verticalAlign="center" /> | ||
<textfield id="dataAudio" verticalAlign="center" /> | ||
<label text="Start BPM" verticalAlign="center" /> | ||
<number-stepper id="dataBPM" pos="100" step="0.1" verticalAlign="center" /> | ||
<label text="Scroll Speed" verticalAlign="center" /> | ||
<number-stepper id="dataSpeed" pos="100" step="0.1" verticalAlign="center" /> | ||
</grid> | ||
</frame> | ||
</vbox> | ||
</tabview> | ||
</vbox> |
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,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<panel> | ||
<box width="100%" style="padding: 20px;"> | ||
<frame> | ||
<vbox> | ||
<checkbox id="rating" text="Show Rating" verticalAlign="center"/> | ||
<checkbox id="combo" text="Show Combo" verticalAlign="center"/> | ||
<checkbox id="timing" text="Show MS Timing" verticalAlign="center"/> | ||
</vbox> | ||
</frame> | ||
</box> | ||
</panel> |
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.