Skip to content

Commit

Permalink
Adding Title Screen setup for GHZ.
Browse files Browse the repository at this point in the history
  • Loading branch information
MainMemory committed May 23, 2015
1 parent 9896d18 commit e386b7c
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 16 deletions.
2 changes: 1 addition & 1 deletion GHZ/GHZ.cs
Expand Up @@ -30,7 +30,7 @@ public override void Init(int width, int height)
levelimg = LevelData.DrawBackground(null, true, true, false, false);
tmpimg = new BitmapBits(Math.Min(levelimg.Width, width), height);
tmpimg.Bits.FastFill(0x31);
Pal_GHZCyc = SonLVLColor.Load("Cycle - GHZ.bin", EngineVersion.S1).Select(a => a.RGBColor).ToArray();
Pal_GHZCyc = SonLVLColor.Load("palcycle.bin", EngineVersion.S1).Select(a => a.RGBColor).ToArray();
Horiz_Scroll_Buf = new int[levelimg.Height];
Camera_X_pos = 0;
Array.Clear(CloudScroll, 0, CloudScroll.Length);
Expand Down
17 changes: 13 additions & 4 deletions GHZ/GHZ.csproj
Expand Up @@ -57,24 +57,33 @@
<None Include="chunks.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Cycle - GHZ.bin">
<None Include="GHZ\palcycle.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="palette.bin">
<None Include="GHZ\palette.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="layout.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="setup.ini">
<None Include="GHZ\setup.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Sonic.bin">
<None Include="GHZ\Sonic.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="art.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Title\palcycle.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Title\setup.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="Title\palette.bin">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions GHZ/GHZ/setup.ini
@@ -0,0 +1,11 @@
file=../GHZ.dll
type=GHZ.GHZ
name=Green Hill Zone
music=GreenHill
version=S1
[Level]
tiles=../art.bin
blocks=../blocks.bin
chunks=../chunks.bin
bglayout=../layout.bin
palette=Sonic.bin:0:0:16|palette.bin:0:16:48
1 change: 1 addition & 0 deletions GHZ/Title/palcycle.bin
@@ -0,0 +1 @@
B���� B���� B���� B
Binary file added GHZ/Title/palette.bin
Binary file not shown.
11 changes: 11 additions & 0 deletions GHZ/Title/setup.ini
@@ -0,0 +1,11 @@
file=../GHZ.dll
type=GHZ.GHZ
name=Title Screen (Sonic 1)
music=GreenHill
version=S1
[Level]
tiles=../art.bin
blocks=../blocks.bin
chunks=../chunks.bin
bglayout=../layout.bin
palette=palette.bin:0:0:64
11 changes: 0 additions & 11 deletions GHZ/setup.ini

This file was deleted.

0 comments on commit e386b7c

Please sign in to comment.