Skip to content

Commit

Permalink
Started menu resource support. Also added extra type checks to the re…
Browse files Browse the repository at this point in the history
…source classes, will now return null if not the correct type.
  • Loading branch information
lkinsella committed Jul 9, 2016
1 parent e79a8a8 commit f0aae9d
Show file tree
Hide file tree
Showing 9 changed files with 185 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Src/Workshell.PE.Resources/Graphics/BitmapResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ public static BitmapResource Load(Resource resource, uint language)
if (!resource.Languages.Contains(language))
return null;

byte[] data = resource.GetBytes(language);
if (resource.Type.Id != ResourceType.RT_BITMAP)
return null;

byte[] data = resource.GetBytes(language);
BitmapResource result = new PE.BitmapResource(resource, language, data);

return result;
Expand Down
3 changes: 3 additions & 0 deletions Src/Workshell.PE.Resources/Graphics/CursorGroupResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ public static CursorGroupResource Load(Resource resource, uint language)
if (!resource.Languages.Contains(language))
return null;

if (resource.Type.Id != ResourceType.RT_GROUP_CURSOR)
return null;

byte[] data = resource.GetBytes(language);
MemoryStream mem = resource.Type.Resources.Image.MemoryStreamProvider.GetStream(data);

Expand Down
3 changes: 3 additions & 0 deletions Src/Workshell.PE.Resources/Graphics/CursorResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ public static CursorResource Load(Resource resource, uint language)
if (!resource.Languages.Contains(language))
return null;

if (resource.Type.Id != ResourceType.RT_CURSOR)
return null;

byte[] data = resource.GetBytes(language);
MemoryStream mem = resource.Type.Resources.Image.MemoryStreamProvider.GetStream(data);

Expand Down
3 changes: 3 additions & 0 deletions Src/Workshell.PE.Resources/Graphics/IconGroupResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ public static IconGroupResource Load(Resource resource, uint language)
if (!resource.Languages.Contains(language))
return null;

if (resource.Type.Id != ResourceType.RT_GROUP_ICON)
return null;

byte[] data = resource.GetBytes(language);
MemoryStream mem = resource.Type.Resources.Image.MemoryStreamProvider.GetStream(data);

Expand Down
3 changes: 3 additions & 0 deletions Src/Workshell.PE.Resources/Graphics/IconResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ public static IconResource Load(Resource resource, uint language)
if (!resource.Languages.Contains(language))
return null;

if (resource.Type.Id != ResourceType.RT_ICON)
return null;

byte[] data = resource.GetBytes(language);
MemoryStream mem = resource.Type.Resources.Image.MemoryStreamProvider.GetStream(data);

Expand Down
163 changes: 163 additions & 0 deletions Src/Workshell.PE.Resources/Menus/MenuResource.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,163 @@
#region License
// Copyright(c) 2016, Workshell Ltd
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of Workshell Ltd nor the names of its contributors
// may be used to endorse or promote products
// derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED.IN NO EVENT SHALL WORKSHELL BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endregion

using System;
using System.Collections;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using Workshell.PE.Extensions;
using Workshell.PE.Native;

namespace Workshell.PE
{

public enum MenuSaveFormat
{
Raw,
Resource
}

public sealed class MenuResource
{

private Resource resource;
private uint language_id;

internal MenuResource(Resource sourceResource, uint languageId, byte[] data)
{
resource = sourceResource;
language_id = languageId;

MemoryStream mem = resource.Type.Resources.Image.MemoryStreamProvider.GetStream(data);

using (mem)
{

}
}

#region Static Methods

public static MenuResource Load(Resource resource)
{
return Load(resource, Resource.DEFAULT_LANGUAGE);
}

public static MenuResource Load(Resource resource, uint language)
{
if (!resource.Languages.Contains(language))
return null;

if (resource.Type.Id != ResourceType.RT_MENU)
return null;

byte[] data = resource.GetBytes(language);
MenuResource result = new MenuResource(resource, language, data);

return result;
}

#endregion

#region Methods

public void Save(string fileName)
{
Save(fileName, MenuSaveFormat.Raw);
}

public void Save(Stream stream)
{
Save(stream, MenuSaveFormat.Raw);
}

public void Save(string fileName, MenuSaveFormat format)
{
using (FileStream file = new FileStream(fileName, FileMode.Create, FileAccess.Write, FileShare.None))
{
Save(file, format);
file.Flush();
}
}

public void Save(Stream stream, MenuSaveFormat format)
{
switch (format)
{
case MenuSaveFormat.Raw:
SaveRaw(stream);
break;
case MenuSaveFormat.Resource:
SaveResource(stream);
break;
}
}

private void SaveRaw(Stream stream)
{
byte[] data = resource.GetBytes(language_id);

stream.Write(data, 0, data.Length);
}

private void SaveResource(Stream stream)
{
throw new NotImplementedException();
}

#endregion

#region Properties

public Resource Resource
{
get
{
return resource;
}
}

public uint Language
{
get
{
return language_id;
}
}

#endregion

}

}
3 changes: 3 additions & 0 deletions Src/Workshell.PE.Resources/StringTableResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ public static StringTableResource Load(Resource resource, uint language)
if (!resource.Languages.Contains(language))
return null;

if (resource.Type.Id != ResourceType.RT_STRING)
return null;

byte[] data = resource.GetBytes(language);
StringTableResource result = new StringTableResource(resource, language, data);

Expand Down
3 changes: 3 additions & 0 deletions Src/Workshell.PE.Resources/Version/VersionResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ public static VersionResource Load(Resource resource, uint language)
if (!resource.Languages.Contains(language))
return null;

if (resource.Type.Id != ResourceType.RT_VERSION)
return null;

byte[] data = resource.GetBytes(language);
VersionResource result = new VersionResource(resource, language, data);

Expand Down
1 change: 1 addition & 0 deletions Src/Workshell.PE.Resources/Workshell.PE.Resources.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Menus\MenuResource.cs" />
<Compile Include="Native\VS_FIXEDFILEINFO.cs" />
<Compile Include="StringTableResource.cs" />
<Compile Include="Version\VarFileInfo.cs" />
Expand Down

0 comments on commit f0aae9d

Please sign in to comment.