summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/VideoFactory.cpp
blob: f6d7ba155b891c66aa77afdf51bc7549740a0965 (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
/*  Starshatter: The Open Source Project
    Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
    Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
    Copyright (c) 1997-2006, Destroyer Studios LLC.

    AUTHOR:       John DiCamillo


    OVERVIEW
    ========
    Video and Polygon Renderer Factory class
*/

#include "VideoFactory.h"

#include "VideoDX9.h"
#include "SoundD3D.h"

// +--------------------------------------------------------------------+

VideoFactory::VideoFactory(HWND h)
: hwnd(h), video(0), audio(0)
{ }

VideoFactory::~VideoFactory()
{ }

// +--------------------------------------------------------------------+

Video*
VideoFactory::CreateVideo(VideoSettings* vs)
{
    if (!video) {
        video = (Video*) new VideoDX9(hwnd, vs);

        if (!video) {
            delete video;
            video = 0;
        }
    }

    return video;
}

// +--------------------------------------------------------------------+

void
VideoFactory::DestroyVideo(Video* v)
{
    if (v == video) {
        delete video;
        video = 0;
    }
}

// +--------------------------------------------------------------------+

SoundCard*
VideoFactory::CreateSoundCard()
{
    if (!audio) {
        audio = new SoundCardD3D(hwnd);
        Sound::UseSoundCard(audio);
    }

    return audio;
}