TripleA Logo TripleA Forum
    • TripleA Website
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Tags
    • Register
    • Login

    Global Dominance

    Scheduled Pinned Locked Moved Maps & Mods
    512 Posts 22 Posters 932.6k Views 25 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • prastleP Offline
      prastle Moderators Admin @redrum
      last edited by

      @redrum hmm +10 f owned and iron?

      If we open a quarrel between past and present, we shall find that we have lost the future! Sir Winston Churchill

      HeppsH 1 Reply Last reply Reply Quote 0
      • HeppsH Offline
        Hepps Moderators @prastle
        last edited by

        @prastle If Germany controls the Shipping lane it receives +10 Steel from trade with Sweden.

        "A joyous heart sours with the burden of expectation"
        Hepster

        1 Reply Last reply Reply Quote 0
        • HeppsH Offline
          Hepps Moderators
          last edited by

          Just finished the new L&L icon. Since all L&L Territories will also be Trade Centers... I made the new L&L icon to include the Trade Center Icon.

          0_1513052865223_New L&L TC Example.jpg

          "A joyous heart sours with the burden of expectation"
          Hepster

          redrumR 1 Reply Last reply Reply Quote 0
          • redrumR Offline
            redrum Admin @Hepps
            last edited by

            @hepps Looks great. Will which units you can L&L vary per territory per nation? If so then having a little symbol indicating something like land/air/etc around the ring would be cool 🙂

            TripleA Developer with a Passion for AI: https://forums.triplea-game.org/topic/105/ai-development-discussion-and-feedback

            HeppsH 1 Reply Last reply Reply Quote 0
            • HeppsH Offline
              Hepps Moderators @redrum
              last edited by

              @redrum What something like this?

              0_1513096591125_Trade Center & Lend & Lease prototype 2 example.jpg

              😃

              "A joyous heart sours with the burden of expectation"
              Hepster

              redrumR 1 Reply Last reply Reply Quote 1
              • redrumR Offline
                redrum Admin @Hepps
                last edited by

                @hepps Yes. Can I have your babies now?

                TripleA Developer with a Passion for AI: https://forums.triplea-game.org/topic/105/ai-development-discussion-and-feedback

                HeppsH 1 Reply Last reply Reply Quote 0
                • HeppsH Offline
                  Hepps Moderators @redrum
                  last edited by

                  @redrum No but if you love me... then you could start writing a template for the conditions & triggers so I can copy and paste all of it into the XML 1000 times. 😉

                  Actually if you continue to work on the features list that do as well. 😃 We still have 2 rather important ones to over-come.

                  "A joyous heart sours with the burden of expectation"
                  Hepster

                  redrumR 1 Reply Last reply Reply Quote 0
                  • redrumR Offline
                    redrum Admin @Hepps
                    last edited by

                    @hepps But I wouldn't want to deprive you of all the condition/trigger fun... I mean what else what you do with your time 🙂

                    Though on a more serious note some of the mass conditions/triggers (>100) that are very similar for say every/most territories, it may be better to write a little script to generate the necessary XML based on a template and list of territories (unless this is what you are doing already).

                    The 2 new features that are left are the following right?

                    • Unit Option Can Submerge/Hide for Land Units (Partisan/Guerrilla)
                    • Unit Option When Damaged Change Into Different Unit (Weakened Battleships)

                    Any thoughts on priority?

                    TripleA Developer with a Passion for AI: https://forums.triplea-game.org/topic/105/ai-development-discussion-and-feedback

                    HeppsH 1 Reply Last reply Reply Quote 1
                    • HeppsH Offline
                      Hepps Moderators @redrum
                      last edited by Hepps

                      @redrum Yes... that is what I am doing. Creating a seperate template to govern the behavior with the words "InsertNamehere" and "InsertTerritoryhere" in the template. Then I can just find and replace with the appropriate info as I work it into the XML.

                      Both are important relative to my goals... but, I think the "When Damaged Change" is more critical to the overall design since it impacts so many of my unit designs and affects all aspects of the game (land,sea & air).

                      "A joyous heart sours with the burden of expectation"
                      Hepster

                      alkexrA 1 Reply Last reply Reply Quote 1
                      • alkexrA Offline
                        alkexr @Hepps
                        last edited by

                        @hepps Another really helpful trick I tend to use a lot is to start out from

                        <territory name="Random Territory"/>
                        <territory name="Really Damn High Mountains"/>
                        <territory name="Whatever Really"/>
                        

                        then (easily with notepad++) mass-replace

                        "/>
                        <territory name="
                        

                        with

                        " javaClass="games.strategy.triplea.attatchments.TerritoryAttachment" type="territory">
                            <option name="production" value="1"/>
                        </attatchment>
                        
                        <attatchment name="territoryAttatchment" attatchTo="
                        

                        to get

                        <attatchment name="territoryAttatchment" attatchTo="Random Territory" javaClass="games.strategy.triplea.attatchments.TerritoryAttachment" type="territory">
                            <option name="production" value="1"/>
                        </attatchment>
                        
                        <attatchment name="territoryAttatchment" attatchTo="Really Damn High Mountains" javaClass="games.strategy.triplea.attatchments.TerritoryAttachment" type="territory">
                            <option name="production" value="1"/>
                        </attatchment>
                        
                        <attatchment name="territoryAttatchment" attatchTo="Whatever Really" javaClass="games.strategy.triplea.attatchments.TerritoryAttachment" type="territory">
                            <option name="production" value="1"/>
                        </attatchment>
                        

                        Same trick can be used in a whole bunch of situations.

                        "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

                        redrumR 1 Reply Last reply Reply Quote 2
                        • redrumR Offline
                          redrum Admin @alkexr
                          last edited by

                          @alkexr Just make sure to use the corrected "attachment" spelling or your map won't work in 1.9 🙂

                          But yeah using mass find/replace in something like notepad++ covers a good deal of situations. For some of the more complex ones, writing a little script that essentially does that but handles more variables can be useful as well.

                          TripleA Developer with a Passion for AI: https://forums.triplea-game.org/topic/105/ai-development-discussion-and-feedback

                          alkexrA 1 Reply Last reply Reply Quote 0
                          • alkexrA Offline
                            alkexr @redrum
                            last edited by

                            @redrum Oh, thanks, you have a keen eye. I had an old version of Pact of Steel 2 xml opened. Hopefully I haven't used code from there 🙂

                            "For the world is changing: I feel it in the water, I feel it in the earth, and I smell it in the air."

                            1 Reply Last reply Reply Quote 0
                            • HeppsH Offline
                              Hepps Moderators
                              last edited by

                              Work is progressing nicely. Now that I have formulated all the details surrounding the Shipping Lanes and Trade Centers and Lend & Lease... things are looking very exciting all over the map.

                              0_1513187027569_Newfoundland example.jpg

                              0_1513187049804_Pearl of Asia example.jpg

                              "A joyous heart sours with the burden of expectation"
                              Hepster

                              1 Reply Last reply Reply Quote 0
                              • HeppsH Offline
                                Hepps Moderators
                                last edited by

                                Middle East is completely finished. The little nation of Saudi Arabia could prove to be a pivotal part of either sides strategy to control the surrounding regions.

                                0_1513799015313_Saudi Arabian Preninsula.jpg

                                "A joyous heart sours with the burden of expectation"
                                Hepster

                                prastleP 1 Reply Last reply Reply Quote 0
                                • prastleP Offline
                                  prastle Moderators Admin @Hepps
                                  last edited by

                                  @hepps Love the mine. I am sure ya had it elsewhere before and I didn't notice.

                                  If we open a quarrel between past and present, we shall find that we have lost the future! Sir Winston Churchill

                                  HeppsH 1 Reply Last reply Reply Quote 0
                                  • HeppsH Offline
                                    Hepps Moderators @prastle
                                    last edited by

                                    @prastle Yah I'm happy with them. Let the smelting commence.

                                    "A joyous heart sours with the burden of expectation"
                                    Hepster

                                    1 Reply Last reply Reply Quote 0
                                    • HeppsH Offline
                                      Hepps Moderators
                                      last edited by

                                      The fight to close the Burmese Road is definitely going to be a contentious affair.

                                      Lots of movement restrictions are going to plague both sides of the conflict.

                                      0_1513873944813_Detailed Burma terrain.jpg

                                      "A joyous heart sours with the burden of expectation"
                                      Hepster

                                      redrumR 1 Reply Last reply Reply Quote 0
                                      • redrumR Offline
                                        redrum Admin @Hepps
                                        last edited by

                                        @hepps looks awesome. One thing I noticed from that screenshot is that the limited move territories are maybe a bit too white as they can be a little difficult to tell who owns them. Maybe consider having thicker color stripes?

                                        TripleA Developer with a Passion for AI: https://forums.triplea-game.org/topic/105/ai-development-discussion-and-feedback

                                        HeppsH 1 Reply Last reply Reply Quote 0
                                        • HeppsH Offline
                                          Hepps Moderators @redrum
                                          last edited by

                                          @redrum While in this screen shot that may be true... you have to remember that this shot does not include the original Territory owner outline.... nor are the national flags included in this preview.

                                          I think when the finished map is complete there will be enough visual que's as to who is in possession of which territories.

                                          "A joyous heart sours with the burden of expectation"
                                          Hepster

                                          1 Reply Last reply Reply Quote 0
                                          • HeppsH Offline
                                            Hepps Moderators
                                            last edited by

                                            Even the vaunted German Wehrmacht are getting in the spirit...

                                            0_1514041929679_Christmas offensive..png

                                            Merry Christmas to all the Triple A warmongers. May all your offensives be merry and bright.

                                            "A joyous heart sours with the burden of expectation"
                                            Hepster

                                            prastleP 1 Reply Last reply Reply Quote 5

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 25
                                            • 26
                                            • 2 / 26
                                            • First post
                                              Last post
                                            Copyright © 2016-2018 TripleA-Devs | Powered by NodeBB Forums