/* -*- c++ -*- */
/*
 * Copyright 2015 Free Software Foundation, Inc.
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#ifndef INCLUDED_DTV_DVBT_MAP_IMPL_H
#define INCLUDED_DTV_DVBT_MAP_IMPL_H

#include "dvbt_configure.h"
#include <gnuradio/dtv/dvbt_map.h>

namespace gr {
namespace dtv {

class dvbt_map_impl : public dvbt_map
{
private:
    const dvbt_configure config;

    const int d_nsize;

    // Constellation size
    const unsigned char d_constellation_size;
    // Step on each axis of the constellation
    const unsigned char d_step;
    // Keep Alpha internally
    const unsigned char d_alpha;
    // Gain for the complex values
    const float d_gain;

    std::vector<gr_complex> d_constellation_points;

    void make_constellation_points(int size, int step, int alpha);
    gr_complex find_constellation_point(int val);

    // Return gray representation from natural binary
    unsigned int bin_to_gray(unsigned int val);

public:
    dvbt_map_impl(int nsize,
                  dvb_constellation_t constellation,
                  dvbt_hierarchy_t hierarchy,
                  dvbt_transmission_mode_t transmission,
                  float gain);
    ~dvbt_map_impl() override;

    void forecast(int noutput_items, gr_vector_int& ninput_items_required) override;

    int general_work(int noutput_items,
                     gr_vector_int& ninput_items,
                     gr_vector_const_void_star& input_items,
                     gr_vector_void_star& output_items) override;
};

} // namespace dtv
} // namespace gr

#endif /* INCLUDED_DTV_DVBT_MAP_IMPL_H */