User:Tschmitz

From The Battle for Wesnoth Wiki
Revision as of 05:29, 8 April 2011 by Tschmitz (talk | contribs) (fixed up some headings again)


This page is related to Summer of Code 2011
See the list of Summer of Code 2011 Ideas



This is a Summer of Code 2011 student page
Project: SoC_Ideas_Whiteboard_2011



Contents

Description

Tommy Schmitz - Whiteboard Improvements

The Wesnoth whiteboard system is the mechanism by which players can plan their strategies in-game. The whiteboard is currently unfinished and requires both debugging and additional features. The proposed project will address these, with the focus on allowing allied players to view each others' plans over the network.

IRC

tschmitz

Submitted Patch

Introduction

Details

"suppose dead" planning

Motivation

"What if that enemy unit wasn't there? Could I reach the enemy leader?"

Proposed Solution

Right-click the unit and select "Suppose dead" from the context menu. The unit will be marked in some way to indicate that you have done this. After doing so, you will be able to plan actions as if that unit wasn't there; this way, you can rely on the pathfinding algorithm to accurately determine the resulting possible moves. Additionally, you will be able to plan subsequent actions in advance, as long as the unit really does die when you think it will (which is a fairly reasonable assumption for attacks with a 99% chance to kill, for example). When you're done playing make-believe, right click the enemy unit and select "Undo suppose dead" to bring things back to reality.

Implementation Details

The option must be added to the context menu when right clicking on enemy units. When the "Suppose dead" command is selected, a "suppose_dead"-type subclass of wb::action (which temporarily removes the unit from the map) will be added to the planned actions queue. Using the existing framework of the whiteboard, this will be a fairly simple way to provide this functionality.

Open Questions

  • What happens if I try to execute the "Suppose dead" planned action (using the 'Y' button)?

I think nothing will happen; if it was during an Execute-All command, the execution will stop, because if you're trying to execute a suppose_dead action in this way, that means the unit didn't die the way you expected it to.

Change behavior of invalid actions

Motivation

One of the best features of the whiteboard will be the ability to start taking your turn during other people's turns, but your plans will be affected by the actions of the player who's taking his or her turn. If this player is your ally, then even their whiteboard plans will be visible to you and will affect (and possibly invalidate) your plans, even if the ally later decides to erase the planned actions that invalidated your planned actions. Currently, invalid actions are immediately discarded when they are discovered. Do you want to have to input your moves again?

Proposed Solution

Instead of immediately discarding invalid actions, they will be preserved, but displayed with a different arrow style to indicate that they are invalid. If the action later becomes valid again, it will simply become valid again. If/when you wish to discard the invalid action, you may do so via the context menu.

Implementation Details

Disable the immediately-discarding-invalid-actions behavior. Add the context menu option to remove invalid actions.

Usually actions become invalid because someone else got in your unit's way. However, sometimes actions become invalid because the unit for which the action was planned has either moved or died. In this case, the planned action will be discarded anyway, because it is either impossible or much less likely for the action to become valid again.

Open Questions

  • Should there be a way to erase all invalid actions?
  • Should there be a preferences setting to immediately discard invalid actions (just like the old way) instead of preserving them?

Multi-turn moves

Motivation

Well, Wesnoth supports multi-turn moves without the whiteboard, so the whiteboard should, too!

Proposed Solution

Implementation Details

Open Questions

Network support

Motivation

Proposed Solution

Implementation Details

Open Questions

Suggesting planned actions to allies

Motivation

Proposed Solution

Implementation Details

Open Questions

"What-if" enemy actions

Motivation

Proposed Solution

Implementation Details

Open Questions

Cumulative combat probability calculations

Motivation

Proposed Solution

Implementation Details

Open Questions

Interface

Motivation

Proposed Solution

Implementation Details

Open Questions

Timeline

Soon (Right now)

  1. Allow "suppose dead" planning
    • What happens when a suppose_dead gets executed? Should it just disappear?
    • What happens when a suppose_dead becomes invalid? Should it just disappear?
    • Back-end: Define a new wb::action subclass called suppose_dead
    • Interface: Add context menu option to create/delete a suppose_dead action

Official Kick-off (May 23, week 0/13)

  1. Change behavior of invalid actions
    • Back-end: Make invalid actions not expire immediately
    • Back-end: Add a new type of "invalidity" for actions:
      • If the player plans a move for a unit and then decides to make a permanent real move with that unit, it invalidates the planned action. However, if the permanent move happens to be the same as the planned move, the planned move should just disappear instead of being marked invalid.
    • Interface: Add new arrow styles
    • Interface: Add context menu option to erase invalid action

School's out! (June 9, week 2.5/13)

  1. Allow multi-turn move actions to be planned
    • Back-end: Add action_queues for future turns
    • Back-end: Modify find_last_action_of() to look in the future action_queues first and progressively go backward
    • Interface: Allow these actions to be created via the normal method: clicking on a hex that's too far away to reach in one turn
    • Interface: Provide visual distinction between current-turn planned moves and future-turn planned moves.
  2. Add network support
    • Back-end: Serialize side_actions class
      • Choose between config or raw data for network representation
    • Back-end: Implement network send and receive
      • Choose whether to send the entire structure or just "diffs"

