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

  1. /**********************************************************************
  2.  *
  3.  * File :     rwsim.rc
  4.  *
  5.  * Abstract : RenderWare N body simulation 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 "&Track"
  37.     BEGIN
  38.         MENUITEM "0",                           CM_TRACK0
  39.         MENUITEM "1",                           CM_TRACK1
  40.         MENUITEM "2",                           CM_TRACK2
  41.         MENUITEM "3",                           CM_TRACK3
  42.         MENUITEM "4",                           CM_TRACK4
  43.         MENUITEM "5",                           CM_TRACK5
  44.         MENUITEM "6",                           CM_TRACK6
  45.         MENUITEM "7",                           CM_TRACK7
  46.         MENUITEM "8",                           CM_TRACK8
  47.         MENUITEM "9",                           CM_TRACK9
  48.     END
  49.     POPUP "&Help", HELP
  50.     BEGIN
  51.         MENUITEM "&About",                      CM_HELPABOUT
  52.     END
  53. END
  54.  
  55. RW_LOGO                 BITMAP  MOVEABLE PURE   "RWLOGO.BMP"
  56.  
  57. ABOUT DIALOG DISCARDABLE  31, 50, 266, 167
  58. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  59. CAPTION "N-Body Simulation Help"
  60. FONT 8, "System"
  61. BEGIN
  62.     CTEXT           "Welcome to Renderware(tm). ",-1,120,10,121,11
  63.     DEFPUSHBUTTON   "OK",1,164,25,32,14,WS_GROUP
  64.     CTEXT           "This application demonstrates the use of RenderWare alongside other processor intensive tasks (ie calculation of object collisions and dynamics). ",
  65.                     -1,5,76,250,21
  66.     CTEXT           "Menus",-1,45,116,34,10
  67.     LTEXT           "Exit - End Application",-1,39,129,71,10
  68.     LTEXT           "Select object to follow",-1,39,139,75,10
  69.     LTEXT           "Pan and Tilt Camera",-1,168,129,80,10
  70.     LTEXT           "Pan and Zoom Camera",-1,168,139,77,9
  71.     CTEXT           "Mouse Buttons",-1,149,116,84,10
  72.     LTEXT           "File",-1,15,129,19,10
  73.     LTEXT           "Track",-1,14,139,21,10
  74.     CONTROL         "",-1,"Static",SS_BLACKFRAME,10,126,105,26
  75.     LTEXT           "Left",-1,140,129,18,10
  76.     LTEXT           "Right",-1,140,139,22,9
  77.     CONTROL         "",-1,"Static",SS_BLACKFRAME,135,126,112,35
  78.     CONTROL         "",2,"Button",BS_OWNERDRAW,0,0,133,73
  79.     CTEXT           "A simple model is used where a number of objects are contained in a room and move in response to gravity and collisions against one another.",
  80.                     -1,5,96,250,19
  81.     LTEXT           "Both",-1,140,149,20,8
  82.     LTEXT           "Zoom Camera",-1,168,149,60,8
  83. END
  84.  
  85.