GSoC 2013

From PSwiki
Revision as of 21:58, 20 February 2013 by Talad (talk | contribs) (Created page with "== Welcome To Google Summer of Code and Atomic Blue! == == What is this program? == This is the central page for [http://www.google-melange.com/gsoc/homepage/google/gsoc2013...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Welcome To Google Summer of Code and Atomic Blue!

What is this program?

This is the central page for Google GSoC. Join the fun!

Atomic Blue will present itself as a mentoring organization for Google GSoC 2013. The applications for mentoring organizations start on March 18th 2013. So stay tuned for more news from us after this date. A selection will follow.

Please note this program is not a part time activity, but requires time and dedication, in particular it will enroll students full time in a period of 3 months over the summer to produce Open Source code. The project is funded by Google and all students successfully delivering the results will get paid for the work completed over the summer.


Where to begin?

First you need to know our project better, here are the next steps you should follow: 1) Read our PlaneShift web site and learn more about the engine and game we are building 2) Review the ideas list below to get a feeling of what we want to implement 3) Review the list of skills needed for each idea and see which one fits you best 4) Download our sources and start to familiarize with the code. Build our server and client and have it running on your machine. 5) Contact us if you need more information:

Main Ideas

This section collects ideas we think are large enough to be developed over the GSoC coding period, which lasts 3-4 months. Please note that we are improving the ideas right now, so check back often for updates.

If you think you have a good idea to add to the list, please let us know! We are eager to add one project if it's worth it.

Dynamic Economy

Summary: Our virtual world has a vivid economy, with two main active actors: players and shopkeepers. Players can participate to the economy by finding items and selling those in shops or to other players. Shopkeepers (managed by the server) are producing items, repairing existing items. In addition there are other producers/consumers of income like loot, trainers, crafting and more. With so many variables there is a need of a central Economy Manager, which can monitor and tweak the prices based on offer and demand, and differenciate better the shopkeepers depending on their location, near resources, type of city, etc... The main goal of this project is to build such an Economy Manager based on the existing implementation of shops and loot.

Difficulty: Medium

Skills needed: For this project C++ knowledge is needed with some knowledge of mysql.

Details: Please read the details in this page Dynamic Economy




Tribes

Summary: The main goal of the new system is to solve the above issues and in particular:

   The world should run more as a 'simulation' so that things are happening/changing whether players are around or not. If areas are ignored by players, npc population grows and npc's even compete with each other for good spots. Obviously if the players are not there, the server can use shortcuts and calculate progression only when a player visits the location, or regularly, example every hour.
   NPCs should have a concept of a “tribe” they should know they belong to a group of people and contribute to the growth of this group.
   NPCs should be able to find resources, build huts, houses and then villages if intelligent, mate, have children, build defenses, grow in wealth and number, attack other tribes, etc.
   Players need to team up to keep certain areas cleared of bad guys, so teamwork and organization are required to keep the game somewhat orderly.


The goal of this system is to provide a basis of realistic behaviour for NPCs based on daily tasks assigned to it by the tribal object yet still retain the individuality of its race or type. The communication must be two-way, members can send requests or information to the tribal object for help or if they suspect an invasion for example. So for example, a tribe could consist of both humans and krans, the tribal object assigning the krans the task of patrolling and defence while the humans act as resource gatherers and explorers. The tribal object has a set of needs similar to every normal NPC but acts on them in a more dynamic manner and NPCs should be able to alter their own behaviours and adapt them to the situation.

Difficulty: Composed of various tasks from medium to high

Skills needed: For this project C++ knowledge is needed.

Details: Artificial intelligence for Tribes expansion 2012


Statistics

  • Analysis package of data mining data (Medium) and better server reporting (Easy)

GUI

  • Improved UI 2012 Includes improvements to the Help system, fixes to the interface, conversion to plugin. Enhancement to the Container System, and Crafting of books.

Mechanisms

  • Adding Mechanisms and more interaction with the world.

Hardcoding removal

  • Hardcoding removal: Involves moving some of the hardcoded skills/stats/rules/mechanics from the code to the database, making the engine more flexible and more maintainable. (easy to hard)

Other smaller / fragmented tasks

This section contains ideas which have not yet been developed into main ideas. We are not sure if one of these can really cover the 3 months period of GSoC and so those are pending review, discussion and expansion to be moved in the previous section.

Database

  • Database reconstruction: Optimise database with innodb triggers, rework of tables, new index, scalability and subdivision of data between different servers...(hard)

Networking

  • TCP layer: add a TCP layer so that clients have the option of connecting with TCP instead. TCP can be preferable for people connecting via wireless or high-bandwidth connections, which is increasingly the case. The relatively high latency to PS servers also means the latency benefits of UDP are not as useful. (hard)
  • IPV4 TO IPV6: changing the code so it doesn't rely specifically on IPV4 or IPV6, allow to define various listen interfaces either IPV4 and IPV6. Remove network logic which can be left to system libraries. Conversion to plugin.(easy to medium depending on the parts which are picked up)

Effect Library

  • PSEFFECT: conversion to plugin and performance optimizations. Maybe adding support for 2d objects.(medium)

Headless Client

  • Integration testing: Modify the client to have a headless option to allow for easy integration testing and for combat simulation. This can make it much easier to test balance changes. (medium)

Server reliability

  • Unit Testing: Implement a basic unit testing framework for common server commands and actions. (Medium)

Mail System

  • A way for player and gm to send in game mails to other players also with items "attached"

Click to move

  • From the work in crystal space of 2 years ago during GSOC last year we merged a functionality called NAVMESH in our npcclient. It would be nice if it was possible to show these generated navmesh in clients as a debug features (probably enable-able only from config files or compile time) and also make use of them to allow point and click reliable movement, as right now the algorithm is not able to know if it will hit a wall or a deep hole and will go toward those dangers.

Return to login

  • Add support to return to the login window instead of closing the client entirely.

Make the world less static

  • Add support to define or recognise in some way special area: for example water. Apply effects to the camera when inside the area and activate things like swimming and diving (with control of breath if applicable).
  • Add support for flying (not globally but only when allowed from the server) and prevent players to get out of bounds through this.
  • Add support for boats and flying mounts (this has the prerequisite of the previous entries)
  • Add support for things like night vision or other effects depending on current context and activated from the server.

Monsters' sounds perception

  • Implementation of monsters' sound perception. For example a thief that moves close to a monster without making too much noise will be able to attack it first, while a player with no sneaking skills will be heard by the monster and he will be attacked.