2009-07-28 21:32:10 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
2009-03-28 08:57:34 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
2009-01-15 06:48:15 +00:00
|
|
|
#include "PluginVideo.h"
|
|
|
|
|
2009-02-08 10:09:26 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
PluginVideo::PluginVideo(const char *_Filename) : CPlugin(_Filename), validVideo(false)
|
|
|
|
{
|
2009-01-31 23:47:45 +00:00
|
|
|
Video_Prepare = 0;
|
|
|
|
Video_SendFifoData = 0;
|
2009-07-11 02:34:16 +00:00
|
|
|
Video_BeginField = 0;
|
2009-07-15 22:20:59 +00:00
|
|
|
Video_EndField = 0;
|
2009-01-31 23:47:45 +00:00
|
|
|
Video_EnterLoop = 0;
|
2009-02-20 22:04:52 +00:00
|
|
|
Video_ExitLoop = 0;
|
2009-01-31 23:47:45 +00:00
|
|
|
Video_Screenshot = 0;
|
|
|
|
Video_AddMessage = 0;
|
2009-07-01 13:49:49 +00:00
|
|
|
Video_AccessEFB = 0;
|
2009-01-31 23:47:45 +00:00
|
|
|
|
2009-02-20 22:04:52 +00:00
|
|
|
Video_Prepare = reinterpret_cast<TVideo_Prepare>
|
|
|
|
(LoadSymbol("Video_Prepare"));
|
2009-01-15 06:48:15 +00:00
|
|
|
Video_SendFifoData = reinterpret_cast<TVideo_SendFifoData>
|
2009-02-20 22:04:52 +00:00
|
|
|
(LoadSymbol("Video_SendFifoData"));
|
2009-07-11 02:34:16 +00:00
|
|
|
Video_BeginField = reinterpret_cast<TVideo_BeginField>
|
|
|
|
(LoadSymbol("Video_BeginField"));
|
2009-07-15 22:20:59 +00:00
|
|
|
Video_EndField = reinterpret_cast<TVideo_EndField>
|
|
|
|
(LoadSymbol("Video_EndField"));
|
2009-02-20 22:04:52 +00:00
|
|
|
Video_Screenshot = reinterpret_cast<TVideo_Screenshot>
|
|
|
|
(LoadSymbol("Video_Screenshot"));
|
|
|
|
Video_EnterLoop = reinterpret_cast<TVideo_EnterLoop>
|
|
|
|
(LoadSymbol("Video_EnterLoop"));
|
|
|
|
Video_ExitLoop = reinterpret_cast<TVideo_ExitLoop>
|
|
|
|
(LoadSymbol("Video_ExitLoop"));
|
|
|
|
Video_AddMessage = reinterpret_cast<TVideo_AddMessage>
|
|
|
|
(LoadSymbol("Video_AddMessage"));
|
2009-07-01 13:49:49 +00:00
|
|
|
Video_AccessEFB = reinterpret_cast<TVideo_AccessEFB>
|
|
|
|
(LoadSymbol("Video_AccessEFB"));
|
2009-08-08 01:39:56 +00:00
|
|
|
Video_SetRendering = reinterpret_cast<TVideo_SetRendering>
|
|
|
|
(LoadSymbol("Video_SetRendering"));
|
2009-01-15 06:48:15 +00:00
|
|
|
|
2009-02-20 22:04:52 +00:00
|
|
|
if ((Video_Prepare != 0) &&
|
|
|
|
(Video_SendFifoData != 0) &&
|
2009-07-15 22:20:59 +00:00
|
|
|
(Video_BeginField != 0) &&
|
|
|
|
(Video_EndField != 0) &&
|
2009-02-20 22:04:52 +00:00
|
|
|
(Video_EnterLoop != 0) &&
|
|
|
|
(Video_ExitLoop != 0) &&
|
|
|
|
(Video_Screenshot != 0) &&
|
2009-07-01 13:49:49 +00:00
|
|
|
(Video_AddMessage != 0) &&
|
2009-08-08 01:39:56 +00:00
|
|
|
(Video_SetRendering != 0) &&
|
2009-07-01 13:49:49 +00:00
|
|
|
(Video_AccessEFB != 0))
|
2009-02-20 22:04:52 +00:00
|
|
|
validVideo = true;
|
2009-01-15 06:48:15 +00:00
|
|
|
}
|
2009-02-20 22:04:52 +00:00
|
|
|
|
|
|
|
PluginVideo::~PluginVideo() {}
|
|
|
|
|
|
|
|
} // namespace
|