82 lines
2.1 KiB
Python
82 lines
2.1 KiB
Python
from core.models import Collection, Item, Timeline as BaseTimeline
|
|
from django.db import models
|
|
from django.utils.translation import ugettext as _
|
|
|
|
|
|
class Console(Collection):
|
|
"""
|
|
All console, system or box that can be used to play video games.
|
|
"""
|
|
def __str__(self):
|
|
return '%s' % self.name
|
|
|
|
class Meta:
|
|
ordering = ('name',)
|
|
verbose_name = _('console')
|
|
verbose_name_plural = _('consoles')
|
|
|
|
|
|
class Game(Item):
|
|
"""
|
|
A video game you will use on a specific Console.
|
|
"""
|
|
# class config
|
|
TARGET_MODEL = 'games.Console'
|
|
TARGET_VERBOSE_NAME = _('console')
|
|
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,
|
|
verbose_name=_('playing?'),
|
|
help_text=_('You\'re currently playing this game.'))
|
|
unplayed = models.BooleanField(
|
|
default=False,
|
|
verbose_name=_('unplayed?'),
|
|
help_text=_('You never played this game.'))
|
|
wish = models.BooleanField(
|
|
default=False,
|
|
verbose_name=_('wish?'),
|
|
help_text=_('You\'re waiting X-mas father offers you this game.'))
|
|
|
|
class Meta:
|
|
ordering = ('-playing', 'name')
|
|
verbose_name = _('game')
|
|
verbose_name_plural = _('games')
|
|
|
|
|
|
class Timeline(BaseTimeline):
|
|
TARGET_MODEL = 'games.Game'
|
|
TARGET_VERBOSE_NAME = 'game'
|
|
STATUS_CHOICES = Game.STATUS_CHOICES
|
|
DEFAULT_CHOICE = Item.DEFAULT_CHOICE
|
|
|
|
class Meta:
|
|
ordering = ('-date',)
|
|
verbose_name = _('Timeline')
|
|
verbose_name_plural = _('Timelines')
|