summaryrefslogtreecommitdiff
path: root/source/logic/AllegroWrappers.cpp
blob: 4094cfef13f709b5b0859a36f5c09d0061914765 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#include "AllegroWrappers.h"

int AllegroInit::_initCount = 0;

AllegroInit::AllegroInit()
{
    if (_initCount==0)
    {
        if (!al_init())
        {
            throw InstallFailure();
        }
    }
    ++_initCount;
}

AllegroInit::AllegroInit(const AllegroInit& ref)
{
    if (_initCount==0)
    {
        if (!al_init())
        {
            throw InstallFailure();
        }
    }
    ++_initCount;
}

AllegroInit::~AllegroInit()
{
    --_initCount;
    if (_initCount==0)
    {
        al_uninstall_system();
    }
}


int AllegroKeyboardInit::_initCount = 0;

AllegroKeyboardInit::AllegroKeyboardInit()
{
    if (_initCount==0)
    {
        if (!al_install_keyboard())
        {
            throw InstallFailure();
        }
    }
    ++_initCount;
}

AllegroKeyboardInit::AllegroKeyboardInit(const AllegroKeyboardInit& ref)
{
    if (_initCount==0)
    {
        if (!al_install_keyboard())
        {
            throw InstallFailure();
        }
    }
    ++_initCount;
}

AllegroKeyboardInit::~AllegroKeyboardInit()
{
    --_initCount;
    if (_initCount==0) al_uninstall_keyboard();
}

int AllegroDrawingInit::_initCount = 0;

AllegroDrawingInit::AllegroDrawingInit()
{
    if (_initCount==0)
    {
        if (!al_init_primitives_addon())
        {
            throw InstallFailure();
        }
        al_init_font_addon();
        if (!al_init_ttf_addon())
        {
            throw InstallFailure();
        }
    }
    ++_initCount;
}

AllegroDrawingInit::AllegroDrawingInit(const AllegroDrawingInit& ref)
{
    if (_initCount==0)
    {
        if (!al_init_primitives_addon())
        {
            throw InstallFailure();
        }
        al_init_font_addon();
        if (!al_init_ttf_addon())
        {
            throw InstallFailure();
        }
    }
    ++_initCount;
}

AllegroDrawingInit::~AllegroDrawingInit()
{
    --_initCount;
    if (_initCount==0)
    {
        al_shutdown_ttf_addon();
        al_shutdown_font_addon();
        al_shutdown_primitives_addon();
    }
}