// Copyright (c) 2024 Synty Studios Limited. All rights reserved. // // Use of this software is subject to the terms and conditions of the Synty Studios End User Licence Agreement (EULA) // available at: https://syntystore.com/pages/end-user-licence-agreement // // For additional details, see the LICENSE.MD file bundled with this software. using SQLite; using System.Collections.Generic; namespace Synty.SidekickCharacters.Database.DTO { [Table("sk_body_shape_preset")] public class SidekickBodyShapePreset { [PrimaryKey] [AutoIncrement] [Column("id")] public int ID { get; set; } [Column("name")] public string Name { get; set; } [Column("body_type")] public int BodyType { get; set; } [Column("body_size")] public int BodySize { get; set; } [Column("musculature")] public int Musculature { get; set; } /// /// Gets a list of all the Preset Body Shape in the database. /// /// The Database Manager to use. /// A list of all Preset Body Shapes in the database. public static List GetAll(DatabaseManager dbManager) { return dbManager.GetCurrentDbConnection().Table().ToList(); } /// /// Gets a specific Preset Body Shape by its database ID. /// /// The Database Manager to use. /// The id of the required Preset Body Shape. /// The specific Preset Body Shape if it exists; otherwise null. public static SidekickBodyShapePreset GetByID(DatabaseManager dbManager, int id) { return dbManager.GetCurrentDbConnection().Get(id); } /// /// Updates or Inserts this item in the Database. /// /// The database manager to use. public int Save(DatabaseManager dbManager) { if (ID < 0) { dbManager.GetCurrentDbConnection().Insert(this); // in theory this could return a different ID, but in practice it's highly unlikely ID = (int) SQLite3.LastInsertRowid(dbManager.GetCurrentDbConnection().Handle); } dbManager.GetCurrentDbConnection().Update(this); return ID; } /// /// Deletes this item from the database /// /// The database manager to use. public void Delete(DatabaseManager dbManager) { dbManager.GetCurrentDbConnection().Delete(ID); } } }