/***************************************************************************
 *
 * Project:  OpenCPN
 * Purpose:  NMEA0183 Support Classes
 * Author:   Samuel R. Blackburn, David S. Register
 *
 ***************************************************************************
 *   Copyright (C) 2010 by Samuel R. Blackburn, David S Register           *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,  USA.             *
 ***************************************************************************
 *
 *   S Blackburn's original source license:                                *
 *         "You can use it any way you like."                              *
 *   More recent (2010) license statement:                                 *
 *         "It is BSD license, do with it what you will"                   *
 */

#include <math.h>

#include "nmea0183.h"
#include "Sentence.hpp"

#if !defined(NAN)

// static const long long lNaN = 0x7fffffffffffffff;

//#define NaN (*(double*)&lNaN)
//#else
static const long long lNaN = 0xfff8000000000000;
#define NAN (*(double*)&lNaN)

#endif

/*
** Author: Samuel R. Blackburn
** CI$: 76300,326
** Internet: sammy@sed.csc.com
**
** You can use it any way you like.
*/

SENTENCE::SENTENCE() { Sentence.Empty(); }

SENTENCE::~SENTENCE() { Sentence.Empty(); }

NMEA0183_BOOLEAN SENTENCE::Boolean(int field_number) const {
  //   ASSERT_VALID( this );

  wxString field_data;

  field_data = Field(field_number);

  if (field_data.StartsWith(_T("A"))) {
    return (NTrue);
  } else if (field_data.StartsWith(_T("V"))) {
    return (NFalse);
  } else {
    return (Unknown0183);
  }
}

COMMUNICATIONS_MODE SENTENCE::CommunicationsMode(int field_number) const {
  //   ASSERT_VALID( this );

  wxString field_data;

  field_data = Field(field_number);

  if (field_data == _T("d")) {
    return (F3E_G3E_SimplexTelephone);
  } else if (field_data == _T("e")) {
    return (F3E_G3E_DuplexTelephone);
  } else if (field_data == _T("m")) {
    return (J3E_Telephone);
  } else if (field_data == _T("o")) {
    return (H3E_Telephone);
  } else if (field_data == _T("q")) {
    return (F1B_J2B_FEC_NBDP_TelexTeleprinter);
  } else if (field_data == _T("s")) {
    return (F1B_J2B_ARQ_NBDP_TelexTeleprinter);
  } else if (field_data == _T("w")) {
    return (F1B_J2B_ReceiveOnlyTeleprinterDSC);
  } else if (field_data == _T("x")) {
    return (A1A_MorseTapeRecorder);
  } else if (field_data == _T("{")) {
    return (A1A_MorseKeyHeadset);
  } else if (field_data == _T("|")) {
    return (F1C_F2C_F3C_FaxMachine);
  } else {
    return (CommunicationsModeUnknown);
  }
}

unsigned char SENTENCE::ComputeChecksum(void) const {
  unsigned char checksum_value = 0;

  char str_ascii[101];
  strncpy(str_ascii, (const char*)Sentence.mb_str(), 99);
  str_ascii[100] = '\0';

  int string_length = strlen(str_ascii);
  int index = 1;  // Skip over the $ at the begining of the sentence

  while (index < string_length && str_ascii[index] != '*' && str_ascii[index] != CARRIAGE_RETURN && str_ascii[index] != LINE_FEED) {
    checksum_value ^= str_ascii[index];
    index++;
  }

  return (checksum_value);
}

double SENTENCE::Double(int field_number) const {
  //  ASSERT_VALID( this );
  if (Field(field_number).Len() == 0) return (NAN);

  return (::atof(Field(field_number).mb_str()));
}

EASTWEST SENTENCE::EastOrWest(int field_number) const {
  //   ASSERT_VALID( this );

  wxString field_data;

  field_data = Field(field_number);

  if (field_data == _T("E")) {
    return (East);
  } else if (field_data == _T("W")) {
    return (West);
  } else {
    return (EW_Unknown);
  }
}

