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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/***********************************************************************
filename: Sample_InventoryDemo.cpp
created: Fri Apr 22 2011
author: Paul D Turner <paul@cegui.org.uk>
*************************************************************************/
/***************************************************************************
* Copyright (C) 2004 - 2011 Paul D Turner & The CEGUI Development Team
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
***************************************************************************/
#include "Sample_InventoryDemo.h"
#include "InventoryItem.h"
#include "InventoryItemRenderer.h"
#include "InventoryReceiver.h"
#include <CEGUI.h>
//----------------------------------------------------------------------------//
int main(int /*argc*/, char* /*argv*/[])
{
// This is a basic start-up for the sample application which is
// object orientated in nature, so we just need an instance of
// the CEGuiSample based object and then tell that sample application
// to run. All of the samples will use code similar to this in the
// main/WinMain function.
InventoryDemo app;
return app.run();
}
//----------------------------------------------------------------------------//
bool InventoryDemo::initialiseSample()
{
using namespace CEGUI;
// basic system init using TaharezLook.
WindowManager& winMgr = WindowManager::getSingleton();
SchemeManager::getSingleton().create("TaharezLook.scheme");
System::getSingleton().setDefaultMouseCursor("TaharezLook", "MouseArrow");
Window* root = winMgr.createWindow("DefaultWindow", "root");
System::getSingleton().setGUISheet(root);
// register custom objects with CEGUI.
WindowFactoryManager::addFactory<TplWindowFactory<InventoryReceiver> >();
WindowFactoryManager::addFactory<TplWindowFactory<InventoryItem> >();
WindowRendererManager::addFactory<TplWindowRendererFactory<InventoryItemRenderer> >();
// load looknfeel for custom inventory components (needs TaharezLook images)
WidgetLookManager::getSingleton().parseLookNFeelSpecification("InventoryComponents.looknfeel");
// create mapping for the item type
// This is the equivalent to the following entry in a scheme xml file:
// <FalagardMapping WindowType="TaharezLook/InventoryItem" TargetType="InventoryItem" LookNFeel="TaharezLook/InventoryItem" Renderer="InventoryItemRenderer" />
WindowFactoryManager::getSingleton().addFalagardWindowMapping(
"TaharezLook/InventoryItem", // type to create
"InventoryItem", // 'base' widget type
"TaharezLook/InventoryItem", // WidgetLook to use.
"InventoryItemRenderer"); // WindowRenderer to use.
// Create Backpack window
Window* wnd = winMgr.createWindow("TaharezLook/FrameWindow");
root->addChildWindow(wnd);
wnd->setPosition(UVector2(UDim(0.1f, 0), UDim(0.1f, 0)));
wnd->setSize(UVector2(UDim(0.2f, 0), UDim(0.4f, 0)));
wnd->setText("Backpack");
InventoryReceiver& receiver1 = dynamic_cast<InventoryReceiver&>(*winMgr.createWindow("InventoryReceiver"));
wnd->addChildWindow(&receiver1);
receiver1.setPosition(UVector2(cegui_reldim(0.0f), cegui_reldim( 0.0f)));
receiver1.setSize(UVector2(cegui_reldim(1.0f), cegui_reldim( 1.0f)));
receiver1.setContentSize(3, 6);
receiver1.setUserString("BlockImage", "set:TaharezLook image:GenericBrush");
// Create vault window
Window* wnd2 = winMgr.createWindow("TaharezLook/FrameWindow");
root->addChildWindow(wnd2);
wnd2->setPosition(UVector2(UDim(0.48f, 0), UDim(0.2f, 0)));
wnd2->setSize(UVector2(UDim(0.5f, 0), UDim(0.5f, 0)));
wnd2->setText("Bank Vault");
InventoryReceiver& receiver2 = dynamic_cast<InventoryReceiver&>(*winMgr.createWindow("InventoryReceiver"));
wnd2->addChildWindow(&receiver2);
receiver2.setPosition(UVector2(cegui_reldim(0.0f), cegui_reldim( 0.0f)));
receiver2.setSize(UVector2(cegui_reldim(1.0f), cegui_reldim( 1.0f)));
receiver2.setContentSize(10, 10);
receiver2.setUserString("BlockImage", "set:TaharezLook image:GenericBrush");
// create some items and add them to the vault.
InventoryItem& item1 = dynamic_cast<InventoryItem&>(*winMgr.createWindow("TaharezLook/InventoryItem"));
item1.setContentSize(2, 2);
receiver2.addItemAtLocation(item1, 0, 0);
item1.setProperty("Image", "set:TaharezLook image:MouseArrow");
InventoryItem& item2 = dynamic_cast<InventoryItem&>(*winMgr.createWindow("InventoryItem"));
item2.setUserString("BlockImage", "set:TaharezLook image:GenericBrush");
item2.setContentSize(3, 1);
receiver2.addItemAtLocation(item2, 1, 3);
InventoryItem& item3 = dynamic_cast<InventoryItem&>(*winMgr.createWindow("InventoryItem"));
item3.setUserString("BlockImage", "set:TaharezLook image:GenericBrush");
item3.setContentSize(1, 4);
receiver2.addItemAtLocation(item3, 5, 2);
InventoryItem& item4 = dynamic_cast<InventoryItem&>(*winMgr.createWindow("InventoryItem"));
item4.setUserString("BlockImage", "set:TaharezLook image:GenericBrush");
item4.setContentSize(1, 1);
receiver2.addItemAtLocation(item4, 8, 6);
InventoryItem& item5 = dynamic_cast<InventoryItem&>(*winMgr.createWindow("InventoryItem"));
item5.setUserString("BlockImage", "set:TaharezLook image:GenericBrush");
item5.setContentSize(2, 3);
bool data[] = {
1, 0,
1, 1,
1, 0
};
item5.setItemLayout(data);
receiver2.addItemAtLocation(item5, 2, 5);
return true;
}
//----------------------------------------------------------------------------//
void InventoryDemo::cleanupSample()
{
// nothing to do here!
}
//----------------------------------------------------------------------------//
|