Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <windows.h>
- #include <string>
- #include <assert.h>
- #include "CSAMPFUNCS.h"
- CSAMPFUNCS *SF = new CSAMPFUNCS();
- stFontInfo *pFont;
- bool CALLBACK Present(CONST RECT *pSourceRect, CONST RECT *pDestRect, HWND hDestWindowOverride,
- CONST RGNDATA *pDirtyRegion)
- {
- pFont = SF->getRender()->CreateNewFont("Tahoma", 12, FCR_BORDER);
- if (SUCCEEDED(SF->getRender()->BeginRender())) // если девайс готов к рисованию
- {
- pFont->Print("текст", D3DCOLOR_ARGB(255, 255, 255, 0), 500, 500, false);
- SF->getRender()->EndRender(); // завершаем рисование
- };
- return true; // возвращаем положительный результат
- };
- void CALLBACK mainloop( void )
- {
- static bool init = false;
- if( !init )
- {
- if( !SF->getSAMP()->IsInitialized() )
- return;
- SF->getSAMP()->getChat()->AddChatMessage( D3DCOLOR_XRGB( 0, 0xAA, 0 ), "lesson plugin." );
- SF->getRender()->registerD3DCallback(eDirect3DDeviceMethods::D3DMETHOD_PRESENT, Present);
- init = true;
- }
- }
- BOOL APIENTRY DllMain( HMODULE hModule, DWORD dwReasonForCall, LPVOID lpReserved )
- {
- switch ( dwReasonForCall )
- {
- case DLL_PROCESS_ATTACH:
- SF->initPlugin( mainloop, hModule );
- break;
- case DLL_THREAD_ATTACH:
- case DLL_THREAD_DETACH:
- case DLL_PROCESS_DETACH:
- break;
- }
- return TRUE;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement