System Advanced Item Indexing

tooltiperror

Super Moderator
Reaction score
231
>till working the items systems i see. you planning on making some special map with those? what items are in pudge wars anyways? never bothered to play that map.
I think this thread is for discussion of this system, not a chatroom to talk with king about the map he works on.
 

SanKakU

Member
Reaction score
21
well, he made item system in the past, which was useful.

but i found the use of it to be somewhat inconvenient, so i made up something else with the help of vexorian. now he made up this and i didn't understand the old code, and wasn't sure if i tried to read this code i would understand it or not.

i figure he helps his position if he can give us some clues about what he is trying to do with the new system.

look, all i'm saying is it's a waste of time to examine the scrpit unless i got some hard core evidence that it would be used in a map. i'm just really dubious right now that it's a good system. you posted it yourself, "Very cool, it's like giving AIDS to items."

by posting that, you share with me the idea that i should just stay out of this thread altogether. i suppose i missed the hint.

personally what i'd rather see is some kind of super light indexing for units, rather than a system that works just fine already made by vexorian. now if kingkingyyk3 wants to dabble with items, i just feel it's a huge waste of time. if you don't believe me...try examining this resource closely.

http://www.hiveworkshop.com/forums/spells-569/vjass-system-custominventory-159130/

i know kingkingyyk3 isn't doing anything quite as dramatic(or foolish) as that, but still, i think he's kind of heading in that direction at the moment, even if slowly.
 

tooltiperror

Super Moderator
Reaction score
231
>by posting that, you share with me the idea that i should just stay out of this thread altogether. i suppose i missed the hint.
I posted that April...

You clearly do not see the use of this system, or how it is used. Can you please reply what you think this system does, and how it is to be used? Maybe if I see how you're thinking I can help.

>now if kingkingyyk3 wants to dabble with items, i just feel it's a huge waste of time. if you don't believe me...try examining this resource closely.
What are you talking about?
 

Nestharus

o-o
Reaction score
84
i figure he helps his position if he can give us some clues about what he is trying to do with the new system.

He just wanted to do item indexing. It's something a lot of programmers have tried to do, and many have failed =P.

He discovered that item events fire whenever they go on to a unit =), hence how this one got to be so great ^)^.

Anyways, as I've said before, being able to index handles makes it so that you don't have to do this nonsense-
[ljass]call SaveInteger(table, GetHandleId(handle), 0, value)[/ljass]

And it allows you to easily create structs for the thingies w/o worrying about instancing...

And it allows you to do stuff when the thing is created/destroyed. For example, if a custom item had a custom spell effect on it, you could attach it to the item when created and destroy it when the item is destroyed =P.

Anyways, the stuff with item indexing is the exact same deal as the stuff with unit indexing.

And you can't get much lighter than AIDS for unit indexing...

To give you an idea, here is the list of the main indexing systems from heaviest to lightest. AIDS isn't in the middle, but is rather extremely close to UnitIndexer.

AutoIndex
AIDS
UnitIndexer

It is so close that it wasn't even worth changing the standards over to UnitIndexer at TH.

You can't get much lighter than the AIDS library.

This ItemIndexer is the same way... previous item indexers have been graveyarded because they were too heavy (didn't last very long). This item indexer is about as lightweight as you can go.
 

emjlr3

Change can be a good thing
Reaction score
395
I actually prefer [ljass]call SaveInteger(table, GetHandleId(handle), 0, value)[/ljass] to one of these full blown systems. Although I am probably in the minority, I prefer simple, scaled as needed to all encompassing bloat.
 

Bribe

vJass errors are legion
Reaction score
67
The SaveInteger business is not good as it doesn't catch when the unit leaves scope, leaving that data in the hashtable and taking up plenty of memory over time.
 

kingkingyyk3

Visitor (Welcome to the Jungle, Baby!)
Reaction score
216
Yeah. :D
Item removal detection is useful.
Anyone love the AIDS textmacro will love this too. :p
 

Romek

Super Moderator
Reaction score
963
> I actually prefer call SaveInteger(table, GetHandleId(handle), 0, value) to one of these full blown systems. Although I am probably in the minority, I prefer simple, scaled as needed to all encompassing bloat.
I agree with you in the case of this system. I don't find myself messing around with items enough to actually make it worth using this system. Items are picked up and used as normal with the WC3 engine, and if (in the very rare event) I do actually need to trigger something relating to an item, I'll just use a hashtable and clear it once I've finished.

I'm sure this has it's uses somewhere though. :p
 

luorax

Invasion in Duskwood
Reaction score
67
It's really usefull if you're creating a huge ORPG system with a custom inventory system. You can modify each item's attributes, you can handle enchants, and so on. I found it useful.
 

Jesus4Lyf

Good Idea™
Reaction score
397
It's really usefull if you're creating a huge ORPG system with a custom inventory system. You can modify each item's attributes, you can handle enchants, and so on. I found it useful.
I totally agree. You cross this with Status or something to give your unit buffs, and you're in business. Can have items levelling up and gaining stats or whatever you please. :)

I wish Azlier was here to comment on what difficulties he came across which made him quit item indexing, though. I never looked into it myself, but I remember there was some specific stuff... makes me worry for stability.

There's reasons I never used something like this in my maps, though, and that is that often custom item systems are the way to go. How to manage things like data attached to items you merge or something gets theoretically tricky. Or if you use an inventory paging system which removes the actual item... which is, of course, probably not that uncommon for every instance something like this is useful. I'd almost be inclined to make an item virtualisation kind of system. I dunno, just some random thoughts! Once you go down that path it's very difficult to write a general system. Not saying this is bad as is, at all! :)
 

tooltiperror

Super Moderator
Reaction score
231
I would say removing items instead of moving them out of sight for a backpack system would be an error on that system's part, not the indexer.
 

tooltiperror

Super Moderator
Reaction score
231
This is supremely useful.

It seems to be implemented well, and I use it in my map for just about everything related to items. Jesus4Lyf put it well, "You cross this with Status or something to give your unit buffs, and you're in business".

Approved.
 

codart

New Member
Reaction score
0
Hey, i found a bug with UID, let check the map http://dl.dropbox.com/u/14083092/Maper/Buggy.w3x
JASS:
scope test
    
    private struct tester
        
        private static method AII_filter takes item i returns boolean
            return GetItemTypeId(i) == 'I001'
        endmethod
        
        
        private method AII_onMove takes integer lastPosition returns nothing
            call BJDebugMsg(GetItemName( GetUnitItemInSlot(GetItemOwner(this.item),lastPosition)))
        endmethod
        
        //On init stuff
        private static method createItem takes nothing returns nothing
            call CreateItemEx('I001',0.0,0.0)
            call CreateItemEx('I000',0.0,0.0)
        endmethod
        private static method onInit takes nothing returns nothing
            call TimerStart(CreateTimer(),0.01,false,function thistype.createItem)
        endmethod
        
        implement AII
        implement ItemEvents
    endstruct

endscope


it say "(null)" when i swap item 'I001' with 'I000'. why? @@
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/
  • The Helper The Helper:
    Here is another comfort food favorite - Million Dollar Casserole - https://www.thehelper.net/threads/recipe-million-dollar-casserole.193614/

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top