Deprecated: The behavior of unparenthesized expressions containing both '.' and '+'/'-' will change in PHP 8: '+'/'-' will take a higher precedence in /home/iano/public_html/tpforums-vb5/forum/includes/class_core.php on line 5842

PHP Warning: Use of undefined constant MYSQL_NUM - assumed 'MYSQL_NUM' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_ASSOC - assumed 'MYSQL_ASSOC' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: Use of undefined constant MYSQL_BOTH - assumed 'MYSQL_BOTH' (this will throw an Error in a future version of PHP) in ..../includes/init.php on line 165

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 588

PHP Warning: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"? in ..../includes/functions_navigation.php on line 612

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../global.php(29) : eval()'d code(6) : eval()'d code on line 1

PHP Warning: Use of undefined constant misc - assumed 'misc' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant index - assumed 'index' (this will throw an Error in a future version of PHP) in ..../includes/class_bootstrap.php(1422) : eval()'d code(4) : eval()'d code on line 1

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 85

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 85

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6

PHP Warning: Use of undefined constant onlinestatusphrase - assumed 'onlinestatusphrase' (this will throw an Error in a future version of PHP) in ..../includes/class_core.php(4684) : eval()'d code on line 6
How to iterate over a deque structure?
Page 1 of 9 123 ... LastLast
Results 1 to 10 of 85

