202 lines
6.2 KiB
C++
202 lines
6.2 KiB
C++
/**
|
|
* @file LLMediaPluginTest.cpp
|
|
* @brief Primary test application for LLMedia (Separate Process) Plugin system
|
|
*
|
|
* $LicenseInfo:firstyear=2008&license=viewergpl$
|
|
*
|
|
* Copyright (c) 2009, Linden Research, Inc.
|
|
*
|
|
* Second Life Viewer Source Code
|
|
* The source code in this file ("Source Code") is provided by Linden Lab
|
|
* to you under the terms of the GNU General Public License, version 2.0
|
|
* ("GPL"), unless you have obtained a separate licensing agreement
|
|
* ("Other License"), formally executed by you and Linden Lab. Terms of
|
|
* the GPL can be found in doc/GPL-license.txt in this distribution, or
|
|
* online at http://secondlife.com/developers/opensource/gplv2
|
|
*
|
|
* There are special exceptions to the terms and conditions of the GPL as
|
|
* it is applied to this Source Code. View the full text of the exception
|
|
* in the file doc/FLOSS-exception.txt in this software distribution, or
|
|
* online at http://secondlife.com/developers/opensource/flossexception
|
|
*
|
|
* By copying, modifying or distributing this software, you acknowledge
|
|
* that you have read and understood your obligations described above,
|
|
* and agree to abide by those obligations.
|
|
*
|
|
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
|
|
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
|
|
* COMPLETENESS OR PERFORMANCE.
|
|
* $/LicenseInfo$
|
|
*/
|
|
|
|
#ifndef LL_MEDIA_PLUGIN_TEST_H
|
|
#define LL_MEDIA_PLUGIN_TEST_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include "llpluginclassmedia.h"
|
|
#include "llgl.h"
|
|
|
|
// Forward declarations
|
|
class GLUI_Rotation;
|
|
class GLUI_Translation;
|
|
class GLUI_Listbox;
|
|
class GLUI_EditText;
|
|
class GLUI_StaticText;
|
|
class GLUI;
|
|
class GLUI_Button;
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
struct mediaPanel
|
|
{
|
|
public:
|
|
mediaPanel();
|
|
~mediaPanel();
|
|
int mId;
|
|
std::string mStartUrl;
|
|
std::string mMimeType;
|
|
LLPluginClassMedia *mMediaSource;
|
|
int mMediaWidth;
|
|
int mMediaHeight;
|
|
int mTextureWidth;
|
|
int mTextureHeight;
|
|
double mTextureScaleX;
|
|
double mTextureScaleY;
|
|
GLuint mMediaTextureHandle;
|
|
GLuint mPickTextureHandle;
|
|
unsigned char* mPickTexturePixels;
|
|
bool mAppTextureCoordsOpenGL;
|
|
bool mReadyToRender;
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
class LLMediaPluginTest : public LLPluginClassMediaOwner
|
|
{
|
|
public:
|
|
LLMediaPluginTest( int app_window, int window_width, int window_height );
|
|
~LLMediaPluginTest();
|
|
|
|
void reshape( int width, int height );
|
|
void display();
|
|
void idle();
|
|
void gluiCallback( int control_id );
|
|
void keyboard( int key );
|
|
void mousePassive( int x, int y );
|
|
void mouseButton( int button, int state, int x, int y );
|
|
void mouseMove( int x, int y );
|
|
|
|
void bindTexture(GLuint texture, GLint row_length = 0, GLint alignment = 1);
|
|
bool checkGLError(const char *name = "OpenGL");
|
|
void drawGeometry( int panel );
|
|
void startPanelHighlight( float red, float green, float blue, float line_width );
|
|
void endPanelHighlight();
|
|
enum { DrawTypePickTexture, DrawTypeMediaTexture };
|
|
void draw( int draw_type );
|
|
void windowPosToTexturePos( int window_x, int window_y, int& media_x, int& media_y, int& id );
|
|
|
|
void addMediaPanel( std::string url );
|
|
void updateMediaPanel( mediaPanel* panel );
|
|
void remMediaPanel( mediaPanel* panel );
|
|
void replaceMediaPanel( mediaPanel* panel, std::string url );
|
|
void getRandomMediaSize( int& width, int& height, std::string mime_type );
|
|
void navigateToNewURI( std::string uri );
|
|
void initUrlHistory( std::string uri );
|
|
void selectPanelById( int id );
|
|
void selectPanel( mediaPanel* panel );
|
|
mediaPanel* findMediaPanel( LLPluginClassMedia* panel );
|
|
void makePickTexture( int id, GLuint* texture_handle, unsigned char** texture_pixels );
|
|
void makeChrome();
|
|
void resetView();
|
|
|
|
void dumpPanelInfo();
|
|
void updateStatusBar();
|
|
|
|
// Inherited from LLPluginClassMediaOwner
|
|
/*virtual*/ void handleMediaEvent(LLPluginClassMedia* self, LLPluginClassMediaOwner::EMediaEvent);
|
|
|
|
private:
|
|
const int mVersionMajor;
|
|
const int mVersionMinor;
|
|
const int mVersionPatch;
|
|
const int mMaxPanels;
|
|
int mAppWindow;
|
|
int mWindowWidth;
|
|
int mWindowHeight;
|
|
int mCurMouseX;
|
|
int mCurMouseY;
|
|
unsigned char mPixelReadColor[ 3 ];
|
|
bool mFuzzyMedia;
|
|
const std::string mHomeWebUrl;
|
|
|
|
std::vector< mediaPanel* > mMediaPanels;
|
|
mediaPanel* mSelectedPanel;
|
|
std::string mimeTypeFromUrl( std::string& url );
|
|
std::string pluginNameFromMimeType( std::string& mime_type );
|
|
|
|
GLUI_Rotation* mViewRotationCtrl;
|
|
GLUI_Translation* mViewScaleCtrl;
|
|
GLUI_Translation* mViewTranslationCtrl;
|
|
float mViewportAspect;
|
|
float mViewPos[ 3 ];
|
|
float mViewRotation[ 16 ];
|
|
|
|
int mIdControlAddPanel;
|
|
int mIdControlRemPanel;
|
|
|
|
std::vector< std::pair< std::string, std::string > > mBookmarks;
|
|
GLUI_Listbox* mBookmarkList;
|
|
int mIdBookmarks;
|
|
int mIdUrlEdit;
|
|
GLUI_EditText* mUrlEdit;
|
|
int mIdUrlInitHistoryEdit;
|
|
GLUI_EditText* mUrlInitHistoryEdit;
|
|
int mSelBookmark;
|
|
int mIdRandomPanelCount;
|
|
int mRandomPanelCount;
|
|
int mIdRandomBookmarks;
|
|
int mRandomBookmarks;
|
|
int mIdDisableTimeout;
|
|
int mDisableTimeout;
|
|
int mIdControlCrashPlugin;
|
|
int mIdControlHangPlugin;
|
|
int mIdControlExitApp;
|
|
|
|
GLUI* mGluiMediaTimeControlWindow;
|
|
int mIdMediaTimeControlPlay;
|
|
int mIdMediaTimeControlLoop;
|
|
int mIdMediaTimeControlPause;
|
|
int mIdMediaTimeControlStop;
|
|
int mIdMediaTimeControlSeek;
|
|
int mIdMediaTimeControlVolume;
|
|
int mMediaTimeControlVolume;
|
|
int mIdMediaTimeControlSeekSeconds;
|
|
int mMediaTimeControlSeekSeconds;
|
|
int mIdMediaTimeControlRewind;
|
|
int mIdMediaTimeControlFastForward;
|
|
|
|
GLUI* mGluiMediaBrowserControlWindow;
|
|
int mIdMediaBrowserControlBack;
|
|
GLUI_Button* mMediaBrowserControlBackButton;
|
|
int mIdMediaBrowserControlStop;
|
|
int mIdMediaBrowserControlForward;
|
|
GLUI_Button* mMediaBrowserControlForwardButton;
|
|
bool mGluiMediaTimeControlWindowFlag;
|
|
bool mGluiMediaBrowserControlWindowFlag;
|
|
bool mMediaBrowserControlBackButtonFlag;
|
|
bool mMediaBrowserControlForwardButtonFlag;
|
|
int mIdMediaBrowserControlHome;
|
|
int mIdMediaBrowserControlReload;
|
|
int mIdMediaBrowserControlClearCache;
|
|
int mIdMediaBrowserControlClearCookies;
|
|
int mIdMediaBrowserControlEnableCookies;
|
|
int mMediaBrowserControlEnableCookies;
|
|
|
|
GLUI* mBottomGLUIWindow;
|
|
GLUI_StaticText* mStatusText;
|
|
};
|
|
|
|
#endif // LL_MEDIA_PLUGIN_TEST_H
|
|
|