79 lines
2.4 KiB
C#
79 lines
2.4 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Drawing.Imaging;
|
|
using System.Runtime.InteropServices;
|
|
using System.IO;
|
|
using System.Runtime.Serialization.Formatters.Binary;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpriteMapEditor
|
|
{
|
|
[Serializable]
|
|
public class DirectBitmap : IDisposable
|
|
{
|
|
public Bitmap Bitmap { get; private set; }
|
|
public Int32[] Bits { get; private set; }
|
|
public bool Disposed { get; private set; }
|
|
public int Height { get; private set; }
|
|
public int Width { get; private set; }
|
|
|
|
protected GCHandle BitsHandle { get; private set; }
|
|
|
|
public DirectBitmap(int width, int height)
|
|
{
|
|
Width = width;
|
|
Height = height;
|
|
Bits = new Int32[width * height];
|
|
BitsHandle = GCHandle.Alloc(Bits, GCHandleType.Pinned);
|
|
Bitmap = new Bitmap(width, height, width * 4, PixelFormat.Format32bppPArgb, BitsHandle.AddrOfPinnedObject());
|
|
}
|
|
|
|
public DirectBitmap(DirectBitmap original)
|
|
{
|
|
Width = original.Width;
|
|
Height = original.Height;
|
|
Bits = (int[])original.Bits.Clone();
|
|
BitsHandle = GCHandle.Alloc(Bits, GCHandleType.Pinned);
|
|
Bitmap = new Bitmap(Width, Height, Width * 4, PixelFormat.Format32bppPArgb, BitsHandle.AddrOfPinnedObject());
|
|
}
|
|
|
|
public void CopyBitmap(DirectBitmap source)
|
|
{
|
|
if(Width == source.Width && Height == source.Height)
|
|
{
|
|
Bits = (int[])source.Bits.Clone();
|
|
BitsHandle = GCHandle.Alloc(Bits, GCHandleType.Pinned);
|
|
Bitmap = new Bitmap(Width, Height, Width * 4, PixelFormat.Format32bppPArgb, BitsHandle.AddrOfPinnedObject());
|
|
}
|
|
}
|
|
|
|
public void SetPixel(int x, int y, Color colour)
|
|
{
|
|
int index = x + (y * Width);
|
|
int col = colour.ToArgb();
|
|
|
|
Bits[index] = col;
|
|
}
|
|
|
|
public Color GetPixel(int x, int y)
|
|
{
|
|
int index = x + (y * Width);
|
|
int col = Bits[index];
|
|
Color result = Color.FromArgb(col);
|
|
|
|
return result;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
if (Disposed) return;
|
|
Disposed = true;
|
|
Bitmap.Dispose();
|
|
BitsHandle.Free();
|
|
}
|
|
}
|
|
}
|