Difference between revisions of "EasyCoding"

From The Battle for Wesnoth Wiki
(MP related features)
(MP related features)
Line 23: Line 23:
 
=== Use different font for in-game chat ===
 
=== Use different font for in-game chat ===
 
Since commas and dots are apparently hard to tell apart. As per FR #7470 [https://gna.org/bugs/?7470]
 
Since commas and dots are apparently hard to tell apart. As per FR #7470 [https://gna.org/bugs/?7470]
 +
=== Allow lists for /ignore and similar ===
 +
As per FR #7492 [https://gna.org/bugs/?7492]
  
 
== WML related features ==
 
== WML related features ==

Revision as of 23:50, 31 March 2008

Foreword

This page is here to document easy to do coding tasks. It is not here to double the feature request database, and should only be filled by people that know the code well enough to judge the difficulty of a given task.

If you are such a person, you should feel free to edit this page.

If you're not, you should post a feature request and discuss your idea on the forum or IRC. A coder with better knowledge of the code might give you the green light to add your feature here.

Anybody should feel free to add "clues" to any tasks, that is entry points, traps to avoid, person to contact to discuss and so on.

If you plan to work on a feature, write your name at the bottom of the feature, with the date. Note that if you are too long at working on a feature I'll "free" it back (that is if you're not working on it. If you have problems implementing it, just tell us....)


--Boucman 20:48, 3 October 2006 (CEST)


Since bugs are sometimes a good opportunity to get a first idea of the code, i will add some here that are easy to fix as soon as i stumble upon them (the one i had in mind is fixed already ;-).

--Yogi Bear, 28 February 2008

MP related features

Add TTL to wesnothd bans

As per FR #3638 [1]

Use different font for in-game chat

Since commas and dots are apparently hard to tell apart. As per FR #7470 [2]

Allow lists for /ignore and similar

As per FR #7492 [3]

WML related features

WML configurable village income / upkeep

Preferably as a [scenario], [side] or [campaign] keys. As per FR #6301 [4]

Add support of [if] for [scenario]

As per FR #4539 [5]

Allow an event multiple types

At the moment an [event] can only trigger on one kind of an event: a name=moveto only triggers on a move, a name=die only triggers on a death, and so on. However, it'd sometimes be useful to be able to define a list of types: if you'd have an [event] with name=attacker_misses,defender_misses, then that event would trigger both on the attacker missing and defender missing. Currently, you'd have to create two identical [event]s to do this.

Cause preprocesor to throw a warning on undefined macro

At the moment preprocesor silently ignores undefined WML macros, make it throw a warning to the stderr or screen on encountering one. -- patch submitted [6] by cjhopman

Make [have_unit] optionaly use full SUF

[have_unit] by default uses SUF but does not apply it to recall list. Introduce an optional key that will allow to lift that limitation.

Introducing consistent invocation of SUF

Some tags using SUF do not use [filter] to describe it. This should be changed to achieve some consistency, but backwards compatibility should be preserved for now. Probably exhaustive list of tags to work on includes :

  • [kill]
  • [recall]
  • [role]
  • [scroll_to_unit]

Side-specific results

Giving result=defeat or result=victory for specific sides. (FR #4960) -- dlr365 -- patch submitted [7]

Recall Event

WML event trigger for recalling (the current one triggers on both recalls and recruits) (FR #3622) (please read the comments of the report for a proper description of how this should work)

Enabling checking of damage dealt in WML

A WML variable should be set when triggering some combat-related events, allowing WML to know the amount of damage being dealt. (FR #7673)

Support for leaderless multiplayergames

Add support for the WML key victory_when_enemies_defeated= in the scenario tag during multiplayergames. (FR #8106)

Other Ideas

See FutureWML; some ideas there are easier than others.

Improvements to FormulaAI

Add new formula functions, or minor improvements to the formula language. Make it easier to debug the formula language.

GUI related features

Change map paths from dots to dashes

Or even better allow dashes and allow choice between the two. As per FR #5522 [8]


Note at the moment Mordante is working on a new GUI system, these changes will probably affect the way these items need to be implemented. Contact Mordante on IRC before starting to work on these.

--SkeletonCrew 14:04, 9 March 2008 (EDT)

Theme Changes

  • show number of owned villages/total villages (FR: #3135) (--alink done but must update help, doc, tooltip...)
  • allow custom themes to display values of WML variables (FR #6209)
  • hide the hourglass item from the statusbar when there is no timer

Widget Changes

  • show side number, name and team association information in the status table
  • make games sortable in the lobby (open slots, total number of players, era, XP modifier, gold per village, fog/shroud)
  • input history (chat, commands, ..) - note: rujasu is working on this feature

Miscellaneous

More powerful village naming

Adding mountain names and other features to village names, having a second random name in village names

Currently the village naming engine has a very good structure that could allow more powerfull names to be generated. Understanding how it works should be quite easy, and a few usefull improvements could be added.

  • Currently villages can use lake names and river names, this should be extended to other features like bridges, swamps, mountains etc...
  • It would be nice to have a separate list of "first sylabus" and "last sylabus" for naming. That's not really needed in english, but some translations could use it
  • Again, it is common to have villages with more than one "random" word in them. having a $name2 variable would be nice

ACardboardRobot 2/2/07

Debug Mode

  • New debug command functionality (setting additional status.variables, possibly terrain)

Additional Commandline Options

Done by lao, actually in trunk, revision 25325.

It would be nice if one could start Wesnoth from commandline specifying whether one wants to connect to a mp-server, load the last savegame or wants to start a campaign. More detailed information and examples are given in the idea forum.

Add minimal regexp to friend list

Lots of people use multiple nicks, usually postfixed with a number... it would be nice to have minimal regexp support in friend list to easily get who's there...

Bugs

See Also

NotSoEasyCoding