Personal checkpoint

  • Make sure the above is all done.

Mid-term Evaluation (July 15, week 7.5/13)

  1. Allow players to suggest actions to their allies
    • Back-end: Add action_queues for lists of suggestions from allies
    • Back-end: Add code to serialize, send/receive suggestion objects
    • Interface: Allow players to make suggestions
      • Possibly a menu option to switch to suggestion mode for a particular ally
        • The moves you make for their units will be sent as suggestions to that player
      • Perhaps no special mode -- the moves you make for your allies' units will just be sent as suggestions
    • Interface: Allow players to see suggestions
      • New arrow styles
    • Interface: Allow players to accept/reject suggestions
      • Context menu
  2. (optional) Allow players to make "what-if scenarios" by predicting possible enemy moves
    • Extend the framework for suggestions-to-allies to possible-actions-by-enemies
  3. Implement multiple-attack combat probability analysis
    • Ask Crab_ about the cumulative calculations algorithm
    • Back-end: Implement the calculation
    • Interface: Modify the dialog accordingly
  4. (optional) Change what planned actions look like
    • Possibly make future units no longer gray
    • Discuss possible changes, draw mockups

Personal checkpoint (August 8, week 11/13)

  • Is there enough time to finish at this point? Consider switching to testing and bugfixing at this point.

Suggested Termination (August 15, week 12/13)

  • Test
  • Fix what went wrong

Official Termination (August 22, week 13/13)

Brainstorm

Main goal

  • Planned actions will be visible to allied players

Some other goals

  • Planned action data will be made available to AI scripts
  • Actions can be suggested to other players via "suggested actions"

Other brainstorming

  • Planned action object (be it move, move+attack, recruit, or recall)
    • Additional data: On what turn will this action take place? Allows planning a delayed task
    • Additional data: attacks will include information about whether the player wishes to assume the defender will die or not, and also whether the attacker will die or not
  • Suggested action object
    • A planned action object that uses an allied player's unit as the actor
    • Will be displayed to that player
  • Some interface changes
    • Enable planning multi-turn moves
    • Attack actions ...
      • Perhaps a context menu option to set/unset the "assumed dead" status of units
      • Combat probability analysis dialog will incorporate previous planned attacks against that unit into the "equation"
    • Filtering display of certain planned actions
    • "Foresight view" for allowing one to view the future state of the battlefield
      • Presumably there will be a visual cue (such as graying the battlefield or something) that indicates that the current view is a future turn and not the current turn
      • New UI functions to accomodate this view:
        • "View next turn" button
        • "View previous turn" button (cannot go earlier than current turn)
        • Possibly "View current turn" button
    • "Itinerary view" (text list) of planned actions, listed in order and categorized by turn number.
      • Possibly simplifies the task of reordering actions
    • Making moves during other players' turns
      • Modify the behavior of the screen automatically centering on the moves that are happening.

Questionnaire

1) Basics

1.1) Write a small introduction to yourself. My name is Tommy Schmitz. My legal name is, of course, Thomas, but everyone has always called me Tommy and I have never found any reason to change that, so I'm known as Tommy. I have been a code-tinkerer all my life, but this will be my first time working with other programmers.

1.2) State your preferred email address. tschmitz.wesnoth@gmail.com

1.3) If you have chosen a nick for IRC and Wesnoth forums, what is it? tschmitz

1.4) Why do you want to participate in summer of code? I really want to finally get some experience working on a group project. I was drawn to the Battle for Wesnoth project because it was one of the few that I recognized from the list of participating organizations. I played Wesnoth around two years ago and was surprised to see the name again!

1.5) What are you studying, subject, level and school? I am working toward a bachelor's degree in computer science and mathematics.

1.6) What country are you from, at what time are you most likely to be able to join IRC? I'm from the United States and I have already joined IRC.

1.7) Do you have other commitments for the summer period ? Do you plan to take any vacations ? If yes, when. I will be in school until June 9, so my time will be somewhat limited until this day. Aside from that, my intent for the summer is to take on this project exclusively; I have planned no vacations.


2) Experience

2.1) What programs/software have you worked on before? Aside from command line programs for school, I have mainly worked on small independent projects of my own with the hopes of refining and expanding my game-development tool kit. My most polished project was a Tetris clone implemented as a Java applet.

2.2) Have you developed software in a team environment before? (As opposed to hacking on something on your own) No, but this is something I very much look forward to doing!

2.3) Have you participated to the Google Summer of Code before? As a mentor or a student? In what project? Were you successful? If not, why? No, I didn't hear about the Summer of Code until recently. This is my first time applying!

2.4) Are you already involved with any open source development projects? If yes, please describe the project and the scope of your involvement. No, this will be my first experience.

2.5) Gaming experience - Are you a gamer? Yes.

2.5.1) What type of gamer are you? These days, I only play games when I have spare time, but when I do, I go all out.

2.5.2) What type of games? Platformers are my favorite. I like turn-based strategy games a lot too, though, because it both requires and allows thinking deeply to succeed.

