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

    Hard or Does Nothing AI for unactive players

    Scheduled Pinned Locked Moved Map Making
    34 Posts 3 Posters 7.5k Views 3 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.
    • C Offline
      Cernel Moderators Lobby Moderators
      last edited by

      The other thing here is that I also want this behaviour being optional. This is currently achieved by having the ability to deselect the "use" for this player. This already fully works fine too, as, this way, the player has no "Conduct Combat" phase and no phase where the "spawned" units are triggered.

      1 Reply Last reply Reply Quote 0
      • C Offline
        Cernel Moderators Lobby Moderators
        last edited by

        However, as I partially said, there are two actual issues, with this way I'm going, both related to hosting. Private hosts have the minor issue that preselection doesn't work, so players have to know that particular power has to be assigned to Does Nothing, and do it themselves. Automated hosts (bots) have the major issue that you cannot have Does Nothing at all (so, here the workaround would only be that one of the players take this power and takes care always to confirm casualties autoselection).

        As far as private hosts go, I'm under the understanding that is only a temporary (albeit long time stale) issue, in that @redrum will eventually finish this new feature by having it working when hosting too.

        As far as bots go, I intended to make a feature request for having Does Nothing in them too, as an option, after having released this map.

        1 Reply Last reply Reply Quote 0
        • C Offline
          Cernel Moderators Lobby Moderators
          last edited by Cernel

          To be clear, what I need here is merely a player that skips everything a human player may do, chooses randomly whatever a human player must do and takes as casualties whatever the autoselector gives (which, for this game, is already currently fully covered by Does Nothing, beside the hosting related issues with assigning players to it).

          1 Reply Last reply Reply Quote 1
          • LaFayetteL Offline
            LaFayette Admin
            last edited by

            @Cernel are you relying on DNAI to purchase & place?

            As far as I'm concerned DNAI should live up to its name and will never gain more behavior. In short it's a hacky way to get another neutral player.

            C 2 Replies Last reply Reply Quote 0
            • C Offline
              Cernel Moderators Lobby Moderators @LaFayette
              last edited by

              @LaFayette said in Hard or Does Nothing AI for unactive players:

              @Cernel are you relying on DNAI to purchase & place?

              Nope. There is no purchasing and all the placement is made by triggers, completely independently by any assignation. This is also an optional feature for the game, and can be disabled by deselecting the "use" for this player, thus removing all phases in which these triggers fire.

              1 Reply Last reply Reply Quote 0
              • C Offline
                Cernel Moderators Lobby Moderators @LaFayette
                last edited by

                @LaFayette said in Hard or Does Nothing AI for unactive players:

                As far as I'm concerned DNAI should live up to its name and will never gain more behavior. In short it's a hacky way to get another neutral player.

                Ok, then, an example. If I'm playing WWII Revised and assign "Germans" to Does Nothing AI, then start the game with me as "Russians". If I place 1 battleship in a sea zone with "Germans" units in it, should these units attack me on the forthcoming "Germans" turn (the behaviour is that they do).

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

                  @Cernel The "Neutral" (null) player uses the same casualty selection as "DoesNothing" which is essentially the default plus interleaving carriers and planes. I would recommend using this for any player that is just taking part in battles and not meant to move/purchase/etc.

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

                  LaFayetteL C 2 Replies Last reply Reply Quote 0
                  • LaFayetteL Offline
                    LaFayette Admin @redrum
                    last edited by

                    @redrum Are you sure it's not actually weak AI that neutral player uses? Is it indeterminate and based on the location of code?

                    For example, in casualtySelector.java:

                        final Player tripleaPlayer =
                            player.isNull() ? new WeakAi(player.getName()) : bridge.getRemotePlayer(player);
                    

                    From what I can tell DNAI is weak AI that does not move. Weak AI shares the same casualty selection as ProAI where it uses default casualty with interleaved carriers+figs.

                    C redrumR 2 Replies Last reply Reply Quote 0
                    • C Offline
                      Cernel Moderators Lobby Moderators @redrum
                      last edited by

                      @redrum said in Hard or Does Nothing AI for unactive players:

                      @Cernel The "Neutral" (null) player uses the same casualty selection as "DoesNothing" which is essentially the default plus interleaving carriers and planes.

                      Good to know, this is exactly what I wanted and what I actually went with, since nobody answered me 2 months ago.

                      I would recommend using this for any player that is just taking part in battles and not meant to move/purchase/etc.

                      Also for players (like this one) having "Conduct Combat" phases and attacking during the same? If positive, can we document this as intended and "stable" somewhere?

                      1 Reply Last reply Reply Quote 1
                      • C Offline
                        Cernel Moderators Lobby Moderators @LaFayette
                        last edited by

                        @LaFayette said in Hard or Does Nothing AI for unactive players:

                        @redrum Are you sure it's not actually weak AI that neutral player uses? Is it indeterminate and based on the location of code?

                        For example, in casualtySelector.java:

                            final Player tripleaPlayer =
                                player.isNull() ? new WeakAi(player.getName()) : bridge.getRemotePlayer(player);
                        

                        From what I can tell DNAI is weak AI that does not move. Weak AI shares the same casualty selection as ProAI where it uses default casualty with interleaved carriers+figs.

                        I guess what @redrum means is that the "Neutral" player is using Weak AI too?

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

                          @LaFayette Weak AI and DoesNothing AI are the same as well since they both use Abstract AI selectCasualties (this probably should actually be updated to be DoesNothing AI since that makes more sense but is just a code issue). No, ProAI uses a separate casualty selection that is more advanced than Weak/DoesNothing: https://github.com/triplea-game/triplea/blob/master/game-core/src/main/java/games/strategy/triplea/ai/pro/AbstractProAi.java#L346

                          @Cernel Sorry, I think I missed this thread. Yeah, a brief definition should probably be added to POS2 XML. Yes, "Neutral", DoesNothing, and Weak all use the same casualty selection which is default plus interleaving carriers and planes. Once the current PR that is potentially altering this is decided on then an update would be good.

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

                          C 1 Reply Last reply Reply Quote 0
                          • LaFayetteL Offline
                            LaFayette Admin
                            last edited by

                            I suppose it's getting to be a pedantic point, though WeakAI is the one used for casualties it appears.

                            Yeah, a brief definition should probably be added to POS2 XML

                            I would disagree, players want to know this information as well for what a given AI does. As far as I'm concerned though AIs should not be a tool of map makers and maps should not be aware of AIs. On the other hand selecting more players to be neutrals via another means would be the right feature. Any cases where we really want a player to just mindless place units can be considered apart from AIs (for example, wouldn't triggers be able to accomplish that just fine?)

                            redrumR C 2 Replies Last reply Reply Quote 0
                            • redrumR Offline
                              redrum Admin @LaFayette
                              last edited by

                              @LaFayette said in Hard or Does Nothing AI for unactive players:

                              As far as I'm concerned though AIs should not be a tool of map makers and maps should not be aware of AIs.

                              I think most map makers would disagree with this. Either I'm misunderstanding or just not seeing how you would handle the various maps that are defaulting players to AI and using hidden players.

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

                              1 Reply Last reply Reply Quote 2
                              • C Offline
                                Cernel Moderators Lobby Moderators @LaFayette
                                last edited by

                                @LaFayette said in Hard or Does Nothing AI for unactive players:

                                Any cases where we really want a player to just mindless place units can be considered apart from AIs (for example, wouldn't triggers be able to accomplish that just fine?)

                                So, I thought I made this clear, but I'll further clarify that FOR THIS ONE GAME DNAI is not required to place anything, as all the placements is made by triggers. What DNAI should be doing in this one is mindlessly attacking, resolving battles in a random order and taking casualties always by the autoselector (it has no retreat decisions, since the units are placed directly into the enemy territories).

                                1 Reply Last reply Reply Quote 0
                                • LaFayetteL Offline
                                  LaFayette Admin
                                  last edited by

                                  @Cernel my comment was more directed to @redrum who has stated it would be more flexible for DNAI to place but not purchase.

                                  My opinion is that DNAI should behave like a neutral player.

                                  From another perspective, IMO using AI to get the behavior of a neutral player is a bad way to go. Instead I think the right feature is to be able to mark players as neutral which would remove their player slots and avoids loads of confusion and frankly other hackery.

                                  But for your prospective map and perhaps any others, I do wonder, @Cernel why not use a true neutral player?

                                  C 1 Reply Last reply Reply Quote 0
                                  • C Offline
                                    Cernel Moderators Lobby Moderators @LaFayette
                                    last edited by

                                    @LaFayette said in Hard or Does Nothing AI for unactive players:

                                    But for your prospective map and perhaps any others, I do wonder, @Cernel why not use a true neutral player?

                                    I tried to use the "Neutral" player, at first, but it didn't work, either because you cannot assign phases to it or because you cannot assign triggers to it or both (I don't exactly remember, as I opened this topic 2 months ago).

                                    LaFayetteL 1 Reply Last reply Reply Quote 0
                                    • C Offline
                                      Cernel Moderators Lobby Moderators @redrum
                                      last edited by

                                      @redrum said in Hard or Does Nothing AI for unactive players:

                                      No, ProAI uses a separate casualty selection that is more advanced than Weak/DoesNothing: https://github.com/triplea-game/triplea/blob/master/game-core/src/main/java/games/strategy/triplea/ai/pro/AbstractProAi.java#L346

                                      Right, this is the reason why I would prefer avoiding using "Hard" AI (thus I need "Does Nothing" AI, or something like that), especially since it can be changed any time in the future. I don't want this player to "think" about what to select, but just always go by the autoselect. For example, if, on the last round of a battle, you have a 2/1 and a 1/4 units left and the killed defenders hit once, a thinking player may decide to take out the 2/1 unit, while this non-thinking player should always take out the 1/4 one, instead.

                                      LaFayetteL 1 Reply Last reply Reply Quote 0
                                      • LaFayetteL Offline
                                        LaFayette Admin @Cernel
                                        last edited by

                                        @Cernel Thanks. This sounds like the "convenient but not appropriate" anti-pattern. Lacking the right tool, we used an existing one that was not the right one but made it to work. Instead it sounds like the game engine should be modified to accommodate what you want without using an AI. In other words, instead of an inappropriate hack that is "easy", and breaks design at long term cost, we should instead look at requirements and how to natively support them.

                                        1 Reply Last reply Reply Quote 0
                                        • LaFayetteL Offline
                                          LaFayette Admin @Cernel
                                          last edited by

                                          @Cernel Weak and DNAI are in theory no different from Pro in terms of mutability guarantees. They could change. I'd suspect DNAI is the safest as 'doing nothing' is the most stable and should not be modified beyond the bounds of its intent. Since they both use the same casualty selection, it is subject to change. In practice probably not as we know there are dependencies, but the fact that such dependencies have been created is a problem and should be avoided and removed.

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

                                            I'd actually argue that the regular neutrals on maps is the "hack" and weird "null" player isn't ideal. Really DNAI should be the standard neutral AI player always used for even regular neutrals like on NWO/WaW and should be flexible enough to allow triggers/phases. It should be well defined and generally not change. The problem is the "null" neutral was created in the engine first so I believe when the limitations of it not being a real "ai/player" were then realized later on (can't have triggers/phases/etc) the DNAI was created.

                                            This isn't the case for weak/fast/hard AI which are meant to be "intelligent" AI that try to do all the possible actions given to them and optimize their chance of "winning".

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

                                            C 1 Reply Last reply Reply Quote 1

                                            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
                                            • 1 / 2
                                            • First post
                                              Last post
                                            Copyright © 2016-2018 TripleA-Devs | Powered by NodeBB Forums