1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Copyright (c) 2014 by SiegeLord
//
// All rights reserved. Distributed under ZLib. For full terms see the file LICENSE.

#![crate_name = "allegro_image"]
#![crate_type = "lib"]

extern crate allegro;
extern crate allegro_image_sys;
extern crate allegro_util;
extern crate libc;

use allegro::Core;
use allegro_image_sys::*;

pub struct ImageAddon
{
	_dummy: (),
}

impl ImageAddon
{
	pub fn init(_: &Core) -> Result<ImageAddon, String>
	{
		use std::sync::{Once, ONCE_INIT};
		static mut RUN_ONCE: Once = ONCE_INIT;

		let mut res = Err("The image addon already initialized.".into());
		unsafe {
			RUN_ONCE.call_once(|| {
				res = if al_init_image_addon() != 0
				{
					Ok(ImageAddon { _dummy: () })
				}
				else
				{
					Err("Could not initialize the image addon.".into())
				}
			})
		}
		res
	}

	pub fn get_version() -> i32
	{
		unsafe { al_get_allegro_image_version() as i32 }
	}
}