2.5.3) What type of opponents do you prefer? Computer opponents. I prefer to cooperate with my friends rather than compete with them.

2.5.4) Are you more interested in story or gameplay? I very much enjoy both.

2.5.5) Have you played Wesnoth? If so, tell us roughly for how long and whether you lean towards single player or multiplayer.

We do not plan to favor Wesnoth players as such, but some particular projects require a good feeling for the game which is hard to get without having played intensively. I played for a few months and I liked single player, multiplayer, and also making custom content. I tended to prefer playing multiplayer games with my friends.

2.6) If you have contributed any patches to Wesnoth, please list them below. You can also list patches that have been submitted but not committed yet and patches that have not been specifically written for GSoC. If you have gained commit access to our SVN (during the evaluation period or earlier) please state so. None just yet, and I do not yet have commit access.


3) Communication skills

3.1) Though most of our developers are not native English speakers, English is the project's working language. Describe your fluency level in written English. My fluency will be sufficient to communicate with the other collaborators on this project. As a programmer and mathematician, I have excellent attention to detail, which includes the details of English communication (such as grammar).

3.2) What spoken languages are you fluent in? English.

3.3) Are you good at interacting with other players? Our developer community is friendly, but the player community can be a bit rough. In the past, I have played multiplayer games fairly extensively and should fit right in.

3.4) Do you give constructive advice? I do my best to evaluate others' work with the courtesy that I like to have from others.

3.5) Do you receive advice well? Again, I do my best; when receiving advice, I try to focus on the content of the criticism and keep my ego out of the picture.

3.6) Are you good at sorting useful criticisms from useless ones? Once more, I do the best I can -- if someone offers me critique that lacks specificity, I'll ask for clarification. If it's clearly hostile, I'll simply ignore it.

3.7) How autonomous are you when developing ? Would you rather discuss intensively changes and not start coding until you know what you want to do or would you rather code a proof of concept to "see how it turn out", taking the risk of having it thrown away if it doesn't match what the project want I lean toward having discussions to clarify details as much as possible, but if I can't gain an audience, I'll focus on the parts I'm most comfortable with until I can get my questions answered.


4) Project

4.1) Did you select a project from our list? If that is the case, what project did you select? What do you want to especially concentrate on? I picked the whiteboard project mainly because it has no other takers yet, but I think it is a good fit for me because I enjoy collaborative multiplayer games and careful planning and the whiteboard is designed for exactly those purposes. I'm also interested in getting some experience in network programming, and the whiteboard project will have elements of that.

4.2) If you have invented your own project, please describe the project and the scope. I have not.

4.3) Why did you choose this project? For the reasons above, I think that it is a good fit for me and that I will learn a lot doing it.

4.4) Include an estimated timeline for your work on the project. Don't forget to mention special things like "I booked holidays between A and B" and "I got an exam at ABC and won't be doing much then". See the top of this page.

4.5) Include as much technical detail about your implementation as you can Again, see the top of this page.

4.6) What do you expect to gain from this project? This should be a good opportunity for me not only to learn technical skills, but also to experience the dynamic of creating a software project collaboratively.

4.7) What would make you stay in the Wesnoth community after the conclusion of SOC? It's going to be a lot of fun!


5) Practical considerations

5.1) Are you familiar with any of the following tools or languages?

Subversion (used for all commits)

C++ (language used for all the normal source code)

STL, Boost, Sdl (C++ libraries used by Wesnoth)

Python (optional, mainly used for tools)

build environments (eg cmake/scons)

WML (the wesnoth specific scenario language)

Lua (used in combination with WML to create scenarios)

I haven't used SVN much, but I have been introduced to it before and it seems relatively straightforward.

I am quite familiar with C++ and the STL from my programming classes and a few personal projects.

I used WML for a while two years ago, so I'm sure I'll be able to pick it up again fairly quickly.

Unfortunately, I can't say I have had any experience with Boost, Sdl, Python, cmake/scons, or Lua.

5.2) Which tools do you normally use for development? Why do you use them? For my programming classes, we have mainly used the university Unix system to write command line utilities in various languages (C, C++, Java, and Perl in my case). We used "gcc" to compile C++ code, "make" to write build scripts, and RCS for version control. When writing computational tools, I often use the university system since it is nicely set up for me already. More recently, I began to write Java applets, using Sun's compiler and appletviewer and Windows batch files for build scripts, to make graphical applications, mainly because applets are easy to deploy on the web. I usually use Notepad or Pico as text editors, but I have also used Visual C++ for projects from time to time.

5.3) What programming languages are you fluent in? My best are C++, Java, and Matlab. I have also tinkered with HTML, Javascript, PHP, and Perl.

5.4) Would you mind talking with your mentor on telephone / internet phone? We would like to have a backup way for communications for the case that somehow emails and IRC do fail. If you are willing to do so, please do list a phone number (including international code) so that we are able to contact you. You should probably *only* add this number in the application for you submit to google since the info in the wiki is available in public. We will *not* make any use of your number unless some case of "there is no way to contact you" does arise! I certainly would not mind!

SoC Application

tschmitz SoC Application