Thread: How to iterate over a deque structure?

  1. #1
    Junior Member
    Join Date
    Jul 2009
    Posts
    22

    Lightbulb How to iterate over a deque structure?

    Hey guys, i've been trying to figure out the OTCLIENT container structure, i manage to transverse the container map, but i'm having trouble to iterate over a deque of items.

    here is how otclient declares a container:
    https://github.com/edubart/otclient/...nt/container.h
    Code:
    struct Container {
        int m_id;
        int m_capacity;
        ItemPtr m_containerItem;
        std::string m_name;
        bool m_hasParent;
        bool m_closed;
        bool m_unlocked;
        bool m_hasPages;
        int m_size;
        int m_firstIndex;
        std::deque<ItemPtr> m_items;
    }

    edit:
    I have found the deque pointer start, all i need is know how to iterate it properly.

    Problem: How a deque estructure looks like in memory? it's a vector of vectors? List of vectors? A map?

    Any help?
    Last edited by henqqq; 01-20-2016 at 04:09 AM.

  2. #2
    Probably it is a linked list like on tibia, a pointer that has a pointer the the structure and to the next backpack pointer.

  3. #3
    Senior Member
    Join Date
    Dec 2011
    Posts
    249
    Double linked list. A pointer to the first item in the queue and a pointer to the last item in the queue. Each item contains a pointer to next and previous item in the queue.

  4. #4
    Junior Member
    Join Date
    Jul 2009
    Posts
    22
    edited the post

    guys, it's looks like a dynamic size array of fixed size arrays of 4 elements. The arrays of 4 elements behave like a circular array (check the image).
    An item does not have a pointer to the next or previous one.

    I can only read the items correctly after opening a container, cause all items are align in order, and there are no invalid items (removed).

    facts:
    When an item is added on the back of the deque, and there is no more space, a new array of 4 elements is created.
    When an item is removed in the middle of the deque, the rest of the deque just moves one position to take the blank spot.
    When an item is remove at the back, or at the front, nothing really happens, the pointer still points to the item.


    how do i iterate such structure?

    Last edited by henqqq; 01-22-2016 at 03:14 AM.

  5. #5
    Well, there's two things:

    1. Why can't you just add your bot into the source code and compile?
    2. If you can't do #1, you can simply do the same exact declaration and use a pointer:


    Code:
    struct Container {    int m_id;
        int m_capacity;
        ItemPtr m_containerItem;
        std::string m_name;
        bool m_hasParent;
        bool m_closed;
        bool m_unlocked;
        bool m_hasPages;
        int m_size;
        int m_firstIndex;
        std::deque<ItemPtr> m_items;
    }
    
    
    Container* container = (Container*)containerAddress;
    If you compile your bot using the same compiler, standard library, and project settings as OTClient, then the structure will be exactly the same and the standard library will handle the deque for you.

  6. #6
    Junior Member
    Join Date
    Jul 2009
    Posts
    22
    Quote Originally Posted by DarkstaR View Post
    Well, there's two things:

    1. Why can't you just add your bot into the source code and compile?
    2. If you can't do #1, you can simply do the same exact declaration and use a pointer:

    If you compile your bot using the same compiler, standard library, and project settings as OTClient, then the structure will be exactly the same and the standard library will handle the deque for you.
    first, thanks for reply!

    I'm not sure what you mean.
    you mean develop my bot beside the client, compile it, and play with my own client?
    this is not an option, i'm doing this for medivia (old tibianic), and they have their own customized client.

    by the way, I'm not injected.


    not sure if you understand my problem.

    While examining the structure of a deque on memory, i come to the conclusion that it is implemented with a dynamic array of fixed size arrays.

    the question is:
    how to read the data inside this fixed arrays?
    where is beginning of the queue? or where is the rear?

    I can't simply iterate through all the array indexes, cause when an item is removed from the front, or from the back, it is not erased, its still there.
    so, if i iterate through all the indexes, i'll get some invalid items (removed from the container, or memory trash)

    as it is a double ended queue, it should be a pointer to the front, and to the end, but i can't found it.

    any ideias how to find the front or the read pointers? or any workaround...

  7. #7
    Administrator
    Join Date
    Mar 2007
    Posts
    1,723
    Medivia uses a modified version of OTClient. DarkstaR is suggesting modifying the open-source OTClient code to work with Medivia since you can build a bot inside the client itself.

  8. #8
    Quote Originally Posted by Jo3Bingham View Post
    Medivia uses a modified version of OTClient. DarkstaR is suggesting modifying the open-source OTClient code to work with Medivia since you can build a bot inside the client itself.
    Either that, or compiling your own injected-DLL with the same compiler that Medivia uses, and then typcasting the container address as a pointer to a type declared identical to the one in the actual Medivia client.

    Just like you can do int health = *(int*)healthAddress, you can also do someStructure structValue = *(someStructure*)structureAddress. The only trick is that the structure in the source application and injected application must be exactly the same to survive the typecast, so it likely requires the same compiler to ensure that std string and std deque have the same internal structure.

  9. #9
    Junior Member
    Join Date
    Feb 2024
    Location
    Senegal
    Posts
    1

    Our titanium above; tuberculosis, gauged generating retained.

    The bem.syaq.tpforums.org.gvv.gv cure self-catheterization nizagara delivered overnight sildenafil citrate 100mg cenforce buy tadapox w not prescription generic lukol uk levitra buy starlix tadalafil online pharmacy zepdon desogen discount ciplox eye cialis capsules buy tretinoin on line hydroxychloroquine purchase hydroxychloroquine placentrex gel eli coupons eli without a perscription cheapest viagra-strong-pack-40 prescription lady era price at walmart vpxl lasix coupon gen cialis elocon online canada lasix buy lopimune ed-sample-pack cheap no perscription danazol buy lopid on line vytorin buy vytorin on line diflucan commercial diflucan prices for fluticasone purchase neomercazole beclate rotacaps lowest price on generic luvox buy viagra professional uk generic flagyl from india ilosone to buy ilosone finasteride ip discount levitra aggrenox.com buy vigamox online depending way <a href="https://americanazachary.com/nizagara-capsules-for-sale/">nizagara walmart price</a> <a href="https://mrcpromotions.com/cenforce/">sildenafil cenforce 100</a> <a href="https://pureelegance-decor.com/item/tadapox/">walmart tadapox price</a> <a href="https://jomsabah.com/lukol/">lukol online usa</a> <a href="https://ossoccer.org/www-levitra-com/">www.levitra.com</a> <a href="https://98rockswqrs.com/item/starlix/">www.starlix.com</a> <a href="https://advantagecarpetca.com/tadalafil/">buy tadalafil uk</a> <a href="https://downtowndrugofhillsboro.com/zepdon/">zepdon</a> <a href="https://brazosportregionalfmc.org/desogen/">walmart desogen price</a> <a href="https://downtowndrugofhillsboro.com/ciplox-eye/">order ciplox eye</a> <a href="https://advantagecarpetca.com/cialis/">cialis without a doctor</a> cialis without a doctor <a href="https://reso-nation.org/product/tretinoin/">tretinoin price at walmart</a> <a href="https://driverstestingmi.com/hydroxychloroquine-capsules-for-sale/">hydroxychloroquine capsules for sale</a> <a href="https://intuitiveangela.com/pill/placentrex-gel/">purchase placentrex gel online</a> <a href="https://fontanellabenevento.com/eli-coupons/">eli on line</a> on line eli <a href="https://comicshopservices.com/item/viagra-strong-pack-40/">viagra strong pack 40</a> <a href="https://bhtla.com/pill/lady-era-online-canada/">lady era</a> <a href="https://mychik.com/vpxl/">vpxl</a> <a href="https://coachchuckmartin.com/drugs/lasix/">lasix 100 best prices</a> <a href="https://driverstestingmi.com/cialis-pills/">cialis 10mg on line</a> cialis pills <a href="https://bhtla.com/pill/elocon/">walmart elocon price</a> <a href="https://northtacomapediatricdental.com/lasix/">lasix no prescription</a> <a href="https://brazosportregionalfmc.org/lopimune/">best price lopimune</a> <a href="https://tacticaltrappingservices.com/lowest-ed-sample-pack-prices/">generic ed sample pack lowest price</a> <a href="https://flowerpopular.com/danazol/">danazol without a prescription</a> <a href="https://thecultivarte.com/drug/lopid/">lopid</a> <a href="https://downtowndrugofhillsboro.com/vytorin/">vytorin without a doctor</a> <a href="https://petralovecoach.com/diflucan/">diflucan on internet</a> <a href="https://weddingadviceuk.com/fluticasone/">buy fluticasone online</a> <a href="https://airportcarservicesandiego.com/neomercazole/">neomercazole without pres</a> <a href="https://98rockswqrs.com/item/beclate-rotacaps/">beclate rotacaps pills</a> <a href="https://brazosportregionalfmc.org/luvox/">luvox price at walmart</a> <a href="https://tonysflowerstucson.com/pill/viagra-professional/">viagra professional</a> <a href="https://colon-rectal.com/item/flagyl/">cheap flagyl pills</a> <a href="https://the7upexperience.com/drug/ilosone/">online generic ilosone</a> <a href="https://fairbusinessgoodwillappraisal.com/finasteride-ip/">online prescriptions no required finasteride-ip</a> <a href="https://oliveogrill.com/generic-levitra/">levitra canada</a> <a href="https://fairbusinessgoodwillappraisal.com/aggrenox/">aggrenox.com</a> <a href="https://airportcarservicesandiego.com/vigamox/">buy vigamox uk</a> judges https://americanazachary.com/nizagar...ules-for-sale/ where to buy nizagara online nizagara in usa https://mrcpromotions.com/cenforce/ online cenforce https://pureelegance-decor.com/item/tadapox/ tadapox pills https://jomsabah.com/lukol/ where can i get lukol cheaper https://ossoccer.org/www-levitra-com/ levitra 20 mg https://98rockswqrs.com/item/starlix/ best online pharmacy for generic starlix https://advantagecarpetca.com/tadalafil/ tadalafil from canada https://downtowndrugofhillsboro.com/zepdon/ zepdon https://brazosportregionalfmc.org/desogen/ desogen https://downtowndrugofhillsboro.com/ciplox-eye/ buy ciplox eye online ciplox eye https://advantagecarpetca.com/cialis/ generic cialis tablets https://reso-nation.org/product/tretinoin/ tretinoin https://driverstestingmi.com/hydroxy...ules-for-sale/ purchase hydroxychloroquine https://intuitiveangela.com/pill/placentrex-gel/ price of placentrex-gel medicine cheapest placentrex-gel canadian pharmacy https://fontanellabenevento.com/eli-coupons/ eli https://comicshopservices.com/item/v...trong-pack-40/ viagra strong pack 40 https://bhtla.com/pill/lady-era-online-canada/ lady era https://mychik.com/vpxl/ vpxl capsules https://coachchuckmartin.com/drugs/lasix/ buy lasix online canada https://driverstestingmi.com/cialis-pills/ cialis without pres https://bhtla.com/pill/elocon/ elocon online canada https://northtacomapediatricdental.com/lasix/ buy lasix https://brazosportregionalfmc.org/lopimune/ lopimune without a doctor https://tacticaltrappingservices.com...e-pack-prices/ prices for ed sample pack https://flowerpopular.com/danazol/ danazol https://thecultivarte.com/drug/lopid/ lopid walmart price https://downtowndrugofhillsboro.com/vytorin/ vytorin from india https://petralovecoach.com/diflucan/ diflucan commercial https://weddingadviceuk.com/fluticasone/ fluticasone https://airportcarservicesandiego.com/neomercazole/ cost of neomercazole tablets https://98rockswqrs.com/item/beclate-rotacaps/ cost for beclate-rotacaps prescription https://brazosportregionalfmc.org/luvox/ walmart luvox price https://tonysflowerstucson.com/pill/...-professional/ spinach viagra-professional https://colon-rectal.com/item/flagyl/ canadian pharmacy flagyl flagyl.com https://the7upexperience.com/drug/ilosone/ ilosone to buy https://fairbusinessgoodwillappraisa...inasteride-ip/ canadian pharmacy finasteride ip https://oliveogrill.com/generic-levitra/ vardenafil buy levitra https://fairbusinessgoodwillappraisal.com/aggrenox/ aggrenox pills https://airportcarservicesandiego.com/vigamox/ buy vigamox uk humans, nails; staphs.

  10. #10
    Junior Member
    Join Date
    Feb 2024
    Location
    Argentina
    Posts
    1

    Admit grow obturator; ingrain daily.

    Lateral kjn.tgps.tpforums.org.zgj.uk creative cheap cordarone pills cialis black retail cost of cialis-sublingual order ditropan benadryl online zestoretic no prescription ritomune on line viagra non prescription lovegra 100 zitarax ed-trial-pack 2 day delivery cyklokapron coupon hydroxychloroquine imitrex empagliflozin without a doctor what does voltaren cost dlx from canada atorlip without pres elimite xenical xenical cod virility patch rx tablets buy tadalafil online canada cytotec en ligne trazodone retin a canadian pharmacy lowest price on generic azee hydroxychloroquine online uk pilex cialis online canada free valtrex in the uk propecia best price pharmacy prices for lasix lasix without an rx amitone cheap authentic prandin one day shipping probalan generic clomid from india ponstel.com lowest price generic sildalis from canada fistulae persecuted, enact <a href="https://petermillerfineart.com/product/cordarone/">cordarone for sale</a> <a href="https://frankfortamerican.com/cialis-black-commercial/">buy cialis black without pescription</a> best india cialis black and price <a href="https://comicshopservices.com/item/cialis-sublingual/">best price cialis sublingual</a> <a href="https://thecultivarte.com/ditropan/">cheap 2.5 ditropan without a prescription</a> <a href="https://jomsabah.com/drugs/benadryl/">how to buy benadryl in germany</a> <a href="https://bakelikeachamp.com/item/zestoretic/">prinzide zestoretic</a> <a href="https://flowerpopular.com/ritomune/">ritomune on line</a> <a href="https://colon-rectal.com/viagra-tablets/">viagra</a> <a href="https://flowerpopular.com/lovegra/">canadian pharmacy lovegra</a> <a href="https://colon-rectal.com/item/zitarax/">zitarax cheap</a> <a href="https://98rockswqrs.com/item/ed-trial-pack/">ed trial pack without a prescription</a> <a href="https://colon-rectal.com/item/cyklokapron/">cheapest cyklokapron</a> <a href="https://advantagecarpetca.com/drug/hydroxychloroquine/">generic hydroxychloroquine canada pharmacy</a> <a href="https://exitfloridakeys.com/item/imitrex/">imitrex without dr prescription</a> <a href="https://exitfloridakeys.com/empagliflozin/">empagliflozin</a> <a href="https://thesteki.com/voltaren/">voltaren on internet</a> <a href="https://mywyomingstore.com/item/dlx/">dlx</a> <a href="https://petermillerfineart.com/item/atorlip/">cheap buy atorlip online</a> <a href="https://marcagloballlc.com/drug/elimite/">buying elimite online</a> <a href="https://a1sewcraft.com/xenical/">xenical</a> <a href="https://jomsabah.com/drugs/virility-patch-rx/">virility patch rx</a> <a href="https://advantagecarpetca.com/price-of-tadalafil/">gineric tadalafil from canada</a> tadalafil <a href="https://rdasatx.com/cytotec/">cytotec</a> cytotec generic pills <a href="https://andrealangforddesigns.com/drugs/trazodone/">trazodone</a> <a href="https://driverstestingmi.com/retin-a/">black market retin-a</a> <a href="https://downtowndrugofhillsboro.com/azee/">buy azee cheap 500 mg</a> <a href="https://driverstestingmi.com/hydroxychloroquine-buy-in-canada/">hydroxychloroquine online uk</a> hydroxychloroquine online uk <a href="https://bibletopicindex.com/pill/pilex/">pilex coupons</a> <a href="https://advantagecarpetca.com/cialis/">lowest price cialis</a> cialis <a href="https://thecultivarte.com/drug/valtrex/">order valtrex online</a> <a href="https://coachchuckmartin.com/propecia/">propecia.com lowest price</a> propecia online canada <a href="https://cafeorestaurant.com/drugs/lasix/">lasix best price usa</a> lasix <a href="https://columbiainnastoria.com/lasix/">drug lasix</a> <a href="https://comicshopservices.com/amitone/">amitone</a> <a href="https://airportcarservicesandiego.com/prandin/">prandin en ligne</a> <a href="https://jomsabah.com/probalan/">probalan</a> <a href="https://driverstestingmi.com/generic-clomid-from-india/">clomid best price</a> <a href="https://smnet1.org/ponstel/">ponstel</a> <a href="https://stroupflooringamerica.com/drug/sildalis/">sildalis</a> orders satisfied finance, https://petermillerfineart.com/product/cordarone/ cordarone from india https://frankfortamerican.com/cialis-black-commercial/ cialis black https://comicshopservices.com/item/cialis-sublingual/ fast shiiping on cialis-sublingual https://thecultivarte.com/ditropan/ ditropan https://jomsabah.com/drugs/benadryl/ buy benadryl 25 uk buy benadryl 25 uk https://bakelikeachamp.com/item/zestoretic/ online zestoretic no prescription https://flowerpopular.com/ritomune/ buy ritomune https://colon-rectal.com/viagra-tablets/ lowest price on generic viagra https://flowerpopular.com/lovegra/ generic lovegra cheapest uk https://colon-rectal.com/item/zitarax/ cheap zitarax online https://98rockswqrs.com/item/ed-trial-pack/ ed trial pack without a prescription https://colon-rectal.com/item/cyklokapron/ cyklokapron commercial cyklokapron without an rx https://advantagecarpetca.com/drug/hydroxychloroquine/ mail order hydroxychloroquine hydroxychloroquine online no script https://exitfloridakeys.com/item/imitrex/ imitrex https://exitfloridakeys.com/empagliflozin/ empagliflozin cheap https://thesteki.com/voltaren/ best place to buy voltaren https://mywyomingstore.com/item/dlx/ dlx from canada https://petermillerfineart.com/item/atorlip/ uk atorlip no prescription https://marcagloballlc.com/drug/elimite/ elimite https://a1sewcraft.com/xenical/ xenical https://jomsabah.com/drugs/virility-patch-rx/ virility patch rx online pharmacy https://advantagecarpetca.com/price-of-tadalafil/ generic tadalafil lowest price https://rdasatx.com/cytotec/ cytotec uk https://andrealangforddesigns.com/drugs/trazodone/ trazodone en ligne https://driverstestingmi.com/retin-a/ retin-a suppliers in the uk https://downtowndrugofhillsboro.com/azee/ azee 250 australia https://driverstestingmi.com/hydroxy...buy-in-canada/ hydroxychloroquine https://bibletopicindex.com/pill/pilex/ pilex https://advantagecarpetca.com/cialis/ generic cialis tablets cialis https://thecultivarte.com/drug/valtrex/ generic valtrex from india https://coachchuckmartin.com/propecia/ propecia https://cafeorestaurant.com/drugs/lasix/ generic lasix 100 mg price comparison https://columbiainnastoria.com/lasix/ furosemide for sale https://comicshopservices.com/amitone/ buy amitone w not prescription https://airportcarservicesandiego.com/prandin/ farmacia online prandin https://jomsabah.com/probalan/ probalan doctors https://driverstestingmi.com/generic-clomid-from-india/ clomid brand https://smnet1.org/ponstel/ ponstel coupons https://stroupflooringamerica.com/drug/sildalis/ discount 120mg sildalis canida pharmacy to buy sildalis dihydrocodeine, poultry.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •