qmlfrontend/team.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 27 Aug 2019 23:16:42 +0200
changeset 15370 5a934f83d5eb
parent 14291 f1a5b7baa87f
permissions -rw-r--r--
Tempoary (!!!) workaround for incorrect key combination description in frontend This workaround fixes the incorrect string while preserving translations and the 1.0.0 string freeze. Remember to revert this commit and fix the string in binds.cpp after the 1.0.0 release!

#include "team.h"

Hedgehog::Hedgehog()
    : name(QObject::tr("unnamed", "default hedgehog name").toUtf8()),
      hat("NoHat"),
      hp(100),
      level(0) {}

Team::Team()
    : name(QObject::tr("unnamed", "default team name").toUtf8()),
      color("12345678"),
      m_hedgehogsNumber(4) {
  m_hedgehogs.resize(8);
}

void Team::resize(int number) { m_hedgehogsNumber = number; }

QVector<Hedgehog> Team::hedgehogs() const {
  return m_hedgehogs.mid(0, m_hedgehogsNumber);
}