const wxString& SENTENCE::Field(int desired_field_number) const {
  //   ASSERT_VALID( this );

  static wxString return_string;
  return_string.Empty();

  int index = 1;  // Skip over the $ at the begining of the sentence
  int current_field_number = 0;
  int string_length = 0;

  string_length = Sentence.Len();

  while (current_field_number < desired_field_number && index < string_length) {
    if (Sentence[index] == ',' || Sentence[index] == '*') {
      current_field_number++;
    }

    if (Sentence[index] == '*') return_string += Sentence[index];
    index++;
  }

  if (current_field_number == desired_field_number) {
    while (index < string_length && Sentence[index] != ',' && Sentence[index] != '*' && Sentence[index] != 0x00) {
      return_string += Sentence[index];
      index++;
    }
  }

  return (return_string);
}

int SENTENCE::GetNumberOfDataFields(void) const {
  //   ASSERT_VALID( this );

  int index = 1;  // Skip over the $ at the begining of the sentence
  int current_field_number = 0;
  int string_length = 0;

  string_length = Sentence.Len();

  while (index < string_length) {
    if (Sentence[index] == '*') {
      return ((int)current_field_number);
    }

    if (Sentence[index] == ',') {
      current_field_number++;
    }

    index++;
  }

  return ((int)current_field_number);
}

void SENTENCE::Finish(void) {
  //   ASSERT_VALID( this );

  unsigned char checksum = ComputeChecksum();

  wxString temp_string;

  temp_string.Printf(_T("*%02X%c%c"), (int)checksum, CARRIAGE_RETURN, LINE_FEED);
  Sentence += temp_string;
}

int SENTENCE::Integer(int field_number) const {
  //   ASSERT_VALID( this );

  return (::atoi(Field(field_number).mb_str()));
}

NMEA0183_BOOLEAN SENTENCE::IsChecksumBad(int checksum_field_number) const {
  //   ASSERT_VALID( this );

  /*
  ** Checksums are optional, return TRUE if an existing checksum is known to be bad
  */

  wxString checksum_in_sentence = Field(checksum_field_number);

  if (checksum_in_sentence == _T("")) {
    return (Unknown0183);
  }

  wxString check = checksum_in_sentence.Mid(1);
  if (ComputeChecksum() != HexValue(check)) {
    return (NTrue);
  }

  return (NFalse);
}

LEFTRIGHT SENTENCE::LeftOrRight(int field_number) const {
  //   ASSERT_VALID( this );

  wxString field_data;

  field_data = Field(field_number);

  if (field_data == _T("L")) {
    return (Left);
  } else if (field_data == _T("R")) {
    return (Right);
  } else {
    return (LR_Unknown);
  }
}

NORTHSOUTH SENTENCE::NorthOrSouth(int field_number) const {
  //   ASSERT_VALID( this );

  wxString field_data;

  field_data = Field(field_number);

  if (field_data == _T("N")) {
    return (North);
  } else if (field_data == _T("S")) {
    return (South);
  } else {
    return (NS_Unknown);
  }
}

REFERENCE SENTENCE::Reference(int field_number) const {
  //   ASSERT_VALID( this );

  wxString field_data;

  field_data = Field(field_number);

  if (field_data == _T("B")) {
    return (BottomTrackingLog);
  } else if (field_data == _T("M")) {
    return (ManuallyEntered);
  } else if (field_data == _T("W")) {
    return (WaterReferenced);
  } else if (field_data == _T("R")) {
    return (RadarTrackingOfFixedTarget);
  } else if (field_data == _T("P")) {
    return (PositioningSystemGroundReference);
  } else {
    return (ReferenceUnknown);
  }
}

TRANSDUCER_TYPE SENTENCE::TransducerType(int field_number) const {
  //   ASSERT_VALID( this );

  wxString field_data;

  field_data = Field(field_number);

  if (field_data == _T("A")) {
    return (AngularDisplacementTransducer);
  } else if (field_data == _T("D")) {
    return (LinearDisplacementTransducer);
  } else if (field_data == _T("C")) {
    return (TemperatureTransducer);
  } else if (field_data == _T("F")) {
    return (FrequencyTransducer);
  } else if (field_data == _T("N")) {
    return (ForceTransducer);
  } else if (field_data == _T("P")) {
    return (PressureTransducer);
  } else if (field_data == _T("R")) {
    return (FlowRateTransducer);
  } else if (field_data == _T("T")) {
    return (TachometerTransducer);
  } else if (field_data == _T("H")) {
    return (HumidityTransducer);
  } else if (field_data == _T("V")) {
    return (VolumeTransducer);
  } else {
    return (TransducerUnknown);
  }
}

/*
** Operators
*/

SENTENCE::operator wxString() const {
  //   ASSERT_VALID( this );

  return (Sentence);
}

const SENTENCE& SENTENCE::operator=(const SENTENCE& source) {
  //   ASSERT_VALID( this );

  Sentence = source.Sentence;

  return (*this);
}

const SENTENCE& SENTENCE::operator=(const wxString& source) {
  //   ASSERT_VALID( this );

  Sentence = source;

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(const wxString& source) {
  //   ASSERT_VALID( this );

  Sentence += _T(",");
  Sentence += source;

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(double value) {
  //   ASSERT_VALID( this );

  wxString temp_string;

  temp_string.Printf(_T("%.3f"), value);

  Sentence += _T(",");
  Sentence += temp_string;

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(COMMUNICATIONS_MODE mode) {
  //   ASSERT_VALID( this );

  Sentence += _T(",");

  switch (mode) {
    case F3E_G3E_SimplexTelephone:

      Sentence += _T("d");
      break;

    case F3E_G3E_DuplexTelephone:

      Sentence += _T("e");
      break;

    case J3E_Telephone:

      Sentence += _T("m");
      break;

    case H3E_Telephone:

      Sentence += _T("o");
      break;

    case F1B_J2B_FEC_NBDP_TelexTeleprinter:

      Sentence += _T("q");
      break;

    case F1B_J2B_ARQ_NBDP_TelexTeleprinter:

      Sentence += _T("s");
      break;

    case F1B_J2B_ReceiveOnlyTeleprinterDSC:

      Sentence += _T("w");
      break;

    case A1A_MorseTapeRecorder:

      Sentence += _T("x");
      break;

    case A1A_MorseKeyHeadset:

      Sentence += _T("{");
      break;

    case F1C_F2C_F3C_FaxMachine:

      Sentence += _T("|");
      break;

    case CommunicationsModeUnknown:

      break;
  }

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(TRANSDUCER_TYPE transducer) {
  //   ASSERT_VALID( this );

  Sentence += _T(",");

  switch (transducer) {
    case TemperatureTransducer:

      Sentence += _T("C");
      break;

    case AngularDisplacementTransducer:

      Sentence += _T("A");
      break;

    case LinearDisplacementTransducer:

      Sentence += _T("D");
      break;

    case FrequencyTransducer:

      Sentence += _T("F");
      break;

    case ForceTransducer:

      Sentence += _T("N");
      break;

    case PressureTransducer:

      Sentence += _T("P");
      break;

    case FlowRateTransducer:

      Sentence += _T("R");
      break;

    case TachometerTransducer:

      Sentence += _T("T");
      break;

    case HumidityTransducer:

      Sentence += _T("H");
      break;

    case VolumeTransducer:

      Sentence += _T("V");
      break;

    case TransducerUnknown:

      Sentence += _T("?");
      break;
  }

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(NORTHSOUTH northing) {
  //   ASSERT_VALID( this );

  Sentence += _T(",");

  if (northing == North) {
    Sentence += _T("N");
  } else if (northing == South) {
    Sentence += _T("S");
  }

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(int value) {
  //   ASSERT_VALID( this );

  wxString temp_string;

  temp_string.Printf(_T("%d"), value);

  Sentence += _T(",");
  Sentence += temp_string;

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(EASTWEST easting) {
  //   ASSERT_VALID( this );

  Sentence += _T(",");

  if (easting == East) {
    Sentence += _T("E");
  } else if (easting == West) {
    Sentence += _T("W");
  }

  return (*this);
}

const SENTENCE& SENTENCE::operator+=(NMEA0183_BOOLEAN boolean) {
  //   ASSERT_VALID( this );

  Sentence += _T(",");

  if (boolean == NTrue) {
    Sentence += _T("A");
  } else if (boolean == NFalse) {
    Sentence += _T("V");
  }

  return (*this);
}
