DS-Pokemon-Rom-Editor/Ekona/Images/Formats/Bitmap.cs
AdAstra-LD 73ca3d06a9 Added Ekona and NImages file support
More progress with the Trainer Editor
2021-07-21 23:04:53 +02:00

149 lines
5.1 KiB
C#

// ----------------------------------------------------------------------
// <copyright file="Bitmap.cs" company="none">
// Copyright (C) 2012
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// </copyright>
// <author>pleoNeX</author>
// <email>benito356@gmail.com</email>
// <date>28/04/2012 14:28:51</date>
// -----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Drawing;
namespace Ekona.Images.Formats
{
public class BMP : ImageBase
{
PaletteBase palette;
public BMP(string file) : base(file, -1) { }
public override void Read(string fileIn)
{
BinaryReader br = new BinaryReader(File.OpenRead(fileIn));
if (new String(br.ReadChars(2)) != "BM")
throw new NotSupportedException();
br.BaseStream.Position = 0x0A;
uint offsetImagen = br.ReadUInt32();
br.BaseStream.Position += 0x04;
uint width = br.ReadUInt32();
uint height = br.ReadUInt32();
br.BaseStream.Position += 0x02;
uint bpp = br.ReadUInt16();
ColorFormat format;
if (bpp == 0x04)
format = Images.ColorFormat.colors16;
else if (bpp == 0x08)
format = Images.ColorFormat.colors256;
else
throw new NotSupportedException();
uint compression = br.ReadUInt32();
uint data_size = br.ReadUInt32();
br.BaseStream.Position += 0x8;
uint num_colors = br.ReadUInt32();
if (num_colors == 0x00)
num_colors = (uint)(bpp == 0x04 ? 0x10 : 0x0100);
br.BaseStream.Position += 0x04;
Color[][] colors = new Color[1][];
colors[0] = new Color[num_colors];
for (int i = 0; i < num_colors; i++)
{
Byte[] color = br.ReadBytes(4);
colors[0][i] = Color.FromArgb(color[2], color[1], color[0]);
}
// Get the colors with BGR555 encoding (not all colours from bitmap are allowed)
byte[] temp = Actions.ColorToBGR555(colors[0]);
colors[0] = Actions.BGR555ToColor(temp);
palette = new RawPalette(colors, false, format);
byte[] tiles = new byte[width * height];
br.BaseStream.Position = offsetImagen;
switch (bpp)
{
case 4:
int divisor = (int)width / 2;
if (width % 4 != 0)
{
int res;
Math.DivRem((int)width / 2, 4, out res);
divisor = (int)width / 2 + (4 - res);
}
tiles = new byte[tiles.Length * 2];
for (int h = (int)height - 1; h >= 0; h--)
{
for (int w = 0; w < width; w += 2)
{
byte b = br.ReadByte();
tiles[w + h * width] = (byte)(b >> 4);
if (w + 1 != width)
tiles[w + 1 + h * width] = (byte)(b & 0xF);
}
br.ReadBytes((int)(divisor - ((float)width / 2)));
}
tiles = Helper.BitsConverter.Bits4ToByte(tiles);
break;
case 8:
divisor = (int)width;
if (width % 4 != 0)
{
int res;
Math.DivRem((int)width, 4, out res);
divisor = (int)width + (4 - res);
}
for (int h = (int)height - 1; h >= 0; h--)
{
for (int w = 0; w < width; w++)
{
tiles[w + h * width] = br.ReadByte();
}
br.ReadBytes(divisor - (int)width);
}
break;
}
br.Close();
Set_Tiles(tiles, (int)width, (int)height, format, Images.TileForm.Lineal, false);
}
public override void Write(string fileOut, PaletteBase palette)
{
throw new NotImplementedException();
}
public PaletteBase Palette
{
get { return palette; }
}
}
}