home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / tutsamp / comuser / comuser.cpp < prev    next >
C/C++ Source or Header  |  1997-08-30  |  37KB  |  1,104 lines

  1. /*+==========================================================================
  2.   File:      COMUSER.CPP
  3.  
  4.   Summary:   Based largely on the DLLUSER.EXE application code, this
  5.              module is meant to implicitly link to the COMOBJ.DLL
  6.              and illustrate the use (by this COMUSER client app) of the
  7.              exported COM Object creation calls from that DLL:
  8.              CreateCar, CreateUtilityCar, CreateCruiseCar.
  9.              To this end, COMUSER also provides a set of menus for these
  10.              Car related objects with selections for the respective
  11.              methods of the Interfaces exposed by those COM Objects.
  12.  
  13.              For a comprehensive tutorial code tour of COMUSER's contents
  14.              and offerings see the tutorial COMUSER.HTM file. For more
  15.              specific technical details on the internal workings see the
  16.              comments dispersed throughout the COMUSER source code. For
  17.              more details on the COMOBJ.DLL that COMUSER works with see
  18.              the COMOBJ.HTM tutorial file in the main tutorial directory.
  19.  
  20.   Classes:   CMainWindow
  21.  
  22.   Functions: InitApplication, WinMain
  23.  
  24.   Origin:    8-20-95: atrent - Editor-inheritance from the DLLUSER source.
  25.  
  26. ----------------------------------------------------------------------------
  27.   This file is part of the Microsoft COM Tutorial Code Samples.
  28.  
  29.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  30.  
  31.   This source code is intended only as a supplement to Microsoft
  32.   Development Tools and/or on-line documentation.  See these other
  33.   materials for detailed information regarding Microsoft code samples.
  34.  
  35.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  36.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  37.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  38.   PARTICULAR PURPOSE.
  39. ==========================================================================+*/
  40.  
  41. /*--------------------------------------------------------------------------
  42.   We include WINDOWS.H for all Win32 applications.
  43.   We include OLE2.H because we will make calls to the COM/OLE libraries.
  44.   We include INITGUID.H only once (here) in the entire app because we
  45.     will be defining GUIDs and want them as constants in the data segment.
  46.   We include COMMDLG.H because we will be using the Open File and
  47.     potentially other Common dialogs.
  48.   We include APPUTIL.H because we will be building this application using
  49.     the convenient Virtual Window and Dialog classes and other
  50.     utility functions in the APPUTIL Library (ie, APPUTIL.LIB).
  51.   We include ICARS.H and CARGUIDS.H for the common car-related Interface
  52.     class, GUID, and CLSID specifications.
  53.   We include COMOBJ.H for the interface declarations and the import
  54.     prototypes for the service functions provided by COMOBJ.DLL.
  55.   We include COMUSER.H because it has class and resource definitions
  56.     specific to this COMUSER application.
  57. ---------------------------------------------------------------------------*/
  58. #include <windows.h>
  59. #include <ole2.h>
  60. #include <initguid.h>
  61. #include <commdlg.h>
  62. #include <apputil.h>
  63. #include <icars.h>
  64. #include <carguids.h>
  65. #include <comobj.h>
  66. #include "comuser.h"
  67. #include "utcrucar.h"
  68.  
  69.  
  70. // Here is a pointer for use by the global Trace Message logging macros.
  71. CMsgLog* g_pMsgLog = NULL;
  72.  
  73.  
  74. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  75.   Method:   CMainWindow::CMainWindow
  76.  
  77.   Summary:  CMainWindow Constructor.
  78.  
  79.   Args:     .
  80.  
  81.   Modifies: .
  82.  
  83.   Returns:  .
  84. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  85. CMainWindow::CMainWindow()
  86. {
  87.   // Ensure these member variable strings are null strings.
  88.   m_szFileName[0] = 0;
  89.   m_szFileTitle[0] = 0;
  90.  
  91.   // Fill in the Open File Name Common Dialog's OPENFILENAME structure.
  92.   m_ofnFile.lStructSize = sizeof(OPENFILENAME);
  93.   m_ofnFile.hwndOwner = m_hWnd;
  94.   m_ofnFile.hInstance = m_hInst;
  95.   m_ofnFile.lpstrFilter = TEXT(OFN_DEFAULTFILES_STR);
  96.   m_ofnFile.lpstrCustomFilter = NULL;
  97.   m_ofnFile.nMaxCustFilter = 0;
  98.   m_ofnFile.nFilterIndex = 1;
  99.   m_ofnFile.lpstrFile = m_szFileName;
  100.   m_ofnFile.nMaxFile = MAX_PATH;
  101.   m_ofnFile.lpstrInitialDir = TEXT(".");
  102.   m_ofnFile.lpstrFileTitle = m_szFileTitle;
  103.   m_ofnFile.nMaxFileTitle = MAX_PATH;
  104.   m_ofnFile.lpstrTitle = TEXT(OFN_DEFAULTTITLE_STR);
  105.   m_ofnFile.lpstrDefExt = NULL;
  106.   m_ofnFile.Flags = OFN_HIDEREADONLY;
  107.  
  108.   // Null the COM Object IUnknown pointers.
  109.   m_pCar = NULL;
  110.   m_pUtilityCar = NULL;
  111.   m_pCruiseCar = NULL;
  112.   m_pUtilityCruiseCar = NULL;
  113.  
  114.   // Null the Message object pointers.
  115.   m_pMsgBox = NULL;
  116.   m_pMsgLog = NULL;
  117. }
  118.  
  119.  
  120. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  121.   Method:   CMainWindow::~CMainWindow
  122.  
  123.   Summary:  CMainWindow Destructor.  Destruction of the main window
  124.             indicates that the application should quit and thus the
  125.             PostQuitMessage API is called.
  126.  
  127.   Args:     .
  128.  
  129.   Modifies: .
  130.  
  131.   Returns:  .
  132. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  133. CMainWindow::~CMainWindow()
  134. {
  135.   // CMainWindow is derived from CVirWindow which traps the WM_DESTROY
  136.   // message and causes a delete of CMainWindow which in turn causes this
  137.   // destructor to run. The WM_DESTROY results when the window is destoyed
  138.   // after a close of the window. Prior to exiting the main message loop:
  139.  
  140.   // We release any and all of the pointers to instantiated COM objects.
  141.   RELEASE_INTERFACE(m_pCar);
  142.   RELEASE_INTERFACE(m_pUtilityCar);
  143.   RELEASE_INTERFACE(m_pCruiseCar);
  144.   RELEASE_INTERFACE(m_pUtilityCruiseCar);
  145.  
  146.   // We delete the CMsgBox and CMsgLog objects that were made in
  147.   // Initinstance.
  148.   DELETE_POINTER(m_pMsgBox);
  149.   DELETE_POINTER(m_pMsgLog);
  150.  
  151.   // We then post a WM_QUIT message to cause an exit of the main thread's
  152.   // message loop and an exit of this instance of the application.
  153.   PostQuitMessage(0);
  154. }
  155.  
  156.  
  157. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  158.   Method:   CMainWindow::InitInstance
  159.  
  160.   Summary:  Instantiates an instance of the main application window.
  161.             This method must be called only once, immediately after
  162.             window class construction.  We take care to delete 'this'
  163.             CMainWindow if we must return the error condition FALSE.
  164.  
  165.   Args:     HINSTANCE hInstance,
  166.               Handle of the application instance.
  167.             int nCmdShow)
  168.               Command to pass to ShowWindow.
  169.  
  170.   Modifies: m_szHelpFile, m_pMsgBox, m_pMsgLog.
  171.  
  172.   Returns:  BOOL.
  173.               TRUE if succeeded.
  174.               FALSE if failed.
  175. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  176. BOOL CMainWindow::InitInstance(
  177.        HINSTANCE hInstance,
  178.        int nCmdShow)
  179. {
  180.   BOOL bResult = FALSE;
  181.   HWND hWnd;
  182.  
  183.   // Create the Message Box and Message Log objects.
  184.   m_pMsgBox = new CMsgBox;
  185.   m_pMsgLog = new CMsgLog;
  186.  
  187.   if (NULL != m_pMsgBox && NULL != m_pMsgLog)
  188.   {
  189.     // Note, the Create method sets the m_hWnd member so we don't
  190.     //   need to set it explicitly here first.
  191.  
  192.     // Here is the create of this window.  Size the window reasonably.
  193.     //   Create sets both m_hInst and m_hWnd.
  194.     hWnd = Create(
  195.              TEXT(MAIN_WINDOW_CLASS_NAME_STR),
  196.              TEXT(MAIN_WINDOW_TITLE_STR),
  197.              WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
  198.                | WS_MAXIMIZEBOX | WS_THICKFRAME,
  199.              CW_USEDEFAULT,
  200.              CW_USEDEFAULT,
  201.              ::GetSystemMetrics(SM_CXSCREEN)*3/5,
  202.              ::GetSystemMetrics(SM_CYSCREEN)*3/5,
  203.              NULL,
  204.              NULL,
  205.              hInstance);
  206.     if (hWnd)
  207.     {
  208.       // Ensure the new window is shown on screen and its content is painted.
  209.       ::ShowWindow(m_hWnd, nCmdShow);
  210.       ::UpdateWindow(m_hWnd);
  211.  
  212.       // Build a path to where the help file should be (it should be in
  213.       // the same directory as the .EXE but with the .HTM extension.
  214.       MakeFamilyPath(hInstance, m_szHelpFile, TEXT(HELP_FILE_EXT));
  215.  
  216.       // Init the Message Box object.
  217.       if (m_pMsgBox->Init(m_hInst, m_hWnd))
  218.       {
  219.         // Create the Trace Message Log ListBox as a child window that
  220.         //   fits the client area of the Main Window (the TRUE 3rd argument
  221.         //   specifies such an inside child).
  222.         // If you want the Trace Message Log in a separate (but owned)
  223.         //   window, then pass a FALSE instead for the 3rd argument.
  224.         if (m_pMsgLog->Create(m_hInst, m_hWnd, TRUE))
  225.         {
  226.           // Assign the global MsgLog pointer.
  227.           g_pMsgLog = m_pMsgLog;
  228.           // Use macro to log an initial start messsage.
  229.           LOGID(IDS_START_MESSAGE_LOG);
  230.           // Since we're exploiting the COMOBJ DLL and we want it to use
  231.           // this same Message Log facility, we pass it a pointer to our
  232.           // particular instance's CMsgLog object.
  233.           ComObjInitMsgLog(g_pMsgLog);
  234.           // Signal that we succeeded in initializing the app.
  235.           bResult = TRUE;
  236.         }
  237.       }
  238.     }
  239.   }
  240.  
  241.   if (!bResult)
  242.   {
  243.     DELETE_POINTER(m_pMsgBox);
  244.     DELETE_POINTER(m_pMsgLog);
  245.   }
  246.  
  247.   return (bResult);
  248. }
  249.  
  250.  
  251. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  252.   Method:   CMainWindow::GetInterface
  253.  
  254.   Summary:  Convenience method that wraps the QueryInterface call
  255.             and accepts a main COM object IUnknown pointer as an argument.
  256.  
  257.   Args:     IUnknown* pObj,
  258.               Pointer to the COM Object we are getting an interface on.
  259.             REFIID riid,
  260.               The GUID for the interface that we are seeking.
  261.             PPVOID ppv);
  262.               Address of the caller's pointer variable that will
  263.               receive the requested interface pointer.
  264.  
  265.   Modifies: .
  266.  
  267.   Returns:  BOOL.
  268.               TRUE if succeeded.
  269.               FALSE if failed.
  270. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  271. BOOL CMainWindow::GetInterface(
  272.        IUnknown* pObj,
  273.        REFIID riid,
  274.        PPVOID ppv)
  275. {
  276.   BOOL bResult = FALSE;
  277.   HRESULT hr;
  278.  
  279.   *ppv=NULL;
  280.  
  281.   if (NULL != pObj)
  282.   {
  283.     LOG("E: --Obtaining Interface Pointer.");
  284.     hr=pObj->QueryInterface(riid, ppv);
  285.  
  286.     if (FAILED(hr))
  287.     {
  288.       LOGERROR("C: ???? QueryInterface", hr);
  289.     }
  290.     else
  291.     {
  292.       LOGF1("E: Interface obtained. *ppv=0x%X", *ppv);
  293.       bResult = TRUE;
  294.     }
  295.   }
  296.   else
  297.   {
  298.     LOG("E: ???? Create an object first.");
  299.   }
  300.  
  301.   return (bResult);
  302. }
  303.  
  304.  
  305. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  306.   Method:   CMainWindow::DoMenu
  307.  
  308.   Summary:  Dispatch and handle the main menu commands.
  309.  
  310.   Args:     WPARAM wParam,
  311.               First message parameter (word sized).
  312.             LPARAM lParam)
  313.               Second message parameter (long sized).
  314.  
  315.   Modifies: m_ofnFile, ...
  316.  
  317.   Returns:  LRESULT
  318.               Standard Windows WindowProc return value.
  319. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  320. LRESULT CMainWindow::DoMenu(
  321.           WPARAM wParam,
  322.           LPARAM lParam)
  323. {
  324.   LRESULT lResult = FALSE;
  325.   HRESULT hr;
  326.   HMENU hMenu  = ::GetMenu(m_hWnd);
  327.   // Here are some interface pointers used to call methods on
  328.   // our COUtilityCar, COCruiseCar, and COUtilityCruiseCar COM objects.
  329.   ICar* pICar;
  330.   IUtility* pIUtility;
  331.   ICruise* pICruise;
  332.  
  333.   switch (LOWORD(wParam))
  334.   {
  335.     //----------------------------------------------------------------------
  336.     // Handle File Menu Commands.
  337.     //----------------------------------------------------------------------
  338.     case IDM_FILE_EXIT:
  339.       // The user commands us to exit this application so we tell the
  340.       // Main window to close itself.
  341.       ::PostMessage(m_hWnd, WM_CLOSE, 0, 0);
  342.       break;
  343.  
  344.     //----------------------------------------------------------------------
  345.     // Handle Car Menu Commands.
  346.     //----------------------------------------------------------------------
  347.     case IDM_CAR_CREATE:
  348.       LOG("E: === Car Menu: Create.");
  349.       if (NULL == m_pCar)
  350.       {
  351.         hr = CreateCar(NULL, IID_IUnknown, (PPVOID)&m_pCar);
  352.         if (SUCCEEDED(hr))
  353.         {
  354.           ::CheckMenuItem(
  355.               hMenu,
  356.               IDM_CAR_CREATE,
  357.               MF_BYCOMMAND | MF_CHECKED);
  358.         }
  359.         else
  360.           LOG("C: ???? Car creation failed.");
  361.       }
  362.       else
  363.         LOG("E: ???? Car already exists.");
  364.       break;
  365.     case IDM_CAR_RELEASE:
  366.       LOG("E: === Car Menu: Release.");
  367.       if (NULL != m_pCar)
  368.       {
  369.         RELEASE_INTERFACE(m_pCar);
  370.         ::CheckMenuItem(
  371.             hMenu,
  372.             IDM_CAR_CREATE,
  373.             MF_BYCOMMAND | MF_UNCHECKED);
  374.       }
  375.       else
  376.         LOG("E: ???? No Car to Release.");
  377.       break;
  378.     case IDM_CAR_SHIFT:
  379.       LOG("E: === Car Menu: ICar::Shift");
  380.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  381.       {
  382.         LOG("E: --Calling pICar->Shift");
  383.         pICar->Shift(1);
  384.         LOG("E: --Releasing pICar");
  385.         pICar->Release();
  386.       }
  387.       break;
  388.     case IDM_CAR_CLUTCH:
  389.       LOG("E: === Car Menu: ICar::Clutch");
  390.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  391.       {
  392.         LOG("E: --Calling pICar->Clutch");
  393.         pICar->Clutch(100);
  394.         LOG("E: --Releasing pICar");
  395.         pICar->Release();
  396.       }
  397.       break;
  398.     case IDM_CAR_SPEED:
  399.       LOG("E: === Car Menu: ICar::Speed");
  400.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  401.       {
  402.         LOG("E: --Calling pICar->Speed");
  403.         pICar->Speed(20);
  404.         LOG("E: --Releasing pICar");
  405.         pICar->Release();
  406.       }
  407.       break;
  408.     case IDM_CAR_STEER:
  409.       LOG("E: === Car Menu: ICar::Steer");
  410.       if (GetInterface(m_pCar, IID_ICar, (PPVOID)&pICar))
  411.       {
  412.         LOG("E: --Calling pICar->Steer");
  413.         pICar->Steer(0);
  414.         LOG("E: --Releasing pICar");
  415.         pICar->Release();
  416.       }
  417.       break;
  418.  
  419.     //----------------------------------------------------------------------
  420.     // Handle UtilityCar Menu Commands.
  421.     //----------------------------------------------------------------------
  422.     case IDM_UCAR_CREATE:
  423.       LOG("E: === UtilityCar Menu: Create.");
  424.       if (NULL == m_pUtilityCar)
  425.       {
  426.         hr = CreateUtilityCar(NULL, IID_IUnknown, (PPVOID)&m_pUtilityCar);
  427.         if (SUCCEEDED(hr))
  428.         {
  429.           ::CheckMenuItem(
  430.               hMenu,
  431.               IDM_UCAR_CREATE,
  432.               MF_BYCOMMAND | MF_CHECKED);
  433.         }
  434.         else
  435.           LOG("C: ???? UtilityCar creation failed.");
  436.       }
  437.       else
  438.         LOG("E: ???? UtilityCar already exists.");
  439.       break;
  440.     case IDM_UCAR_RELEASE:
  441.       LOG("E: === UtilityCar Menu: Release.");
  442.       if (NULL != m_pUtilityCar)
  443.       {
  444.         RELEASE_INTERFACE(m_pUtilityCar);
  445.         ::CheckMenuItem(
  446.             hMenu,
  447.             IDM_UCAR_CREATE,
  448.             MF_BYCOMMAND | MF_UNCHECKED);
  449.       }
  450.       else
  451.         LOG("E: ???? No UtilityCar to Release.");
  452.       break;
  453.     case IDM_UCAR_SHIFT:
  454.       LOG("E: === UtilityCar Menu: ICar::Shift");
  455.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  456.       {
  457.         LOG("E: --Calling pICar->Shift");
  458.         pICar->Shift(2);
  459.         LOG("E: --Releasing pICar");
  460.         pICar->Release();
  461.       }
  462.       break;
  463.     case IDM_UCAR_CLUTCH:
  464.       LOG("E: === UtilityCar Menu: ICar::Clutch");
  465.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  466.       {
  467.         LOG("E: --Calling pICar->Clutch");
  468.         pICar->Clutch(100);
  469.         LOG("E: --Releasing pICar");
  470.         pICar->Release();
  471.       }
  472.       break;
  473.     case IDM_UCAR_SPEED:
  474.       LOG("E: === UtilityCar Menu: ICar::Speed");
  475.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  476.       {
  477.         LOG("E: --Calling pICar->Speed");
  478.         pICar->Speed(30);
  479.         LOG("E: --Releasing pICar");
  480.         pICar->Release();
  481.       }
  482.       break;
  483.     case IDM_UCAR_STEER:
  484.       LOG("E: === UtilityCar Menu: ICar::Steer");
  485.       if (GetInterface(m_pUtilityCar, IID_ICar, (PPVOID)&pICar))
  486.       {
  487.         LOG("E: --Calling pICar->Steer");
  488.         pICar->Steer(10);
  489.         LOG("E: --Releasing pICar");
  490.         pICar->Release();
  491.       }
  492.       break;
  493.     case IDM_UCAR_OFFROAD:
  494.       LOG("E: === UtilityCar Menu: IUtility::Offroad");
  495.       if (GetInterface(m_pUtilityCar, IID_IUtility, (PPVOID)&pIUtility))
  496.       {
  497.         LOG("E: --Calling pIUtility->Offroad");
  498.         pIUtility->Offroad(1);
  499.         LOG("E: --Releasing pIUtility");
  500.         pIUtility->Release();
  501.       }
  502.       break;
  503.     case IDM_UCAR_WINCH:
  504.       LOG("E: === UtilityCar Menu: IUtility::Winch");
  505.       if (GetInterface(m_pUtilityCar, IID_IUtility, (PPVOID)&pIUtility))
  506.       {
  507.         LOG("E: --Calling pIUtility->Winch");
  508.         pIUtility->Winch(0);
  509.         LOG("E: --Releasing pIUtility");
  510.         pIUtility->Release();
  511.       }
  512.       break;
  513.  
  514.     //----------------------------------------------------------------------
  515.     // Handle CruiseCar Menu Commands.
  516.     //----------------------------------------------------------------------
  517.     case IDM_CCAR_CREATE:
  518.       LOG("E: === CruiseCar Menu: Create.");
  519.       if (NULL == m_pCruiseCar)
  520.       {
  521.         hr = CreateCruiseCar(NULL, IID_IUnknown, (PPVOID)&m_pCruiseCar);
  522.         if (SUCCEEDED(hr))
  523.         {
  524.           ::CheckMenuItem(
  525.               hMenu,
  526.               IDM_CCAR_CREATE,
  527.               MF_BYCOMMAND | MF_CHECKED);
  528.         }
  529.         else
  530.           LOG("C: ???? CruiseCar creation failed.");
  531.       }
  532.       else
  533.         LOG("E: ???? CruiseCar already exists.");
  534.       break;
  535.     case IDM_CCAR_RELEASE:
  536.       LOG("E: === CruiseCar Menu: Release.");
  537.       if (NULL != m_pCruiseCar)
  538.       {
  539.         RELEASE_INTERFACE(m_pCruiseCar);
  540.         ::CheckMenuItem(
  541.             hMenu,
  542.             IDM_CCAR_CREATE,
  543.             MF_BYCOMMAND | MF_UNCHECKED);
  544.       }
  545.       else
  546.         LOG("E: ???? No CruiseCar to Release.");
  547.       break;
  548.     case IDM_CCAR_SHIFT:
  549.       LOG("E: === CruiseCar Menu: ICar::Shift");
  550.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  551.       {
  552.         LOG("E: --Calling pICar->Shift");
  553.         pICar->Shift(4);
  554.         LOG("E: --Releasing pICar");
  555.         pICar->Release();
  556.       }
  557.       break;
  558.     case IDM_CCAR_CLUTCH:
  559.       LOG("E: === CruiseCar Menu: ICar::Clutch");
  560.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  561.       {
  562.         LOG("E: --Calling pICar->Clutch");
  563.         pICar->Clutch(100);
  564.         LOG("E: --Releasing pICar");
  565.         pICar->Release();
  566.       }
  567.       break;
  568.     case IDM_CCAR_SPEED:
  569.       LOG("E: === CruiseCar Menu: ICar::Speed");
  570.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  571.       {
  572.         LOG("E: --Calling pICar->Speed");
  573.         pICar->Speed(60);
  574.         LOG("E: --Releasing pICar");
  575.         pICar->Release();
  576.       }
  577.       break;
  578.     case IDM_CCAR_STEER:
  579.       LOG("E: === CruiseCar Menu: ICar::Steer");
  580.       if (GetInterface(m_pCruiseCar, IID_ICar, (PPVOID)&pICar))
  581.       {
  582.         LOG("E: --Calling pICar->Steer");
  583.         pICar->Steer(0);
  584.         LOG("E: --Releasing pICar");
  585.         pICar->Release();
  586.       }
  587.       break;
  588.     case IDM_CCAR_ENGAGE:
  589.       LOG("E: === CruiseCar Menu: ICruise::Engage");
  590.       if (GetInterface(m_pCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  591.       {
  592.         LOG("E: --Calling pICruise->Engage");
  593.         pICruise->Engage(TRUE);
  594.         LOG("E: --Releasing pICruise");
  595.         pICruise->Release();
  596.       }
  597.       break;
  598.     case IDM_CCAR_ADJUST:
  599.       LOG("E: === CruiseCar Menu: ICruise::Adjust");
  600.       if (GetInterface(m_pCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  601.       {
  602.         LOG("E: --Calling pICruise->Adjust");
  603.         pICruise->Adjust(FALSE);
  604.         LOG("E: --Releasing pICruise");
  605.         pICruise->Release();
  606.       }
  607.       break;
  608.  
  609.     //----------------------------------------------------------------------
  610.     // Handle UtilityCruiseCar Menu Commands.
  611.     //----------------------------------------------------------------------
  612.     case IDM_UCRU_CREATE:
  613.       LOG("E: === UtilityCruiseCar Menu: Create.");
  614.       if (NULL == m_pUtilityCruiseCar)
  615.       {
  616.         hr = CreateUtilityCruiseCar(
  617.                NULL,
  618.                IID_IUnknown,
  619.                (PPVOID)&m_pUtilityCruiseCar);
  620.         if (SUCCEEDED(hr))
  621.         {
  622.           ::CheckMenuItem(
  623.               hMenu,
  624.               IDM_UCRU_CREATE,
  625.               MF_BYCOMMAND | MF_CHECKED);
  626.         }
  627.         else
  628.           LOG("C: ???? UtilityCruiseCar creation failed.");
  629.       }
  630.       else
  631.         LOG("E: ???? UtilityCruiseCar already exists.");
  632.       break;
  633.     case IDM_UCRU_RELEASE:
  634.       LOG("E: === UtilityCruiseCar Menu: Release.");
  635.       if (NULL != m_pUtilityCruiseCar)
  636.       {
  637.         RELEASE_INTERFACE(m_pUtilityCruiseCar);
  638.         ::CheckMenuItem(
  639.             hMenu,
  640.             IDM_UCRU_CREATE,
  641.             MF_BYCOMMAND | MF_UNCHECKED);
  642.       }
  643.       else
  644.         LOG("E: ???? No UtilityCruiseCar to Release.");
  645.       break;
  646.     case IDM_UCRU_SHIFT:
  647.       LOG("E: === UtilityCruiseCar Menu: ICar::Shift");
  648.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  649.       {
  650.         LOG("E: --Calling pICar->Shift");
  651.         pICar->Shift(1);
  652.         LOG("E: --Releasing pICar");
  653.         pICar->Release();
  654.       }
  655.       break;
  656.     case IDM_UCRU_CLUTCH:
  657.       LOG("E: === UtilityCruiseCar Menu: ICar::Clutch");
  658.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  659.       {
  660.         LOG("E: --Calling pICar->Clutch");
  661.         pICar->Clutch(80);
  662.         LOG("E: --Releasing pICar");
  663.         pICar->Release();
  664.       }
  665.       break;
  666.     case IDM_UCRU_SPEED:
  667.       LOG("E: === UtilityCruiseCar Menu: ICar::Speed");
  668.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  669.       {
  670.         LOG("E: --Calling pICar->Speed");
  671.         pICar->Speed(10);
  672.         LOG("E: --Releasing pICar");
  673.         pICar->Release();
  674.       }
  675.       break;
  676.     case IDM_UCRU_STEER:
  677.       LOG("E: === UtilityCruiseCar Menu: ICar::Steer");
  678.       if (GetInterface(m_pUtilityCruiseCar, IID_ICar, (PPVOID)&pICar))
  679.       {
  680.         LOG("E: --Calling pICar->Steer");
  681.         pICar->Steer(10);
  682.         LOG("E: --Releasing pICar");
  683.         pICar->Release();
  684.       }
  685.       break;
  686.     case IDM_UCRU_ENGAGE:
  687.       LOG("E: === UtilityCruiseCar Menu: ICruise::Engage");
  688.       if (GetInterface(m_pUtilityCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  689.       {
  690.         LOG("E: --Calling pICruise->Engage");
  691.         pICruise->Engage(FALSE);
  692.         LOG("E: --Releasing pICruise");
  693.         pICruise->Release();
  694.       }
  695.       break;
  696.     case IDM_UCRU_ADJUST:
  697.       LOG("E: === UtilityCruiseCar Menu: ICruise::Adjust");
  698.       if (GetInterface(m_pUtilityCruiseCar, IID_ICruise, (PPVOID)&pICruise))
  699.       {
  700.         LOG("E: --Calling pICruise->Adjust");
  701.         pICruise->Adjust(FALSE);
  702.         LOG("E: --Releasing pICruise");
  703.         pICruise->Release();
  704.       }
  705.       break;
  706.     case IDM_UCRU_OFFROAD:
  707.       LOG("E: === UtilityCruiseCar Menu: IUtility::Offroad");
  708.       if (GetInterface(m_pUtilityCruiseCar, IID_IUtility, (PPVOID)&pIUtility))
  709.       {
  710.         LOG("E: --Calling pIUtility->Offroad");
  711.         pIUtility->Offroad(3);
  712.         LOG("E: --Releasing pIUtility");
  713.         pIUtility->Release();
  714.       }
  715.       break;
  716.     case IDM_UCRU_WINCH:
  717.       LOG("E: === UtilityCruiseCar Menu: IUtility::Winch");
  718.       if (GetInterface(m_pUtilityCruiseCar, IID_IUtility, (PPVOID)&pIUtility))
  719.       {
  720.         LOG("E: --Calling pIUtility->Winch");
  721.         pIUtility->Winch(0);
  722.         LOG("E: --Releasing pIUtility");
  723.         pIUtility->Release();
  724.       }
  725.       break;
  726.  
  727.     //----------------------------------------------------------------------
  728.     // Handle Log Menu Commands.
  729.     //----------------------------------------------------------------------
  730.     case IDM_LOG_LOGCLEAR:
  731.       // Clear the message log.
  732.       m_pMsgLog->Clear();
  733.       // Use macro to log messages.
  734.       LOGID(IDS_START_MESSAGE_LOG);
  735.       break;
  736.     case IDM_LOG_LOGGING:
  737.       // Toggle the state of the Message Logging.
  738.       // Toggle the checkmark indicator on the menu selection as well.
  739.       {
  740.         HMENU hMenu  = ::GetMenu(m_hWnd);
  741.         BOOL bLogging = ::GetMenuState(
  742.                             hMenu,
  743.                             IDM_LOG_LOGGING,
  744.                             MF_BYCOMMAND) & MF_CHECKED;
  745.         if (bLogging)
  746.         {
  747.           m_pMsgLog->Logging(FALSE);
  748.           ::CheckMenuItem(
  749.               hMenu,
  750.               IDM_LOG_LOGGING,
  751.               MF_BYCOMMAND | MF_UNCHECKED);
  752.         }
  753.         else
  754.         {
  755.           m_pMsgLog->Logging(TRUE);
  756.           ::CheckMenuItem(
  757.               hMenu,
  758.               IDM_LOG_LOGGING,
  759.               MF_BYCOMMAND | MF_CHECKED);
  760.         }
  761.       }
  762.       break;
  763.     case IDM_LOG_COPYCLIP:
  764.       // Copy trace message log to clipboard.
  765.       m_pMsgLog->Copy();
  766.       break;
  767.  
  768.     //----------------------------------------------------------------------
  769.     // Handle Help Menu Commands.
  770.     //----------------------------------------------------------------------
  771.     case IDM_HELP_CONTENTS:
  772.       // We have some stubbed support here for bringing up the online
  773.       // Help for this application.
  774.       ReadHelp(m_hWnd, m_szHelpFile);
  775.       break;
  776.     case IDM_HELP_TUTORIAL:
  777.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  778.       // tutorial narrative file associated with this tutorial code sample.
  779.       ReadTutorial(m_hInst, m_hWnd, TEXT(HTML_FILE_EXT));
  780.       break;
  781.     case IDM_HELP_TUTDLL:
  782.       // Call the APPUTIL utility function, ReadTutorial, to Browse the HTML
  783.       // tutorial narrative file associated with the DLL server.
  784.       ReadTutorial(m_hInst, m_hWnd, TEXT(DLL_TUTFILE_STR));
  785.       break;
  786.     case IDM_HELP_READSOURCE:
  787.       // Call the APPUTIL utility function ReadSource to allow the
  788.       // user to open and read any of the source files of COMUSER.
  789.       ReadSource(m_hWnd, &m_ofnFile);
  790.       break;
  791.     case IDM_HELP_ABOUT:
  792.       {
  793.         CAboutBox dlgAboutBox;
  794.  
  795.         // Show the standard About Box dialog for this EXE by telling the
  796.         // dialog C++ object to show itself by invoking its ShowDialog
  797.         // method.  Pass it this EXE instance and the parent window handle.
  798.         // Use a dialog resource ID for the dialog template stored in
  799.         // this EXE module's resources.
  800.         dlgAboutBox.ShowDialog(
  801.           m_hInst,
  802.           MAKEINTRESOURCE(IDM_HELP_ABOUT),
  803.           m_hWnd);
  804.       }
  805.       break;
  806.     case IDM_HELP_ABOUTDLL:
  807.       // Call the COMOBJ DLL to show the DLL's About Box.
  808.       ::ComObjAboutBox(m_hWnd);
  809.       break;
  810.  
  811.     default:
  812.       // Defer all messages NOT handled here to the Default Window Proc.
  813.       lResult = ::DefWindowProc(m_hWnd, WM_COMMAND, wParam, lParam);
  814.       break;
  815.   }
  816.  
  817.   return(lResult);
  818. }
  819.  
  820.  
  821. /*M+M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M+++M
  822.   Method:   CMainWindow::WindowProc
  823.  
  824.   Summary:  Main window procedure for this window object.  See CVirWindow
  825.             in the APPUTIL library (APPUTIL.CPP) for details on how this
  826.             method gets called by the global WindowProc.
  827.  
  828.   Args:     UINT uMsg,
  829.               Windows message that is "sent" to this window.
  830.             WPARAM wParam,
  831.               First message parameter (word sized).
  832.             LPARAM lParam)
  833.               Second message parameter (long sized).
  834.  
  835.   Modifies: ...
  836.  
  837.   Returns:  LRESULT
  838.               Standard Windows WindowProc return value.
  839. M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M---M-M*/
  840. LRESULT CMainWindow::WindowProc(
  841.           UINT uMsg,
  842.           WPARAM wParam,
  843.           LPARAM lParam)
  844. {
  845.   LRESULT lResult = FALSE;
  846.  
  847.   switch (uMsg)
  848.   {
  849.     case WM_CREATE:
  850.       {
  851.         // Setup for painting text in this window.
  852.         HDC hdc = GetDC(m_hWnd);
  853.         ::GetTextMetrics(hdc, &m_tm);
  854.         ::ReleaseDC(m_hWnd, hdc);
  855.       }
  856.       break;
  857.  
  858.     case WM_MEASUREITEM:
  859.       // Get setup for painting text in this window.
  860.       {
  861.         LPMEASUREITEMSTRUCT lpmis = (LPMEASUREITEMSTRUCT) lParam;
  862.         lpmis->itemHeight = m_tm.tmHeight + m_tm.tmExternalLeading;
  863.         lpmis->itemWidth = m_wWidth;
  864.         lResult = TRUE;
  865.       }
  866.  
  867.     case WM_SIZE:
  868.       // Handle a resize of this window.
  869.       m_wWidth = LOWORD(lParam);
  870.       m_wHeight = HIWORD(lParam);
  871.       // Resize the Message Log ListBox
  872.       m_pMsgLog->Resize(m_wWidth, m_wHeight);
  873.       break;
  874.  
  875.     case WM_COMMAND:
  876.       // Dispatch and handle any Menu command messages received.
  877.       lResult = DoMenu(wParam, lParam);
  878.       break;
  879.  
  880.     case WM_CLOSE:
  881.       // The user selected Close on the main window's System menu
  882.       // or Exit on the File menu.
  883.     case WM_QUIT:
  884.       // If the app is being quit then close any associated help windows.
  885.     default:
  886.       // Defer all messages NOT handled here to the Default Window Proc.
  887.       lResult = ::DefWindowProc(m_hWnd, uMsg, wParam, lParam);
  888.       break;
  889.   }
  890.  
  891.   return(lResult);
  892. }
  893.  
  894.  
  895. /*F+F++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  896.   Function: UnicodeOk
  897.  
  898.   Summary:  Checks if the platform will handle unicode versions of
  899.             Win32 string API calls.
  900.  
  901.   Args:     void
  902.  
  903.   Returns:  BOOL
  904.               TRUE if unicode support; FALSE if not.
  905. ------------------------------------------------------------------------F-F*/
  906. BOOL UnicodeOk(void)
  907. {
  908.   BOOL bOk = TRUE;
  909.   TCHAR szUserName[MAX_STRING_LENGTH];
  910.   DWORD dwSize = MAX_STRING_LENGTH;
  911.  
  912.   if (!GetUserName(szUserName, &dwSize))
  913.     bOk = ERROR_CALL_NOT_IMPLEMENTED == GetLastError() ? FALSE : TRUE;
  914.  
  915.   return bOk;
  916. }
  917.  
  918.  
  919. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  920.   Function: InitApplication
  921.  
  922.   Summary:  Initializes the application and registers its main window
  923.             class. InitApplication is called only once (in WinMain).
  924.  
  925.   Args:     HINSTANCE hInstance)
  926.               Handle to the first instance of the application.
  927.  
  928.   Returns:  BOOL.
  929.               TRUE if success.
  930.               FALSE if fail.
  931. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  932. BOOL InitApplication(
  933.        HINSTANCE hInstance)
  934. {
  935.   BOOL bOk;
  936.   // The window class for all instances of the main frame window.
  937.   WNDCLASSEX wcf;
  938.  
  939.   // Assign the appropriate values for this main frame window class.
  940.   wcf.cbSize        = sizeof(WNDCLASSEX);
  941.   wcf.cbClsExtra    = 0;            // No per-class extra data.
  942.   wcf.cbWndExtra    = 0;            // No per-window extra data.
  943.   wcf.hInstance     = hInstance;    // Application module instance.
  944.   wcf.lpfnWndProc   = &WindowProc;  // Global Window Procedure (defined in
  945.                                     // APPUTIL for all CVirWindows).
  946.   wcf.hCursor       = LoadCursor(NULL, IDC_ARROW); // Load app cursor.
  947.   wcf.hIcon         = (HICON) LoadIcon(            // Load app icon.
  948.                                 hInstance,
  949.                                 TEXT("AppIcon"));
  950.   wcf.hIconSm       = (HICON) LoadImage(           // Load small icon.
  951.                                 hInstance,
  952.                                 TEXT("AppIcon"),
  953.                                 IMAGE_ICON,
  954.                                 16, 16,
  955.                                 0);
  956.   wcf.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);  // Default backgnd color.
  957.   wcf.style         = CS_HREDRAW | CS_VREDRAW;     // Class style(s).
  958.   wcf.lpszClassName = TEXT(MAIN_WINDOW_CLASS_NAME_STR); // Class name.
  959.   wcf.lpszMenuName  = TEXT(MAIN_WINDOW_CLASS_MENU_STR); // Menu name.
  960.  
  961.   // Register the window class and return FALSE if unsuccesful.
  962.   bOk = RegisterClassEx(&wcf);
  963.  
  964.   return (bOk);
  965. }
  966.  
  967.  
  968. /*F+F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F+++F
  969.   Function: WinMain
  970.  
  971.   Summary:  The Windows main entry point function for this application.
  972.             Initializes the application, the COM Libraries, and starts
  973.             the main application message loop.
  974.  
  975.   Args:     HINSTANCE hInstance,
  976.               Instance handle; a new one for each invocation of this app.
  977.             HINSTANCE hPrevInstance,
  978.               Instance handle of the previous instance. NULL in Win32.
  979.             LPSTR lpCmdLine,
  980.               Windows passes a pointer to the application's
  981.               invocation command line.
  982.             int nCmdShow)
  983.               Bits telling the show state of the application.
  984.  
  985.   Returns:  int
  986.               msg.wParam (upon exit of message loop).
  987.               FALSE if this instance couldn't initialize and run.
  988. F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F---F-F*/
  989. extern "C" int PASCAL WinMain(
  990.                         HINSTANCE hInstance,
  991.                         HINSTANCE hPrevInstance,
  992.                         LPSTR lpCmdLine,
  993.                         int nCmdShow)
  994. {
  995.   CMainWindow* pWin = NULL;
  996.   MSG msg;
  997.   HACCEL hAccel;
  998.   int iRun = FALSE;
  999.  
  1000.   // If we were compiled for UNICODE and the platform seems OK with this
  1001.   // then proceed.  Else we error and exit the app.
  1002.   if (UnicodeOk())
  1003.   {
  1004.     // Call to initialize the COM Library.  Use the SUCCEEDED macro
  1005.     // to detect success.  If fail then exit app with error message.
  1006.     if (SUCCEEDED(CoInitialize(NULL)))
  1007.     {
  1008.       // If we succeeded in initializing the COM Library we proceed to
  1009.       // initialize the application.  If we can't init the application
  1010.       // then we signal shut down with an error message exit.
  1011.       iRun = InitApplication(hInstance);
  1012.  
  1013.       if (iRun)
  1014.       {
  1015.         // Assume we'll set iRun to TRUE when initialization is done.
  1016.         iRun = FALSE;
  1017.         // We are still go for running so we try to create a nifty new
  1018.         // CMainWindow object for this app instance.
  1019.         pWin = new CMainWindow;
  1020.         if (NULL != pWin)
  1021.         {
  1022.           // Now we initialize an instance of the new CMainWindow.
  1023.           // This includes creating the main window.
  1024.           if (pWin->InitInstance(hInstance, nCmdShow))
  1025.           {
  1026.             // Load the keyboard accelerators from the resources.
  1027.             hAccel = LoadAccelerators(hInstance, TEXT("AppAccel"));
  1028.             if (NULL != hAccel)
  1029.             {
  1030.               // Signal App Initialization is successfully done.
  1031.               iRun = TRUE;
  1032.             }
  1033.           }
  1034.         }
  1035.       }
  1036.  
  1037.       if (iRun)
  1038.       {
  1039.         // If we initialized the app instance properly then we are still
  1040.         // go for running.  We then start up the main message pump for
  1041.         // the application.
  1042.         while (GetMessage(&msg, NULL, 0, 0))
  1043.         {
  1044.           if (!TranslateAccelerator(
  1045.                  pWin->GetHwnd(),
  1046.                  hAccel,
  1047.                  &msg))
  1048.           {
  1049.             TranslateMessage(&msg);
  1050.             DispatchMessage(&msg);
  1051.           }
  1052.         }
  1053.  
  1054.         // We'll pass to Windows the reason why we exited the message loop.
  1055.         iRun = msg.wParam;
  1056.       }
  1057.       else
  1058.       {
  1059.         // We failed to initialize the application. Put up error message
  1060.         // box saying that application couldn't be initialized.  Parent
  1061.         // window is desktop (ie, NULL). Exit the failed application
  1062.         // (ie, by returning FALSE to WinMain).
  1063.         ErrorBox(hInstance, NULL, IDS_APPINITFAILED);
  1064.  
  1065.         // Delete the CMainWindow object.
  1066.         DELETE_POINTER(pWin);
  1067.       }
  1068.  
  1069.       // We're exiting this app (either normally or by init failure) so
  1070.       // shut down the COM Library.
  1071.       CoUninitialize();
  1072.     }
  1073.     else
  1074.     {
  1075.       // We failed to Initialize the COM Library. Put up error message box
  1076.       // saying that COM Library couldn't be initialized.  Parent window
  1077.       // is desktop (ie, NULL). Exit the failed application (ie, by
  1078.       // returning FALSE to WinMain).
  1079.       ErrorBox(hInstance, NULL, IDS_COMINITFAILED);
  1080.     }
  1081.   }
  1082.   else
  1083.   {
  1084.     // If we were compiled for UNICODE but the platform has problems with
  1085.     // this then indicate an error and exit the app immediately.
  1086.     CHAR szMsg[MAX_STRING_LENGTH];
  1087.  
  1088.     if (LoadStringA(
  1089.           hInstance,
  1090.           IDS_UNICODEFAIL,
  1091.           szMsg,
  1092.           MAX_STRING_LENGTH))
  1093.     {
  1094.       MessageBoxA(
  1095.         NULL,
  1096.         szMsg,
  1097.         ERROR_TITLE_STR,
  1098.         MB_OK | MB_ICONEXCLAMATION);
  1099.     }
  1100.   }
  1101.  
  1102.   return iRun;
  1103. }
  1104.