Saving to DB, need to render

This commit is contained in:
Lani Aung
2021-11-02 18:33:07 -06:00
parent d52cc4b206
commit 16dfc040a4
18 changed files with 318 additions and 212 deletions
+1 -17
View File
@@ -1,7 +1,5 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
using System.IO;
using System.IO.IsolatedStorage;
using System.Linq; using System.Linq;
using System.Threading.Tasks; using System.Threading.Tasks;
using fxl.codes.kisekae.Models; using fxl.codes.kisekae.Models;
@@ -16,16 +14,11 @@ namespace fxl.codes.kisekae.Controllers
{ {
private readonly DatabaseService _databaseService; private readonly DatabaseService _databaseService;
private readonly ILogger<HomeController> _logger; private readonly ILogger<HomeController> _logger;
private readonly ConfigurationReaderService _readerService;
private readonly IsolatedStorageFile _storage;
public HomeController(ILogger<HomeController> logger, ConfigurationReaderService readerService, DatabaseService databaseService) public HomeController(ILogger<HomeController> logger, DatabaseService databaseService)
{ {
_logger = logger; _logger = logger;
_readerService = readerService;
_databaseService = databaseService; _databaseService = databaseService;
_storage = IsolatedStorageFile.GetUserStoreForApplication();
} }
[HttpGet] [HttpGet]
@@ -47,15 +40,6 @@ namespace fxl.codes.kisekae.Controllers
return Redirect("/"); return Redirect("/");
} }
[HttpPost]
public IActionResult Select(string directory, string file)
{
var stream = _storage.OpenFile(Path.Combine(directory, file), FileMode.Open);
var model = _readerService.ParseStream(stream, directory);
model.Name = file;
return View("Play", model);
}
public IActionResult Privacy() public IActionResult Privacy()
{ {
return View(); return View();
+1 -4
View File
@@ -1,6 +1,3 @@
using System.Linq;
using System.Threading.Tasks;
using fxl.codes.kisekae.Models;
using fxl.codes.kisekae.Services; using fxl.codes.kisekae.Services;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
@@ -15,7 +12,7 @@ namespace fxl.codes.kisekae.Controllers
_databaseService = databaseService; _databaseService = databaseService;
} }
public async Task<IActionResult> Index(int id, int configId) public IActionResult Index(int id, int configId)
{ {
return View(); return View();
} }
+12 -2
View File
@@ -1,10 +1,20 @@
using Dapper.Contrib.Extensions; using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities namespace fxl.codes.kisekae.Entities
{ {
[Table("cel_config")] [Table("cel_config")]
public class CelConfigDto public class CelConfigDto
{ {
public int Id { get; set; }
[Column("cel_id")] public int CelId { get; set; }
[Column("config_id")] public int ConfigId { get; set; }
public int Group { get; set; }
public int Fix { get; set; }
public Set Sets { get; set; } = Set.Unset;
public int Transparency { get; set; }
public string Comment { get; set; }
[Column("palette_id")] public int PaletteId { get; set; }
public int X { get; set; }
public int Y { get; set; }
} }
} }
+2 -2
View File
@@ -1,4 +1,4 @@
using Dapper.Contrib.Extensions; using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities namespace fxl.codes.kisekae.Entities
{ {
@@ -6,7 +6,7 @@ namespace fxl.codes.kisekae.Entities
public class CelDto : IKisekaeFile, IKisekaeParseable public class CelDto : IKisekaeFile, IKisekaeParseable
{ {
public int Id { get; set; } public int Id { get; set; }
public int KisekaeId { get; set; } [Column("kisekae_id")] public int KisekaeId { get; set; }
public string Filename { get; set; } public string Filename { get; set; }
public byte[] Data { get; set; } public byte[] Data { get; set; }
} }
+7 -6
View File
@@ -1,18 +1,19 @@
using System.Collections.Generic; using System.Collections.Generic;
using Dapper.Contrib.Extensions; using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities namespace fxl.codes.kisekae.Entities
{ {
[Table("configuration")] [Table("configuration")]
public class ConfigurationDto : IKisekaeFile public class ConfigurationDto : IKisekaeFile
{ {
public int Id { get; set; }
public int KisekaeId { get; set; }
public string Filename { get; set; }
public string Data { get; set; } public string Data { get; set; }
public int? Height { get; set; } public int? Height { get; set; }
public int? Width { get; set; } public int? Width { get; set; }
public int? BorderIndex { get; set; } [Column("border_index")] public int? BorderIndex { get; set; }
public IEnumerable<CelConfigDto> Cels { get; set; } public List<CelConfigDto> Cels { get; set; } = new();
public List<PaletteDto> Palettes { get; set; } = new();
public int Id { get; set; }
[Column("kisekae_id")] public int KisekaeId { get; set; }
public string Filename { get; set; }
} }
} }
+3 -3
View File
@@ -1,5 +1,5 @@
using System.Collections.Generic; using System.Collections.Generic;
using Dapper.Contrib.Extensions; using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities namespace fxl.codes.kisekae.Entities
{ {
@@ -7,8 +7,8 @@ namespace fxl.codes.kisekae.Entities
public class KisekaeDto public class KisekaeDto
{ {
public int Id { get; set; } public int Id { get; set; }
public string Name { get; set; } public string Name { get; init; }
public string Filename { get; set; } public string Filename { get; init; }
public string Checksum { get; set; } public string Checksum { get; set; }
public IEnumerable<ConfigurationDto> Configurations { get; set; } public IEnumerable<ConfigurationDto> Configurations { get; set; }
} }
+13
View File
@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities
{
[Table("palette_color")]
public class PaletteColorDto
{
public int Id { get; set; }
[Column("palette_id")] public int PaletteId { get; set; }
public int Group { get; set; }
public string Hex { get; set; }
}
}
+4 -4
View File
@@ -1,14 +1,14 @@
using Dapper.Contrib.Extensions; using System.ComponentModel.DataAnnotations.Schema;
namespace fxl.codes.kisekae.Entities namespace fxl.codes.kisekae.Entities
{ {
[Table("palette")] [Table("palette")]
public class PaletteDto : IKisekaeFile, IKisekaeParseable public class PaletteDto : IKisekaeFile, IKisekaeParseable
{ {
public int Id { get; set; }
public int KisekaeId { get; set; }
public string Filename { get; set; }
public string Comment { get; set; } public string Comment { get; set; }
public int Id { get; set; }
[Column("kisekae_id")] public int KisekaeId { get; set; }
public string Filename { get; set; }
public byte[] Data { get; set; } public byte[] Data { get; set; }
} }
} }
+1
View File
@@ -5,6 +5,7 @@ namespace fxl.codes.kisekae.Entities
[Flags] [Flags]
public enum Set public enum Set
{ {
Unset = -1,
Zero = 2 ^ 0, Zero = 2 ^ 0,
One = 2 ^ 1, One = 2 ^ 1,
Two = 2 ^ 2, Two = 2 ^ 2,
+96
View File
@@ -0,0 +1,96 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Dapper;
namespace fxl.codes.kisekae.Extensions
{
public static class DapperExtensions
{
public static async Task<int> InsertAsync<T>(this IDbConnection connection, T item)
{
var info = GetTableInfo(typeof(T));
var statement = $"insert into {info.TableName} ({string.Join(",", info.Columns)}) values ({string.Join(",", info.Parameters)}) returning id";
return await connection.QuerySingleAsync<int>(statement, item);
}
public static async Task<int> InsertAsync<T>(this IDbConnection connection, IEnumerable<T> items)
{
var info = GetTableInfo(typeof(T));
var statement = $"insert into {info.TableName} ({string.Join(",", info.Columns)}) values ({string.Join(",", info.Parameters)}) returning id";
var count = 0;
foreach (var item in items)
{
await connection.ExecuteAsync(statement, item);
count++;
}
return count;
}
public static async Task<int> UpdateAsync<T>(this IDbConnection connection, T item)
{
var list = new List<T> { item };
return await UpdateAsync<T>(connection, list);
}
public static async Task<int> UpdateAsync<T>(this IDbConnection connection, IEnumerable<T> items)
{
var info = GetTableInfo(typeof(T));
var statement = new StringBuilder().AppendLine($"update {info.TableName} set");
var sets = new List<string>();
for (var index = 0; index < info.Columns.Length; index++)
if (!info.Columns[index].Contains("_id"))
sets.Add($"{info.Columns[index]} = {info.Parameters[index]}");
statement.AppendLine(string.Join(",", sets));
statement.AppendLine("where id = @Id");
var count = 0;
foreach (var item in items)
{
await connection.ExecuteAsync(statement.ToString(), item);
count++;
}
return count;
}
private static TableInfo GetTableInfo(Type type)
{
var tableAttribute = type.GetCustomAttribute<TableAttribute>();
var tableName = tableAttribute?.Name ?? type.Name.ToLowerInvariant();
var columns = new List<string>();
var parameters = new List<string>();
foreach (var property in type.GetProperties(BindingFlags.Default | BindingFlags.Public | BindingFlags.Instance))
{
if (string.Equals(property.Name, "id", StringComparison.InvariantCultureIgnoreCase) || property.PropertyType.IsGenericType) continue;
var columnAttribute = property.GetCustomAttribute<ColumnAttribute>();
columns.Add($"\"{columnAttribute?.Name ?? property.Name.ToLowerInvariant()}\"");
parameters.Add($"@{property.Name}");
}
return new TableInfo
{
TableName = tableName,
Columns = columns.ToArray(),
Parameters = parameters.ToArray()
};
}
private class TableInfo
{
public string TableName { get; set; }
public string[] Columns { get; set; }
public string[] Parameters { get; set; }
}
}
}
+2 -52
View File
@@ -1,70 +1,20 @@
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using System.Text.RegularExpressions;
using fxl.codes.kisekae.Services;
using Microsoft.Extensions.Logging;
namespace fxl.codes.kisekae.Models namespace fxl.codes.kisekae.Models
{ {
public class CelModel public class CelModel
{ {
private const string Regex = @"#(?<Id>\d*)\.?(?<Fix>\d*)\s*(?<FileName>[\w\d\-]*\.[cCeElL]*)\s*\*?(?<PaletteId>\d*)?\s*\:?(?<Sets>[\d\s]*)?;?(?<Comment>[\w\d\-\s\%]*)";
public Dictionary<int, string> ImageByPalette = new(); public Dictionary<int, string> ImageByPalette = new();
internal CelModel(ILogger<ConfigurationReaderService> logger, string line)
{
logger.LogTrace($"Parsing cel line {line}");
if (line.Contains("%t"))
{
var opacity = line[line.IndexOf("%t")..].Trim();
opacity = opacity.Split(';', StringSplitOptions.TrimEntries | StringSplitOptions.RemoveEmptyEntries)[0];
opacity = opacity.Split(' ', StringSplitOptions.TrimEntries | StringSplitOptions.RemoveEmptyEntries)[0];
opacity = opacity.Replace("%t", "");
Opacity = 1.0 - double.Parse(opacity) / 255;
}
var matcher = new Regex(Regex);
var match = matcher.Match(line);
foreach (var groupName in matcher.GetGroupNames())
{
var property = typeof(CelModel).GetProperty(groupName);
if (property == null) continue;
match.Groups.TryGetValue(groupName, out var group);
if (string.IsNullOrEmpty(group?.Value))
{
if (string.Equals(groupName, "Sets"))
for (var index = 0; index < Sets.Length; index++)
Sets[index] = true;
logger.LogWarning($"Unable to find regex group {groupName} in {line}");
continue;
}
var value = group.Value.Trim();
if (property.PropertyType == typeof(string)) property.SetValue(this, value);
if (property.PropertyType == typeof(int)) property.SetValue(this, int.Parse(value));
if (property.PropertyType != Sets.GetType()) continue;
foreach (var id in value.Split(' ', StringSplitOptions.RemoveEmptyEntries))
{
var success = int.TryParse(id, out var result);
if (success) Sets[result] = true;
else logger.LogWarning($"Unable to parse {id} as cel sets");
}
}
}
public int Id { get; init; } public int Id { get; init; }
public int Fix { get; init; } public int Fix { get; init; }
public string FileName { get; init; } public string FileName { get; init; }
public int PaletteId { get; init; } public int PaletteId { get; init; }
public bool[] Sets { get; } = new bool[10]; public bool[] Sets { get; } = new bool[10];
public string Comment { get; init; } public string Comment { get; init; }
public double Opacity { get; } = 1.0; [JsonIgnore] public int Transparency { get; set; }
public double Opacity { get; internal set; } = 1.0;
public Coordinate[] InitialPositions { get; } = new Coordinate[10]; public Coordinate[] InitialPositions { get; } = new Coordinate[10];
[JsonIgnore] public string DefaultImage => ImageByPalette.ContainsKey(PaletteId) ? ImageByPalette[PaletteId] : null; [JsonIgnore] public string DefaultImage => ImageByPalette.ContainsKey(PaletteId) ? ImageByPalette[PaletteId] : null;
public Coordinate Offset { get; set; } public Coordinate Offset { get; set; }
+3 -15
View File
@@ -1,24 +1,12 @@
using System; using System;
using fxl.codes.kisekae.Services;
using Microsoft.Extensions.Logging;
using SixLabors.ImageSharp; using SixLabors.ImageSharp;
namespace fxl.codes.kisekae.Models namespace fxl.codes.kisekae.Models
{ {
public class PaletteModel public class PaletteModel
{ {
internal PaletteModel(ILogger<ConfigurationReaderService> logger, string line) public string FileName { get; internal set; }
{ public string Comment { get; internal set; }
logger.LogTrace($"Parsing palette line {line}"); public Color[] Colors { get; internal set; } = Array.Empty<Color>();
var parts = line.Split(';');
FileName = parts[0].Replace("%", "").Trim();
if (parts.Length > 1) Comment = parts[1].Trim();
}
public string FileName { get; }
public string Comment { get; }
public Color[] Colors { get; set; } = Array.Empty<Color>();
} }
} }
+2 -15
View File
@@ -1,5 +1,4 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using SixLabors.ImageSharp; using SixLabors.ImageSharp;
@@ -7,24 +6,12 @@ namespace fxl.codes.kisekae.Models
{ {
public class PlaysetModel public class PlaysetModel
{ {
[JsonIgnore] public Color BorderColor = Color.Black;
public string Name { get; set; } public string Name { get; set; }
public int Height { get; set; } public int Height { get; set; }
public int Width { get; set; } public int Width { get; set; }
[JsonIgnore] public int BorderColorIndex { get; set; }
[JsonIgnore] public Color BorderColor { get; set; } = Color.Black;
[JsonIgnore] public List<PaletteModel> Palettes { get; } = new(); [JsonIgnore] public List<PaletteModel> Palettes { get; } = new();
public List<CelModel> Cels { get; } = new(); public List<CelModel> Cels { get; } = new();
public bool[] EnabledSets { get; } = new bool[10];
public bool[] EnabledSets
{
get
{
var enabled = new bool[10];
for (var index = 0; index < enabled.Length; index++) enabled[index] = Cels.Any(x => x.Sets[index]);
return enabled;
}
}
} }
} }
+87 -48
View File
@@ -1,8 +1,9 @@
using System; using System;
using System.IO; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using fxl.codes.kisekae.Entities;
using fxl.codes.kisekae.Models; using fxl.codes.kisekae.Models;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
@@ -10,91 +11,129 @@ namespace fxl.codes.kisekae.Services
{ {
public class ConfigurationReaderService public class ConfigurationReaderService
{ {
public const string ResolutionRegexPattern = @"\((?<Width>[0-9]*).(?<Height>[0-9]*)\)"; private const string CelRegex = @"#(?<Group>\d*)\.?(?<Fix>\d*)\s*(?<FileName>[\w\d\-]*\.[cCeElL]*)\s*\*?"
private readonly FileParserService _fileParser; + @"(?<PaletteId>\d*)?\s*\:?(?<Sets>[\d\s]*)?;?(?<Comment>[\w\d\-\s\%]*)";
private const string ResolutionRegexPattern = @"\((?<Width>[0-9]*).(?<Height>[0-9]*)\)";
private readonly ILogger<ConfigurationReaderService> _logger; private readonly ILogger<ConfigurationReaderService> _logger;
public ConfigurationReaderService(ILogger<ConfigurationReaderService> logger, FileParserService fileParser) public ConfigurationReaderService(ILogger<ConfigurationReaderService> logger)
{ {
_logger = logger; _logger = logger;
_fileParser = fileParser;
} }
public PlaysetModel ParseStream(Stream fileStream, string directory = null) public void ReadConfigurationToDto(ConfigurationDto dto, IDictionary<string, CelDto> cels, IDictionary<string, PaletteDto> palettes)
{ {
var model = new PlaysetModel();
var initialPositions = new StringBuilder(); var initialPositions = new StringBuilder();
var borderColorIndex = 0;
using var reader = new StreamReader(fileStream); foreach (var line in dto.Data.Split(Environment.NewLine, StringSplitOptions.RemoveEmptyEntries))
var data = reader.ReadToEnd();
SetPlaysetProperties(data, model, initialPositions);
SetInitialPositions(model, initialPositions.ToString());
if (string.IsNullOrEmpty(directory)) return model;
foreach (var palette in model.Palettes) _fileParser.ParsePalette(directory, palette);
var celIndex = 0;
foreach (var cel in model.Cels.Where(x => !string.IsNullOrEmpty(x.FileName)))
{
_fileParser.ParseCel(directory, cel, model.Palettes);
cel.ZIndex = (model.Cels.Count - celIndex) * 10;
celIndex++;
}
if (model.Palettes.Any() && model.Palettes[0].Colors.Any()) model.BorderColor = model.Palettes[0].Colors[borderColorIndex];
return model;
}
public void SetPlaysetProperties(string data, PlaysetModel model, StringBuilder initialPositions)
{
if (string.IsNullOrEmpty(data)) return;
foreach (var line in data.Split(Environment.NewLine, StringSplitOptions.RemoveEmptyEntries))
{
switch (line.ToCharArray()[0]) switch (line.ToCharArray()[0])
{ {
case '(': case '(':
var resolutionRegex = new Regex(ResolutionRegexPattern); var resolutionRegex = new Regex(ResolutionRegexPattern);
var resolutionMatch = resolutionRegex.Match(line); var resolutionMatch = resolutionRegex.Match(line);
model.Width = int.Parse(resolutionMatch.Groups["Width"].Value); dto.Width = int.Parse(resolutionMatch.Groups["Width"].Value);
model.Height = int.Parse(resolutionMatch.Groups["Height"].Value); dto.Height = int.Parse(resolutionMatch.Groups["Height"].Value);
break; break;
case '[': case '[':
var borderValue = line[1..]; var borderValue = line[1..];
if (borderValue.Contains(';')) borderValue = borderValue.Split(';')[0].Trim(); if (borderValue.Contains(';')) borderValue = borderValue.Split(';')[0].Trim();
model.BorderColorIndex = int.Parse(borderValue); dto.BorderIndex = int.Parse(borderValue);
break; break;
case '%': case '%':
model.Palettes.Add(new PaletteModel(_logger, line)); dto.Palettes.Add(SetPalette(line, palettes));
break; break;
case '#': case '#':
model.Cels.Add(new CelModel(_logger, line)); dto.Cels.Add(SetCel(line, dto, cels));
break; break;
case '$': case '$':
case ' ': case ' ':
initialPositions.Append(line.Replace("\\r\\n", "").Replace("\\n", "")); initialPositions.Append(line.Replace("\\r\\n", "").Replace("\\n", ""));
break; break;
} }
}
SetInitialPositions(dto, initialPositions.ToString());
} }
private static void SetInitialPositions(PlaysetModel model, string positions) private CelConfigDto SetCel(string line, IKisekaeFile configuration, IDictionary<string, CelDto> cels)
{
var cel = new CelConfigDto
{
ConfigId = configuration.Id
};
if (line.Contains("%t"))
{
var opacity = line[line.IndexOf("%t", StringComparison.InvariantCultureIgnoreCase)..].Trim();
opacity = opacity.Split(';', StringSplitOptions.TrimEntries | StringSplitOptions.RemoveEmptyEntries)[0];
opacity = opacity.Split(' ', StringSplitOptions.TrimEntries | StringSplitOptions.RemoveEmptyEntries)[0];
opacity = opacity.Replace("%t", "");
cel.Transparency = int.Parse(opacity);
}
var matcher = new Regex(CelRegex);
var match = matcher.Match(line);
foreach (var groupName in matcher.GetGroupNames())
{
match.Groups.TryGetValue(groupName, out var group);
if (string.IsNullOrEmpty(group?.Value)) continue;
if (string.Equals(groupName, "FileName"))
{
cel.CelId = cels[group.Value.ToLowerInvariant()].Id;
continue;
}
var property = typeof(CelConfigDto).GetProperty(groupName);
if (property == null) continue;
var value = group.Value.Trim();
if (property.PropertyType == typeof(string)) property.SetValue(cel, value);
if (property.PropertyType == typeof(int)) property.SetValue(cel, int.Parse(value));
if (property.PropertyType != cel.Sets.GetType()) continue;
foreach (var id in value.Split(' ', StringSplitOptions.RemoveEmptyEntries))
{
var success = int.TryParse(id, out var result);
if (!success) continue;
if (cel.Sets == Set.Unset)
cel.Sets = (Set)(2 ^ result);
else
cel.Sets |= (Set)(2 ^ result);
}
}
return cel;
}
private static PaletteDto SetPalette(string line, IDictionary<string, PaletteDto> palettes)
{
var parts = line.Split(';');
var palette = palettes[parts[0].Trim().ToLowerInvariant().Replace("%", "")];
if (parts.Length > 1) palette.Comment = parts[1].Trim();
return palette;
}
private static void SetInitialPositions(ConfigurationDto dto, string positions)
{ {
var sets = positions.Split('$', StringSplitOptions.RemoveEmptyEntries); var sets = positions.Split('$', StringSplitOptions.RemoveEmptyEntries);
for (var index = 0; index < sets.Length; index++) foreach (var set in sets)
{ {
var value = sets[index].Split(' ', StringSplitOptions.RemoveEmptyEntries); var value = set.Split(' ', StringSplitOptions.RemoveEmptyEntries);
for (var innerIndex = 1; innerIndex < value.Length; innerIndex++) for (var innerIndex = 1; innerIndex < value.Length; innerIndex++)
{ {
if (value[innerIndex] == "*") continue; if (value[innerIndex] == "*") continue;
var point = value[innerIndex].Split(',', StringSplitOptions.RemoveEmptyEntries); var point = value[innerIndex].Split(',', StringSplitOptions.RemoveEmptyEntries);
foreach (var cel in model.Cels.Where(x => x.Id == innerIndex - 1)) foreach (var cel in dto.Cels.Where(x => x.Id == innerIndex - 1))
cel.InitialPositions[index] = new Coordinate(int.Parse(point[0]), int.Parse(point[1])); {
cel.X = int.Parse(point[0]);
cel.Y = int.Parse(point[1]);
}
} }
} }
} }
+69 -21
View File
@@ -9,8 +9,8 @@ using System.Text;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading.Tasks; using System.Threading.Tasks;
using Dapper; using Dapper;
using Dapper.Contrib.Extensions;
using fxl.codes.kisekae.Entities; using fxl.codes.kisekae.Entities;
using fxl.codes.kisekae.Extensions;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
@@ -61,7 +61,7 @@ namespace fxl.codes.kisekae.Services
await connection.OpenAsync(); await connection.OpenAsync();
var queryParams = new { Id = id, ConfigId = configId }; var queryParams = new { Id = id, ConfigId = configId };
var cels = connection.Query<CelConfigDto>("select * from cel_config where configId = @ConfigId", queryParams); var cels = connection.Query<CelConfigDto>("select * from cel_config where config_id = @ConfigId", queryParams);
if (cels == null) if (cels == null)
{ {
var config = connection.QuerySingle<ConfigurationDto>( var config = connection.QuerySingle<ConfigurationDto>(
@@ -99,28 +99,58 @@ namespace fxl.codes.kisekae.Services
public async void StoreToDatabase(IFormFile file) public async void StoreToDatabase(IFormFile file)
{ {
await using var connection = new NpgsqlConnection(_connectionString);
await connection.OpenAsync();
var memoryStream = await GetAsMemoryStream(file); var memoryStream = await GetAsMemoryStream(file);
var checksum = Convert.ToBase64String(await new SHA256Managed().ComputeHashAsync(memoryStream)); var checksum = Convert.ToBase64String(await new SHA256Managed().ComputeHashAsync(memoryStream));
memoryStream.Position = 0; // Reset for re-read memoryStream.Position = 0; // Reset for re-read
var existing = GetExisting(connection, file.FileName, checksum); await using var connection = new NpgsqlConnection(_connectionString);
if (existing != null) return; await connection.OpenAsync();
var transaction = await connection.BeginTransactionAsync();
_fileParserService.UnzipLzh(file, memoryStream); try
var directory = Path.GetFileNameWithoutExtension(file.FileName);
var kisekae = new KisekaeDto
{ {
Filename = file.FileName, var existing = GetExisting(connection, file.FileName, checksum);
Name = directory, if (existing != null) return;
Checksum = checksum
};
kisekae.Id = await connection.InsertAsync(kisekae); _fileParserService.UnzipLzh(file, memoryStream);
var directory = Path.GetFileNameWithoutExtension(file.FileName);
var kisekae = new KisekaeDto
{
Filename = file.FileName,
Name = directory,
Checksum = checksum
};
var filenames = _storage.GetFileNames($"{Path.Combine(directory, "*")}"); kisekae.Id = await connection.InsertAsync(kisekae);
SetInnerFiles(directory, filenames, kisekae.Id);
var filenames = _storage.GetFileNames($"{Path.Combine(directory, "*")}");
await SetInnerFiles(connection, directory, filenames, kisekae.Id);
using var saved = await connection.QueryMultipleAsync(
"select * from configuration where kisekae_id = @id; select * from cel where kisekae_id = @id; select * from palette where kisekae_id = @id",
new { id = kisekae.Id });
var configs = saved.Read<ConfigurationDto>().ToList();
var cels = saved.Read<CelDto>().ToDictionary(x => x.Filename.ToLowerInvariant());
var palettes = saved.Read<PaletteDto>().ToDictionary(x => x.Filename.ToLowerInvariant());
foreach (var config in configs)
{
_configurationReaderService.ReadConfigurationToDto(config, cels, palettes);
await connection.InsertAsync<CelConfigDto>(config.Cels);
await connection.UpdateAsync<PaletteDto>(config.Palettes);
await connection.UpdateAsync(config);
}
var paletteColors = SetPaletteColors(palettes.Values);
await connection.InsertAsync<PaletteColorDto>(paletteColors);
await transaction.CommitAsync();
}
catch (Exception e)
{
await transaction.RollbackAsync();
_logger.LogError(e, $"Error saving file {file.FileName}");
}
await connection.CloseAsync(); await connection.CloseAsync();
} }
@@ -141,7 +171,7 @@ namespace fxl.codes.kisekae.Services
return existing; return existing;
} }
private async void SetInnerFiles(string directory, IEnumerable<string> filenames, int id) private async Task SetInnerFiles(IDbConnection connection, string directory, IEnumerable<string> filenames, int id)
{ {
var files = new List<IKisekaeFile>(); var files = new List<IKisekaeFile>();
foreach (var filename in filenames) foreach (var filename in filenames)
@@ -181,14 +211,32 @@ namespace fxl.codes.kisekae.Services
} }
} }
await using var connection = new NpgsqlConnection(_connectionString);
await connection.OpenAsync();
await connection.InsertAsync(files.OfType<CelDto>()); await connection.InsertAsync(files.OfType<CelDto>());
await connection.InsertAsync(files.OfType<ConfigurationDto>()); await connection.InsertAsync(files.OfType<ConfigurationDto>());
await connection.InsertAsync(files.OfType<PaletteDto>()); await connection.InsertAsync(files.OfType<PaletteDto>());
}
await connection.CloseAsync(); private List<PaletteColorDto> SetPaletteColors(IEnumerable<PaletteDto> palettes)
{
var paletteColors = new List<PaletteColorDto>();
foreach (var palette in palettes)
{
var colors = _fileParserService.ParsePalette(palette, out var groups, out var colorsPerGroup);
for (var groupIndex = 0; groupIndex < groups; groupIndex++)
for (var colorIndex = 0; colorIndex < colorsPerGroup; colorIndex++)
{
var color = colors[groupIndex * colorsPerGroup + colorIndex];
paletteColors.Add(new PaletteColorDto
{
Group = groupIndex,
PaletteId = palette.Id,
Hex = color.ToHex()
});
}
}
return paletteColors;
} }
private static async Task<MemoryStream> GetAsMemoryStream(IFormFile file) private static async Task<MemoryStream> GetAsMemoryStream(IFormFile file)
+13 -17
View File
@@ -6,6 +6,7 @@ using System.IO.IsolatedStorage;
using System.Linq; using System.Linq;
using System.Reflection; using System.Reflection;
using System.Text; using System.Text;
using fxl.codes.kisekae.Entities;
using fxl.codes.kisekae.Models; using fxl.codes.kisekae.Models;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
@@ -78,27 +79,22 @@ namespace fxl.codes.kisekae.Services
_storage.DeleteFile(file.FileName); _storage.DeleteFile(file.FileName);
} }
public void ParsePalette(string directory, PaletteModel palette) public Color[] ParsePalette(PaletteDto palette, out int groups, out int colorsPerGroup)
{ {
_logger.LogTrace($"Reading palette {palette.FileName} from {directory}"); groups = 0;
var buffer = ReadToBuffer(directory, palette.FileName); colorsPerGroup = 0;
if (buffer.Length == 0) return;
if (buffer[..KissHeader.Length].SequenceEqual(KissHeader)) if (palette.Data.Length == 0) return null;
{ if (!palette.Data[..KissHeader.Length].SequenceEqual(KissHeader)) return GetColors(palette.Data);
// Verify palette mark?
if (buffer[4] != 16) _logger.LogError($"{palette.FileName} is not a valid palette file");
var colorDepth = Convert.ToInt32(buffer[5]); // Verify palette mark?
var colorsPerGroup = BitConverter.ToInt16(buffer, 8); if (palette.Data[4] != 16) _logger.LogError($"{palette.Filename} is not a valid palette file");
var groups = BitConverter.ToInt16(buffer, 10);
palette.Colors = GetColors(buffer[32..], colorDepth, colorsPerGroup, groups); var colorDepth = Convert.ToInt32(palette.Data[5]);
} colorsPerGroup = BitConverter.ToInt16(palette.Data, 8);
else groups = BitConverter.ToInt16(palette.Data, 10);
{
palette.Colors = GetColors(buffer); return GetColors(palette.Data[32..], colorDepth, colorsPerGroup, groups);
}
} }
public void ParseCel(string directory, CelModel cel, IEnumerable<PaletteModel> palettes) public void ParseCel(string directory, CelModel cel, IEnumerable<PaletteModel> palettes)
-3
View File
@@ -1,4 +1,3 @@
using Dapper;
using fxl.codes.kisekae.Services; using fxl.codes.kisekae.Services;
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;
@@ -58,8 +57,6 @@ namespace fxl.codes.kisekae
"default", "default",
"{controller=Home}/{action=Index}/{id?}/{configId?}"); "{controller=Home}/{action=Index}/{id?}/{configId?}");
}); });
DefaultTypeMap.MatchNamesWithUnderscores = true;
} }
} }
} }
-1
View File
@@ -14,7 +14,6 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Dapper" Version="2.0.90" /> <PackageReference Include="Dapper" Version="2.0.90" />
<PackageReference Include="Dapper.Contrib" Version="2.0.78" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.10" /> <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.10" />
<PackageReference Include="Npgsql" Version="5.0.10" /> <PackageReference Include="Npgsql" Version="5.0.10" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" /> <PackageReference Include="SixLabors.ImageSharp" Version="1.0.4" />