X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=cl_video.h;h=de36e7e667eb47876c182074bd891efcbcfafb11;hb=9b483e302a32f2e76f55dc2660e17d7f7c5e96cb;hp=8439e92cc65ba80ceac47048f3c2439258779814;hpb=fbb67933d787ac8c488ade111ac1003623827320;p=xonotic%2Fdarkplaces.git diff --git a/cl_video.h b/cl_video.h index 8439e92c..de36e7e6 100644 --- a/cl_video.h +++ b/cl_video.h @@ -2,8 +2,10 @@ #ifndef CL_VIDEO_H #define CL_VIDEO_H -#define MAXCLVIDEOS 64 + 1 // 1 video is reserved for the cinematic mode -#define CLVIDEOPREFIX "_video/" +#include "cl_dyntexture.h" + +// yields DYNAMIC_TEXTURE_PATH_PREFIX CLVIDEOPREFIX video name for a path +#define CLVIDEOPREFIX CLDYNTEXTUREPREFIX "video/" #define CLTHRESHOLD 2.0 #define MENUOWNER 1 @@ -19,6 +21,16 @@ typedef enum clvideostate_e CLVIDEO_STATECOUNT } clvideostate_t; +#define CLVIDEO_MAX_SUBTITLES 512 + +extern cvar_t cl_video_subtitles; +extern cvar_t cl_video_subtitles_lines; +extern cvar_t cl_video_subtitles_textsize; +extern cvar_t cl_video_scale; +extern cvar_t cl_video_scale_vpos; +extern cvar_t cl_video_stipple; +extern cvar_t cl_video_brightness; + typedef struct clvideo_s { int ownertag; @@ -35,6 +47,12 @@ typedef struct clvideo_s cachepic_t cpif; + // VorteX: subtitles array + int subtitles; + char *subtitle_text[CLVIDEO_MAX_SUBTITLES]; + float subtitle_start[CLVIDEO_MAX_SUBTITLES]; + float subtitle_end[CLVIDEO_MAX_SUBTITLES]; + // if a video is suspended, it is automatically paused (else we'd still have to process the frames) // used to determine whether the video's resources should be freed or not @@ -45,15 +63,15 @@ typedef struct clvideo_s char filename[MAX_QPATH]; } clvideo_t; -clvideo_t* CL_OpenVideo( const char *filename, const char *name, int owner ); -clvideo_t* CL_GetVideo( const char *name ); +clvideo_t* CL_OpenVideo( const char *filename, const char *name, int owner, const char *subtitlesfile ); +clvideo_t* CL_GetVideoByName( const char *name ); void CL_SetVideoState( clvideo_t *video, clvideostate_t state ); void CL_RestartVideo( clvideo_t *video ); void CL_CloseVideo( clvideo_t * video ); void CL_PurgeOwner( int owner ); -void CL_VideoFrame( void ); // update all videos +void CL_Video_Frame( void ); // update all videos void CL_Video_Init( void ); void CL_Video_Shutdown( void ); @@ -61,7 +79,11 @@ void CL_Video_Shutdown( void ); extern int cl_videoplaying; void CL_DrawVideo( void ); -void CL_VideoStart( char *filename ); +void CL_VideoStart( char *filename, const char *subtitlesfile ); void CL_VideoStop( void ); +// new function used for fullscreen videos +// TODO: Andreas Kirsch: move this subsystem somewhere else (preferably host) since the cl_video system shouldnt do such work like managing key events.. +void CL_Video_KeyEvent( int key, int ascii, qboolean down ); + #endif