Merge branch 'master' of git://github.com/thepowersgang/acess2
[tpg/acess2.git] / Usermode / Applications / axwin4_src / Server / CClient.cpp
index 9fe806e..2abcb9b 100644 (file)
@@ -8,11 +8,13 @@
 #include <CClient.hpp>
 #include <IIPCChannel.hpp>
 #include <ipc.hpp>
+#include <draw_text.hpp>       // for the fonts
 
 namespace AxWin {
 
 CClient::CClient(::AxWin::IIPCChannel& channel):
-       m_channel(channel)
+       m_channel(channel),
+       m_id(0)
 {
        
 }
@@ -24,21 +26,34 @@ CClient::~CClient()
 
 CWindow* CClient::GetWindow(int ID)
 {
-       if( ID == 0 )
-               return 0;
-       
-       return m_windows[ID];
+       try {
+               return m_windows.at(ID);
+       }
+       catch(const std::exception& e) {
+               return NULL;
+       }
 }
 
 void CClient::SetWindow(int ID, CWindow* window)
 {
-       _SysDebug("SetWindow(ID=%i,window=%p)", ID, window);
-       if( m_windows[ID] ) {
-               delete m_windows[ID];
+       //_SysDebug("SetWindow(ID=%i,window=%p)", ID, window);
+       auto it = m_windows.find(ID);
+       if( it != m_windows.end() ) {
+               _SysDebug("CLIENT BUG: Window ID %i is already used by %p", ID, it->second);
+       }
+       else {
+               m_windows[ID] = window;
+       }
+}
+
+IFontFace& CClient::GetFont(unsigned int id)
+{
+       static CFontFallback    fallback_font;
+       if( id == 0 ) {
+               _SysDebug("GetFont: %i = %p", id, &fallback_font);
+               return fallback_font;
        }
-       _SysDebug("SetWindow - Set", ID, window);
-       m_windows[ID] = window;
-       _SysDebug("SetWindow - END");
+       assert(!"TODO: CClient::GetFont id != 0");
 }
 
 void CClient::HandleMessage(CDeserialiser& message)

UCC git Repository :: git.ucc.asn.au