diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-06-10 20:55:43 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-06-10 20:55:43 +0200 |
| commit | 7fa4f497f77471fa145881d759afe0b521971e04 (patch) | |
| tree | 4cb813362075667db6dbec140dc2ce166dc4d894 /src/text.rs | |
| parent | 47d15d537c61b828e72113cc8d3d8da3db9a2efb (diff) | |
| download | rutikmer-7fa4f497f77471fa145881d759afe0b521971e04.tar.gz rutikmer-7fa4f497f77471fa145881d759afe0b521971e04.tar.bz2 rutikmer-7fa4f497f77471fa145881d759afe0b521971e04.zip | |
Added shuffle generator
Diffstat (limited to 'src/text.rs')
| -rw-r--r-- | src/text.rs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/text.rs b/src/text.rs new file mode 100644 index 0000000..10ca700 --- /dev/null +++ b/src/text.rs @@ -0,0 +1,28 @@ +use sdl2::ttf; +use sdl2::render::{Texture, TextureCreator}; +use sdl2::pixels::Color; + +struct Factory<'a, T> { + font: ttf::Font<'a, 'a>, + creator: &'a TextureCreator<T>, + bg: Color, +} + +impl Factory<'a, T> { + pub fn new(font: &ttf::Font<'a, 'a>, creator: &'a TextureCreator<T>, bg: Color) -> Factory { + Factory { font, creator, bg } + } +} + +pub fn to_texture<'a, T>( + s: &'a String, + font: &ttf::Font, + tex_creator: &'a TextureCreator<T>, + bg: &Color +) -> Texture<'a> +{ + let surface = font.render(s).shaded(Color::RGB(255, 255, 255), *bg).unwrap(); + tex_creator.create_texture_from_surface(&surface).unwrap() +} + +// pub fn width(s: &String |
