openbackloggery/collection/games/models.py

86 lines
2.3 KiB
Python
Raw Normal View History

from core.models import Collection, Item, Timeline as BaseTimeline
2017-08-16 20:00:41 +00:00
from django.db import models
from django.utils.translation import ugettext as _
2017-08-16 20:00:41 +00:00
2017-09-16 15:42:04 +00:00
class Platform(Collection):
2017-08-16 20:00:41 +00:00
"""
2017-09-16 15:42:04 +00:00
All platform, system or box that can be used to play video games.
2017-08-16 20:00:41 +00:00
"""
def __str__(self):
return '%s' % self.name
2017-08-24 20:36:55 +00:00
class Meta:
2017-08-25 12:02:10 +00:00
ordering = ('name',)
2017-09-16 15:42:04 +00:00
verbose_name = _('platform')
verbose_name_plural = _('platforms')
2017-08-24 20:36:55 +00:00
# Redefine help_text (for documentation, API, etc.)
2017-09-16 15:42:04 +00:00
Platform._meta.get_field('name').help_text = _('Most used platform name.')
class Game(Item):
"""
2017-09-16 15:42:04 +00:00
A video game you will use on a specific Platform.
"""
# class config
2017-09-16 15:42:04 +00:00
TARGET_MODEL = 'games.Platform'
TARGET_VERBOSE_NAME = _('platform')
RELATED_TARGET_NAME = 'games'
# Status choices
BEATEN = 'beaten'
COMPLETED = 'completed'
EXCLUDED = 'excluded'
MASTERED = 'mastered'
UNFINISHED = 'unfinished'
STATUS_CHOICES = (
(BEATEN, _('Beaten')),
(COMPLETED, _('Completed')),
(EXCLUDED, _('Excluded')),
(MASTERED, _('Mastered')),
(UNFINISHED, _('Unfinished')),
)
DEFAULT_CHOICE = UNFINISHED
# progression
note = models.CharField(
max_length=150,
null=True,
blank=True,
verbose_name=_('Progress note'),
help_text=_('Short note displayed to your followers.'))
# others
playing = models.BooleanField(
default=False,
2017-08-24 20:36:55 +00:00
verbose_name=_('playing?'),
help_text=_('You\'re currently playing this game.'))
unplayed = models.BooleanField(
default=False,
2017-08-24 20:36:55 +00:00
verbose_name=_('unplayed?'),
help_text=_('You never played this game.'))
wish = models.BooleanField(
default=False,
2017-08-24 20:36:55 +00:00
verbose_name=_('wish?'),
help_text=_('You\'re waiting X-mas father offers you this game.'))
class Meta:
ordering = ('-playing', 'name')
2017-08-24 20:36:55 +00:00
verbose_name = _('game')
verbose_name_plural = _('games')
class Timeline(BaseTimeline):
TARGET_MODEL = 'games.Game'
2017-08-24 20:36:55 +00:00
TARGET_VERBOSE_NAME = 'game'
STATUS_CHOICES = Game.STATUS_CHOICES
DEFAULT_CHOICE = Item.DEFAULT_CHOICE
2017-08-24 20:36:55 +00:00
class Meta:
2017-08-25 12:02:10 +00:00
ordering = ('-date',)
2017-08-24 20:36:55 +00:00
verbose_name = _('Timeline')
verbose_name_plural = _('Timelines')