![]() |
In fremdem OpenGL Grafikkontext zeichnen
Hallo!
Auf meinem Computer läuft eine OpenGL Anwendung und rendert ihre Welt. Ich möchte nun auf diesen Grafikkontext zugreifen und selbst etwas "dazurendern" bzw. zweidimensionale Grafiken und Texte anzeigen lassen. Falls ihr das Programm ![]() Und hier kommt ihr ins Spiel, denn ich habe leider keine Ahnung, wie ich soetwas bewerkstelligen kann ;) Habt ihr nützliche Infos oder Links für mich, um mich mit dem Thema vertraut zu machen? Lg oli PS: ich programmiere zwar C#, kann aber auch native Delphiprogramme schreiben ;) |
Re: In fremdem OpenGL Grafikkontext zeichnen
auf externe anwendungen schreiben ist sone sachen, das kann man meist nur mit OGL Hooks bewerkstelligen, und das ist alles ne komplizierte Materie.
Kannst es auch per GDI machen, aber das flackern ist ein nateil der sehr nervt. Durchsuche mal das forum hier, da wurde das schon öfters mal besprochen. |
Re: In fremdem OpenGL Grafikkontext zeichnen
Hi!
Ich habe mir jetzt OpenGL Hooks angeschaut und es funktioniert auch so halbwegs. Also ich kann schon in der fremden Anwendung etwas zeichnen, nur leider ist es nicht immer vollständig da und flackert auch - leider weiß ich nicht wieso. Hier mein Code (ich verwende die uallCollection für den API Hook): Hook-Installation und -Entfernung in meiner Anwendung:
Delphi-Quellcode:
Die einzige Unit der injizierten DLL:
procedure TControlForm.ButtonInstallHookClick(Sender: TObject);
var PID: Integer; begin if TryStrToInt(EditProcessID.Text, PID) then begin if InjectLibrary(PID, PChar(DllFileName)) then MessageBox(Handle, 'Hook installation was successful!', 'Information', MB_OK or MB_ICONINFORMATION) else MessageBox(Handle, 'Hook installation was not successful!', 'Error', MB_OK or MB_ICONERROR); end else MessageBox(Handle, 'The entered process id is not a valid number!', 'Error', MB_OK or MB_ICONERROR); end; procedure TControlForm.ButtonRemoveHookClick(Sender: TObject); var PID: Integer; begin if TryStrToInt(EditProcessID.Text, PID) then begin if UnloadLibrary(PID, PChar(DllFileName)) then MessageBox(Handle, 'Hook uninstallation was successful!', 'Information', MB_OK or MB_ICONINFORMATION) else MessageBox(Handle, 'Hook uninstallation was not successful!', 'Error', MB_OK or MB_ICONERROR); end else MessageBox(Handle, 'The entered process id is not a valid number!', 'Error', MB_OK or MB_ICONERROR); end;
Delphi-Quellcode:
Habt ihr Ideen, woran es scheitert?
unit Overlay;
interface uses Windows, SysUtils, uallHook, Graphics; type TSwapBuffersFunction = function(DC: HDC) : BOOL; stdcall; implementation var NewSwapBuffersFunction: TSwapBuffersFunction; function MySwapBuffersFunction(DC: HDC): BOOL; stdcall; var Canvas: TCanvas; Rect: TRect; begin Rect.Left := 0; Rect.Right := 100; Rect.Top := 0; Rect.Bottom := 100; Canvas := TCanvas.Create; Canvas.Handle := DC; Canvas.Brush.Color := clRed; Canvas.FillRect(Rect); Canvas.Free; Result := NewSwapBuffersFunction(DC); end; procedure InstallHook; var module: HMODULE; SwapBuffersFunction: Pointer; begin module := GetModuleHandle(gdi32); if module <> INVALID_HANDLE_VALUE then begin SwapBuffersFunction := GetProcAddress(module, 'SwapBuffers'); if SwapBuffersFunction <> nil then begin if not HookCode(SwapBuffersFunction, @MySwapBuffersFunction, @NewSwapBuffersFunction) then MessageBox(0, 'Hooking code has failed.', 'Error', MB_OK or MB_ICONERROR); end else MessageBox(0, 'Invalid function address!', 'Error', MB_OK or MB_ICONERROR); end else MessageBox(0, PChar('Invalid module handle!', 'Error', MB_OK or MB_ICONERROR); end; procedure RemoveHook; begin if not UnhookCode(@NewSwapBuffersFunction) then MessageBox(0, 'Unhooking code has failed', 'Error', MB_OK or MB_ICONERROR); end; initialization InstallHook; finalization RemoveHook; end. Lg oli |
Re: In fremdem OpenGL Grafikkontext zeichnen
Hi!
Ich erlaube mir, hier einmal zu pushen :duck: Brauche das ganze leider recht bald :? Lg oli |
Re: In fremdem OpenGL Grafikkontext zeichnen
Schau dir mal den
![]() |
Alle Zeitangaben in WEZ +1. Es ist jetzt 08:07 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz