123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- program demo15;
- {$I zglCustomConfig.cfg}
- uses
- {$IFDEF USE_ZENGL_STATIC}
- zgl_main,
- zgl_screen,
- zgl_window,
- zgl_timers,
- zgl_keyboard,
- zgl_mouse,
- zgl_textures,
- zgl_textures_png,
- zgl_font,
- zgl_text,
- zgl_primitives_2d,
- zgl_sprite_2d,
- zgl_video,
- zgl_video_theora,
- zgl_utils
- {$ELSE}
- zglHeader
- {$ENDIF}
- ;
- var
- dirRes : UTF8String {$IFNDEF MACOSX} = '../data/' {$ENDIF};
- fntMain : zglPFont;
- video : zglPVideoStream;
- videoSeek : Boolean;
- procedure Init;
- begin
- fntMain := font_LoadFromFile( dirRes + 'font.zfi' );
- // EN: Open the video file.
- // RU: Открыть видео файл.
- video := video_OpenFile( dirRes + 'video.ogv' );
- end;
- procedure Draw;
- begin
- if Assigned( video ) Then
- begin
- // EN: Rendering the current video frame in the center of screen using parameters of it from video.Info.
- // RU: Рендеринг текущего кадра видео в центре экрана используя параметры из video.Info.
- ssprite2d_Draw( video.Texture, ( 800 - video.Info.Width ) / 2, ( 600 - video.Info.Height ) / 2, video.Info.Width, video.Info.Height, 0 );
- // EN: Rendering of progress bar.
- // RU: Рендеринг полосы прогресса.
- pr2d_Rect( 0, 600 - 100, 800, 20, $00FF00, 255 );
- pr2d_Rect( 0, 600 - 100, ( 800 / video.Info.Duration ) * video.Time, 20, $00FF00, 155, PR2D_FILL );
- text_Draw( fntMain, 0, 0, 'FPS: ' + u_IntToStr( zgl_Get( RENDER_FPS ) ) );
- text_Draw( fntMain, 0, 20, 'Frame: ' + u_IntToStr( video.Frame ) );
- text_Draw( fntMain, 100, 0, 'Duration: ' + u_FloatToStr( video.Info.Duration / 1000 ) );
- text_Draw( fntMain, 100, 20, 'Frames: ' + u_IntToStr( video.Info.Frames ) );
- text_Draw( fntMain, 230, 0, 'Time: ' + u_FloatToStr( video.Time / 1000 ) );
- end;
- end;
- procedure Timer;
- begin
- if key_Press( K_ESCAPE ) Then zgl_Exit();
- // EN: If left mouse button is down on progress bar, then seek the video.
- // RU: Если зажата левая кнопка мыши над полосой прогресса - перемещаться по видео.
- if mouse_Down( M_BLEFT ) and ( mouse_Y() > 500 ) and ( mouse_Y() < 520 ) Then
- begin
- videoSeek := TRUE;
- video_Seek( video, ( mouse_X() / 800 ) * video.Info.Duration );
- end else
- videoSeek := FALSE;
- key_ClearState();
- mouse_ClearState();
- end;
- procedure Update( dt : Double );
- begin
- if not videoSeek Then
- video_Update( video, dt, TRUE );
- end;
- Begin
- {$IFNDEF USE_ZENGL_STATIC}
- if not zglLoad( libZenGL ) Then exit;
- {$ENDIF}
- randomize();
- timer_Add( @Timer, 16 );
- zgl_Reg( SYS_LOAD, @Init );
- zgl_Reg( SYS_DRAW, @Draw );
- zgl_Reg( SYS_UPDATE, @Update );
- wnd_SetCaption( '15 - Video' );
- wnd_ShowCursor( TRUE );
- scr_SetOptions( 800, 600, REFRESH_MAXIMUM, FALSE, FALSE );
- zgl_Init();
- End.
|