summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-25 21:52:17 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-25 21:52:17 +0000
commitd78de7d4170d4b6541fae01304268516c69937e8 (patch)
tree117dc75c2bc36b9cd44027c49a74f1261235fcf4 /src
parentd4564037ea7d174c4512b0c6de62359c5ca2de80 (diff)
downloadmana-client-d78de7d4170d4b6541fae01304268516c69937e8.tar.gz
mana-client-d78de7d4170d4b6541fae01304268516c69937e8.tar.bz2
mana-client-d78de7d4170d4b6541fae01304268516c69937e8.tar.xz
mana-client-d78de7d4170d4b6541fae01304268516c69937e8.zip
Another attempt at fixing inventory draw crash.
Diffstat (limited to 'src')
-rw-r--r--src/gui/inventory.cpp135
1 files changed, 73 insertions, 62 deletions
diff --git a/src/gui/inventory.cpp b/src/gui/inventory.cpp
index 5c5f5782..1626a86c 100644
--- a/src/gui/inventory.cpp
+++ b/src/gui/inventory.cpp
@@ -42,74 +42,85 @@ TmwInventory::~TmwInventory()
/** Initialize inventory */
void TmwInventory::create(int tempxpos, int tempypos) {
- itemset = load_datafile("./data/graphic/items.dat");
+ itemset = load_datafile("./data/graphic/items.dat");
- for(int i=0;i<INVENTORY_SIZE;i++) {
- items[i].id = -1; // if id is negative there's no item
- items[i].quantity = 0;
- }
+ for (int i = 0; i < INVENTORY_SIZE; i++) {
+ items[i].id = -1; // if id is negative there's no item
+ items[i].quantity = 0;
+ }
- inventory_player = init_dialog(inventory_dialog, -1);
- position_dialog(inventory_dialog, x, y);
+ inventory_player = init_dialog(inventory_dialog, -1);
+ position_dialog(inventory_dialog, x, y);
- show_inventory = false;
+ show_inventory = false;
}
/** Draw inventory window */
-void TmwInventory::draw(BITMAP * buffer) {
- if(show_inventory) {
- dialog_message(inventory_dialog,MSG_DRAW,0,0);
- update_dialog(inventory_player);
- for(int i=0;i<INVENTORY_SIZE;i++) {
- if(items[i].quantity>0) {
- if(items[i].id>=501 && items[i].id<=511)
- draw_rle_sprite(gui_bitmap, (RLE_SPRITE *)itemset[items[i].id-501].dat, inventory_dialog[0].x+24*i, inventory_dialog[0].y+26);
- //else
- //masked_blit((BITMAP *)itemset[0].dat, gui_bitmap, 0, 0, inventory_dialog[0].x+24*i, inventory_dialog[0].y+26, 22, 22);
-
- textprintf_ex(gui_bitmap, font, inventory_dialog[0].x+24*i, inventory_dialog[0].y+44, makecol(0,0,0), -1, "%i", items[i].quantity);
- }
- }
- }
- if(mouse_b & 2)
- {
- for(int i=0;i<INVENTORY_SIZE;i++) {
- if(items[i].quantity>0 && inventory_dialog[0].x+24*i+24 > mouse_x && inventory_dialog[0].x+24*i < mouse_x && inventory_dialog[0].y+44+24 > mouse_y && inventory_dialog[0].y+44 < mouse_y)
- {
- itemMeny = 1;
- itemMeny_x = 24*i;
- itemMeny_y = 44+24;
- itemMeny_i = i;
- }
- }
-
-
- }
-
-
- if(itemMeny){
- if(inventory_dialog[0].y+itemMeny_y < mouse_y && inventory_dialog[0].y+itemMeny_y+10 > mouse_y) {
- if(mouse_b&1)
- {
- use_item(itemMeny_i,items[itemMeny_i].id);
- itemMeny = 0;
- }
- textprintf_ex(buffer, font, inventory_dialog[0].x+itemMeny_x, inventory_dialog[0].y+itemMeny_y, makecol(255,237,33), -1, "Use item");
- } else {
- textprintf_ex(buffer, font, inventory_dialog[0].x+itemMeny_x, inventory_dialog[0].y+itemMeny_y, MAKECOL_BLACK, -1, "Use item");
- }
- if(inventory_dialog[0].y+itemMeny_y+10 < mouse_y && inventory_dialog[0].y+itemMeny_y+20 > mouse_y) {
- if(mouse_b&1)
- {
- drop_item(itemMeny_i,1);
- itemMeny = 0;
- }
- textprintf_ex(buffer, font, inventory_dialog[0].x+itemMeny_x, inventory_dialog[0].y+itemMeny_y+10, makecol(255,237,33), -1, "Del item");
- } else {
- textprintf_ex(buffer, font, inventory_dialog[0].x+itemMeny_x, inventory_dialog[0].y+itemMeny_y+10, MAKECOL_BLACK, -1, "Del item");
- }
- }
-
+void TmwInventory::draw(BITMAP *buffer) {
+ if (!show_inventory) return;
+
+ dialog_message(inventory_dialog, MSG_DRAW, 0, 0);
+ update_dialog(inventory_player);
+ for (int i = 0; i < INVENTORY_SIZE; i++) {
+ if (items[i].quantity > 0) {
+ if (items[i].id >= 501 && items[i].id <= 511)
+ draw_rle_sprite(gui_bitmap, (RLE_SPRITE *)itemset[items[i].id-501].dat, inventory_dialog[0].x+24*i, inventory_dialog[0].y+26);
+ //else
+ //masked_blit((BITMAP *)itemset[0].dat, gui_bitmap, 0, 0, inventory_dialog[0].x+24*i, inventory_dialog[0].y+26, 22, 22);
+
+ textprintf_ex(gui_bitmap, font, inventory_dialog[0].x + 24 * i,
+ inventory_dialog[0].y + 44, makecol(0, 0, 0), -1,
+ "%i", items[i].quantity);
+ }
+ }
+
+ if (mouse_b & 2) {
+ for (int i = 0; i < INVENTORY_SIZE; i++) {
+ if (items[i].quantity > 0 &&
+ inventory_dialog[0].x + 24 * i + 24 > mouse_x &&
+ inventory_dialog[0].x + 24 * i < mouse_x &&
+ inventory_dialog[0].y + 44 + 24 > mouse_y &&
+ inventory_dialog[0].y + 44 < mouse_y)
+ {
+ itemMeny = 1;
+ itemMeny_x = 24 * i;
+ itemMeny_y = 44 + 24;
+ itemMeny_i = i;
+ }
+ }
+ }
+
+ if (itemMeny) {
+ if (inventory_dialog[0].y + itemMeny_y < mouse_y &&
+ inventory_dialog[0].y + itemMeny_y + 10 > mouse_y)
+ {
+ if (mouse_b & 1) {
+ use_item(itemMeny_i,items[itemMeny_i].id);
+ itemMeny = 0;
+ }
+ textprintf_ex(buffer, font, inventory_dialog[0].x + itemMeny_x,
+ inventory_dialog[0].y + itemMeny_y, makecol(255, 237, 33),
+ -1, "Use item");
+ } else {
+ textprintf_ex(buffer, font, inventory_dialog[0].x + itemMeny_x,
+ inventory_dialog[0].y + itemMeny_y, MAKECOL_BLACK, -1,
+ "Use item");
+ }
+ if (inventory_dialog[0].y + itemMeny_y + 10 < mouse_y &&
+ inventory_dialog[0].y + itemMeny_y + 20 > mouse_y) {
+ if (mouse_b & 1) {
+ drop_item(itemMeny_i, 1);
+ itemMeny = 0;
+ }
+ textprintf_ex(buffer, font, inventory_dialog[0].x + itemMeny_x,
+ inventory_dialog[0].y + itemMeny_y + 10,
+ makecol(255, 237, 33), -1, "Del item");
+ } else {
+ textprintf_ex(buffer, font, inventory_dialog[0].x + itemMeny_x,
+ inventory_dialog[0].y + itemMeny_y + 10, MAKECOL_BLACK, -1,
+ "Del item");
+ }
+ }
}