updates + Addition of AGL

pull/1/head
Able 2022-12-04 05:19:23 -06:00
parent fe517fbe1f
commit 9d95b3e97a
Signed by: able
GPG Key ID: 0BD8B45C30DCA887
18 changed files with 175 additions and 16 deletions

72
Cargo.lock generated
View File

@ -2,6 +2,13 @@
# It is not intended for manual editing.
version = 3
[[package]]
name = "able_graphics_library"
version = "0.1.0"
dependencies = [
"versioning",
]
[[package]]
name = "ahash"
version = "0.7.6"
@ -24,6 +31,12 @@ dependencies = [
"version_check",
]
[[package]]
name = "anyhow"
version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
[[package]]
name = "base64"
version = "0.13.1"
@ -55,10 +68,26 @@ dependencies = [
"toml 0.5.9 (git+https://git.ablecorp.us/theoddgarlic/toml-rs)",
]
[[package]]
name = "delete"
version = "0.1.0"
dependencies = [
"anyhow",
"clparse",
"fs_extra",
"trash_manifest",
]
[[package]]
name = "derelict_microarchitecture"
version = "0.1.0"
[[package]]
name = "fs_extra"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
[[package]]
name = "getrandom"
version = "0.2.8"
@ -98,6 +127,15 @@ version = "0.2.138"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
[[package]]
name = "list"
version = "0.1.0"
dependencies = [
"clparse",
"number_prefix",
"table",
]
[[package]]
name = "log"
version = "0.4.17"
@ -111,6 +149,12 @@ dependencies = [
name = "no_video"
version = "0.1.0"
[[package]]
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
[[package]]
name = "once_cell"
version = "1.16.0"
@ -166,6 +210,13 @@ dependencies = [
"syn",
]
[[package]]
name = "shell"
version = "0.1.0"
dependencies = [
"clparse",
]
[[package]]
name = "syn"
version = "1.0.105"
@ -177,6 +228,17 @@ dependencies = [
"unicode-ident",
]
[[package]]
name = "table"
version = "0.1.0"
[[package]]
name = "table_view"
version = "0.1.0"
dependencies = [
"table",
]
[[package]]
name = "tar"
version = "0.1.0"
@ -232,6 +294,16 @@ dependencies = [
"toml 0.5.9 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "undelete"
version = "0.1.0"
dependencies = [
"anyhow",
"clparse",
"fs_extra",
"trash_manifest",
]
[[package]]
name = "unicode-ident"
version = "1.0.5"

View File

@ -1,22 +1,22 @@
[workspace]
members = [
"drivers/basic_driver",
"drivers/graphics/derelict_microarchitecture",
"drivers/graphics/ground",
"drivers/graphics/novideo",
"drivers/graphics/vgable",
"libraries/able_graphics_library",
"libraries/clparse",
"libraries/tar",
"libraries/trash_manifest",
"libraries/versioning",
"libraries/table",
# "programs/delete",
# "programs/list",
# "programs/shell",
# "programs/table",
# "programs/table_view",
# "programs/undelete",
"programs/delete",
"programs/list",
"programs/shell",
"programs/table_view",
"programs/undelete",
]

View File

@ -0,0 +1,9 @@
[package]
name = "able_graphics_library"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
versioning = { path = "../versioning" }

View File

@ -0,0 +1,2 @@
# AGL
A simple (As of version 0.1.0) 3d graphics library based around vertex buffers and drawing triangles

View File

@ -0,0 +1,3 @@
pub enum BufferUsage {
Vertex,
}

View File

@ -0,0 +1,21 @@
pub struct Color3 {
pub r: u8,
pub g: u8,
pub b: u8,
}
impl Color3 {
/// Usage
/// The alpha value is a number between 0.0 and 1.0, which represents the transparency
/// or translucency of the other color.
pub fn blend(&self, other: &Self, alpha: f32) -> Self {
let r = (1.0 - alpha) * f32::from(self.r) + alpha * f32::from(other.r);
let g = (1.0 - alpha) * f32::from(self.g) + alpha * f32::from(other.g);
let b = (1.0 - alpha) * f32::from(self.b) + alpha * f32::from(other.b);
Self {
r: r as u8,
g: g as u8,
b: b as u8,
}
}
}

View File

@ -0,0 +1,14 @@
use crate::{buffer::BufferUsage, color::Color3, types::BufferID, vertex::Vertex};
pub enum DrawCommand {
UpdateFrame,
Clear(Color3),
ClearBuffer(BufferID),
AppendVertex(BufferID, Vertex),
MakeBuffer {
num_vertices: usize,
usage: BufferUsage,
},
}

View File

@ -0,0 +1,11 @@
pub mod buffer;
pub mod color;
pub mod commands;
pub mod types;
pub mod vertex;
pub const VERSION: versioning::Version = versioning::Version {
major: 0,
minor: 1,
patch: 0,
};

View File

@ -0,0 +1,11 @@
pub type BufferID = u16;
pub struct Float3Array {
pub inner: [f32; 3],
}
pub struct Float2Array {
pub inner: [f32; 2],
}
pub type Position3 = Float3Array;

View File

@ -0,0 +1,16 @@
use crate::{
color::Color3,
types::{Float2Array, Float3Array, Position3},
};
pub struct Vertex {
pub position: Position3,
pub normal: Float3Array,
pub color: Color3,
pub tex_coords: Float2Array,
}
pub struct VertexBuffer {
pub vertex_buffer: Vec<Vertex>,
}

View File

@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clparse = { path = "../clparse", features = ["std"] }
trash_manifest = { path = "../trash_manifest" }
clparse = { path = "../../libraries/clparse", features = ["std"] }
trash_manifest = { path = "../../libraries/trash_manifest" }
anyhow = "1.0"
fs_extra = "1.2"

View File

@ -6,6 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clparse = { path = "../clparse" }
clparse = { path = "../../libraries/clparse" }
number_prefix = "*"
table = { path = "../table" }
table = { path = "../../libraries/table" }

View File

@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clparse = { path = "../clparse" }
clparse = { path = "../../libraries/clparse" }

View File

@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
table = { path = "../table" }
table = { path = "../../libraries/table" }

View File

@ -6,7 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clparse = { path = "../clparse" }
trash_manifest = { path = "../trash_manifest" }
clparse = { path = "../../libraries/clparse" }
trash_manifest = { path = "../../libraries/trash_manifest" }
anyhow = "1.0"
fs_extra = "1.2"
fs_extra = "1.2"