home *** CD-ROM | disk | FTP | other *** search
/ Learn 3D Graphics Programming on the PC / Learn_3D_Graphics_Programming_on_the_PC_Ferraro.iso / rwwin / rwwalk.rc_ / rwwalk.bin
Text File  |  1995-11-14  |  3KB  |  72 lines

  1. /**********************************************************************
  2.  *
  3.  * File :     rwwalk.rc
  4.  *
  5.  * Abstract : RenderWare Walkthrough demo. Resource definitions
  6.  *
  7.  **********************************************************************
  8.  *
  9.  * This file is a product of Criterion Software Ltd.
  10.  *
  11.  * This file is provided as is with no warranties of any kind and is
  12.  * provided without any obligation on Criterion Software Ltd. or
  13.  * Canon Inc. to assist in its use or modification.
  14.  *
  15.  * Criterion Software Ltd. will not, under any
  16.  * circumstances, be liable for any lost revenue or other damages arising
  17.  * from the use of this file.
  18.  *
  19.  * Copyright (c) 1995 Criterion Software Ltd.
  20.  * All Rights Reserved.
  21.  *
  22.  * RenderWare is a trademark of Canon Inc.
  23.  *
  24.  ************************************************************************/
  25. #include "windows.h"
  26. #include "resource.h"
  27.  
  28. RW_ICON                 ICON    DISCARDABLE     "RW.ICO"
  29.  
  30. FILE_MENU MENU DISCARDABLE 
  31. BEGIN
  32.     POPUP "&File"
  33.     BEGIN
  34.         MENUITEM "&Exit",                       CM_FILEEXIT
  35.     END
  36.     POPUP "&Help", HELP
  37.     BEGIN
  38.         MENUITEM "&About",                      CM_HELPABOUT
  39.     END
  40. END
  41.  
  42.  
  43. CRITERION_LOGO          BITMAP  MOVEABLE PURE   "RWLOGO.BMP"
  44.  
  45.  
  46. ABOUT DIALOG DISCARDABLE  29, 16, 271, 181
  47. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  48. CAPTION "Walkthrough Help"
  49. FONT 8, "System"
  50. BEGIN
  51.     LTEXT           "Welcome to Renderware(tm). ",-1,131,9,96,11
  52.     CTEXT           "This application demonstrates the use of RenderWare in a Virtual Reality application. Move around the world and interact with the objects in it.",
  53.                     -1,122,32,135,38
  54.     LTEXT           "As for Shift Left but up and down movement also moves the camera back and forwards.",
  55.                     -1,55,120,205,20
  56.     LTEXT           "Interact with world (ie open cupboard doors etc).",-1,
  57.                     55,155,160,9
  58.     CTEXT           "Mouse Buttons",-1,85,80,84,10
  59.     LTEXT           "Left",-1,15,120,18,10
  60.     LTEXT           "Right",-1,15,155,25,9
  61.     CONTROL         "",-1,"Static",SS_BLACKFRAME,5,90,260,80
  62.     CONTROL         "",2,"Button",BS_OWNERDRAW,4,3,116,73
  63.     LTEXT           "Shift Left",-1,15,95,30,8
  64.     LTEXT           "Rotate the camera by moving the mouse left and right. The speed of rotation is controlled by the distance from the centre of the viewport.",
  65.                     -1,55,95,200,25
  66.     LTEXT           "CTRL Left",-1,15,140,35,8
  67.     LTEXT           "Tilt Camera.",-1,55,140,60,8
  68.     DEFPUSHBUTTON   "OK",1,232,7,32,14,WS_GROUP
  69. END
  70.  
  71.  
  72.