utf-8: renamed canvas and pixel

pull/42/head
Vladimir Serov 2020-02-11 10:55:05 +03:00
parent 35a6c2e2a1
commit 372c4e6c3e
No known key found for this signature in database
GPG Key ID: 6BA7C26C3FDF7BB3
1 changed files with 19 additions and 19 deletions

View File

@ -5,22 +5,22 @@ use crate::render::{Canvas as RenderCanvas, Pixel, Color};
const CODEPAGE: [&str; 4] = [" ","\u{2584}","\u{2580}","\u{2588}"];
#[derive(Copy, Clone, PartialEq)]
pub enum Unicode1x2 {
pub enum Dense1x2 {
Dark, Light
}
impl Pixel for Unicode1x2 {
impl Pixel for Dense1x2 {
type Image = String;
type Canvas = Canvas;
fn default_color(color: Color) -> Unicode1x2 { color.select(Unicode1x2::Dark, Unicode1x2::Light) }
type Canvas = Canvas1x2;
fn default_color(color: Color) -> Dense1x2 { color.select(Dense1x2::Dark, Dense1x2::Light) }
fn default_unit_size() -> (u32, u32) { (1, 1) }
}
impl Unicode1x2 {
impl Dense1x2 {
fn value(&self) -> u8 {
match self {
Unicode1x2::Dark => {1}
Unicode1x2::Light => {0}
Dense1x2::Dark => {1}
Dense1x2::Light => {0}
}
}
fn parse_2_bits(sym: &u8) -> &'static str {
@ -28,21 +28,21 @@ impl Unicode1x2 {
}
}
pub struct Canvas {
pub struct Canvas1x2 {
canvas: Vec<u8>,
width: u32,
dark_pixel: u8
}
impl RenderCanvas for Canvas {
impl RenderCanvas for Canvas1x2 {
type Pixel = Unicode1x2;
type Pixel = Dense1x2;
type Image = String;
fn new(width: u32, height: u32, dark_pixel: Unicode1x2, light_pixel: Unicode1x2) -> Self {
fn new(width: u32, height: u32, dark_pixel: Dense1x2, light_pixel: Dense1x2) -> Self {
let a = vec![light_pixel.value(); (width * height) as usize];
Canvas {
Canvas1x2 {
width: width,
canvas: a,
dark_pixel: dark_pixel.value()
@ -71,7 +71,7 @@ impl RenderCanvas for Canvas {
}
.iter()
// Mapping those 2-bit numbers to corresponding pixels.
.map(Unicode1x2::parse_2_bits)
.map(Dense1x2::parse_2_bits)
.collect::<Vec<&str>>()
.concat()
)
@ -84,11 +84,11 @@ impl RenderCanvas for Canvas {
fn test_render_to_utf8_string() {
use crate::render::Renderer;
let colors = &[Color::Dark, Color::Light, Color::Light, Color::Dark];
let image: String = Renderer::<Unicode1x2>::new(colors, 2, 1).build();
let image: String = Renderer::<Dense1x2>::new(colors, 2, 1).build();
assert_eq!(&image, "\n");
let image2 = Renderer::<Unicode1x2>::new(colors, 2, 1).module_dimensions(2, 2).build();
let image2 = Renderer::<Dense1x2>::new(colors, 2, 1).module_dimensions(2, 2).build();
assert_eq!(&image2, " \n ██ \n ██ \n ");
}
@ -96,12 +96,12 @@ fn test_render_to_utf8_string() {
#[test]
fn integration_render_utf8_1x2() {
use crate::{QrCode, Version, EcLevel};
use crate::render::utf8::Unicode1x2;
use crate::render::unicode::Dense1x2;
let code = QrCode::with_version(b"12345678", Version::Micro(2), EcLevel::L).unwrap();
let image = code.render::<Unicode1x2>()
.dark_color(Unicode1x2::Light)
.light_color(Unicode1x2::Dark)
let image = code.render::<Dense1x2>()
.dark_color(Dense1x2::Light)
.light_color(Dense1x2::Dark)
.module_dimensions(1, 1)
.build();
assert_eq!("█████████████████\n██ ▄▄▄▄▄ █▄▀▄█▄██\n██ █ █ █ █ ██\n██ █▄▄▄█ █▄▄██▀██\n██▄▄▄▄▄▄▄█▄▄▄▀ ██\n██▄ ▀ ▀ ▀▄▄ ████\n██▄▄▀▄█ ▀▀▀ ▀▄▄██\n██▄▄▄█▄▄█▄██▄█▄██\n▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀", image);