Bonjour (encore...)
Je suis en train de finir mes cheveux blancs sur pas grand-chose ; afficher mes "font" au premier plan, d'une certaine couleur et à une certaine position . Rien de méchant hein ? Le problème est que malgré avoir lu et relu un nombre incalculable de fois ma fonction, je ne vois aps le "hic" . Le probème est que mon texte s'affiche toujours en blanc et en bas à gauche de mon écran .... il semble sinon être au premier plan.
Mon code :
Ma fonction de chargement du font est faites ainsi (je supose fortement que le problème vient de ma callList ... car en décommentant son affichage et en affichant un simple quad ; ce dernier est au bon endroit et de la bonne couleur à l'écran ).
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35 void FontManager::DrawText2D(std::string FontName, unsigned int x, unsigned int y, const char *chaine, ...) { glPushAttrib( GL_LIGHTING | GL_DEPTH_TEST | GL_LIST_BIT ); glDisable(GL_TEXTURE_2D); glDisable(GL_LIGHTING); glEnable(GL_DEPTH_TEST) ; char texte[512]; va_list argsPtr; va_start(argsPtr, chaine); vsprintf_s(texte, chaine, argsPtr); va_end(argsPtr); glMatrixMode(GL_PROJECTION); glPushMatrix(); glLoadIdentity(); gluOrtho2D(0,Application::Instance().m_Settings.m_ScreenWidth,0,Application::Instance().m_Settings.m_ScreenHeight); glMatrixMode(GL_MODELVIEW); glPushMatrix(); glLoadIdentity(); glTranslatef((GLfloat)x,(GLfloat)y,0); glColor4f(1.0f, 0.0f, 0.0f,1.0f); glListBase(m_Fonts2D[FontName].m_List); glCallLists(strlen(texte), GL_UNSIGNED_BYTE, texte); glPopMatrix(); glMatrixMode(GL_PROJECTION); glPopMatrix(); glMatrixMode(GL_MODELVIEW); glPopAttrib(); }
En attendant , je vais réviser mes displayList, car je sens que le probèlme viens de là (ou pas ^^).
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 void FontManager::LoadFont2D(std::string FontName, int Height) { if ( m_Fonts2D.find(FontName) != m_Fonts2D.end() ) { DeleteFont2D(FontName) ; m_Fonts2D.erase(FontName); } Font2D f ; f.m_List = glGenLists(256); std::wstring FontNameWS = s2ws(FontName); LPCWSTR FontNameLP = FontNameWS.c_str(); f.m_Id = CreateFont(Height, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE, ANSI_CHARSET, OUT_TT_PRECIS, CLIP_DEFAULT_PRECIS, ANTIALIASED_QUALITY, FF_DONTCARE|DEFAULT_PITCH, FontNameLP); HFONT oldfont = (HFONT)SelectObject(m_hDC, f.m_Id); wglUseFontBitmaps(m_hDC, 0, 255, f.m_List); SelectObject(m_hDC, oldfont); m_Fonts2D[FontName] = f ; }
Partager