qmlfrontend/team.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 25 Apr 2019 23:01:05 +0200
changeset 14839 e239378a9400
parent 14291 f1a5b7baa87f
permissions -rw-r--r--
Prevent entering “/”, “\” and “:” in team and scheme names. The name of teams and schems is saved in the file name itself, so these characters would cause trouble as they are used in path names in Linux and Windows.

#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);
}