qmlfrontend/team.cpp
author Pekka Ristola <pekkarr@protonmail.com>
Mon, 27 Jan 2025 19:08:05 +0100
changeset 16096 dbdb98dafd80
parent 14312 f1a5b7baa87f
permissions -rw-r--r--
Add support for ffmpeg 6.0 - Use the new send_frame/receive_packet API for encoding - Use the new channel layout API for audio - Fix audio recording - Copy codec parameters to the stream parameters - Set correct pts for audio frames - Read audio samples from file directly to the refcounted AVFrame buffer instead of the `g_pSamples` buffer - Use global AVPackets allocated with `av_packet_alloc` - Stop trying to write more audio frames when `WriteAudioFrame` fails with a negative error code - Fix segfault with `g_pContainer->url`. The field has to be allocated with `av_malloc` before writing to it. It's set to `NULL` by default. - Properly free allocations with `avcodec_free_context` and `avformat_free_context`
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14164
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
     1
#include "team.h"
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
     2
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
     3
Hedgehog::Hedgehog()
14312
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
     4
    : name(QObject::tr("unnamed", "default hedgehog name").toUtf8()),
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
     5
      hat("NoHat"),
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
     6
      hp(100),
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
     7
      level(0) {}
14164
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
     8
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
     9
Team::Team()
14312
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
    10
    : name(QObject::tr("unnamed", "default team name").toUtf8()),
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
    11
      color("12345678"),
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
    12
      m_hedgehogsNumber(4) {
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
    13
  m_hedgehogs.resize(8);
14164
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
    14
}
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
    15
14312
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
    16
void Team::resize(int number) { m_hedgehogsNumber = number; }
14164
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
    17
14312
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
    18
QVector<Hedgehog> Team::hedgehogs() const {
f1a5b7baa87f Format team.* code
unc0rr
parents: 14164
diff changeset
    19
  return m_hedgehogs.mid(0, m_hedgehogsNumber);
14164
745c73e0e644 Start working on frontend to rust engine rewrite
unC0Rr
parents:
diff changeset
    20
}