MIXAL
Public Member Functions | Static Public Member Functions | Public Attributes | Friends | List of all members
mixal::Atomic Struct Reference

#include <expression.h>

Public Member Functions

 Atomic (AtomicType _type=AtomicType::INTEGER, bool _negative=false)
 
 Atomic (AtomicType _type, int32_t _value, bool _negative=false)
 
 Atomic (AtomicType _type, const std::string &_value, bool _negative=false)
 
 Atomic (const Atomic &atomic)
 
bool operator== (const Atomic &atomic)
 
bool operator!= (const Atomic &atomic)
 
bool isLocalSymbol () const
 
void replaceSymbol (const std::string &symbol)
 

Static Public Member Functions

static bool isLocalSymbol (const std::string &symbol)
 

Public Attributes

AtomicType type
 
bool negative
 
int32_t integer
 
std::string symbol
 

Friends

std::ostream & operator<< (std::ostream &out, const Atomic &atomic)
 

Detailed Description

Store the information about an atomic.

Definition at line 25 of file expression.h.

Constructor & Destructor Documentation

◆ Atomic() [1/4]

mixal::Atomic::Atomic ( AtomicType  _type = AtomicType::INTEGER,
bool  _negative = false 
)
explicit

Initialize the atomic with specific atomic type.

Definition at line 6 of file atomic.cpp.

6  :
7  type(_type), negative(_negative), integer(), symbol() {}

◆ Atomic() [2/4]

mixal::Atomic::Atomic ( AtomicType  _type,
int32_t  _value,
bool  _negative = false 
)

Initialize the atomic with an integer value.

Definition at line 9 of file atomic.cpp.

9  :
10  type(_type), negative(_negative), integer(_value), symbol() {}

◆ Atomic() [3/4]

mixal::Atomic::Atomic ( AtomicType  _type,
const std::string &  _value,
bool  _negative = false 
)

Initialize the atomic with a symbol.

Definition at line 12 of file atomic.cpp.

12  :
13  type(_type), negative(_negative), integer(), symbol(_value) {}

◆ Atomic() [4/4]

mixal::Atomic::Atomic ( const Atomic atomic)

Initialize the atomic with another atomic.

Definition at line 15 of file atomic.cpp.

15  :
16  type(atomic.type), negative(atomic.negative), integer(), symbol() {
17  if (type == AtomicType::INTEGER) {
18  integer = atomic.integer;
19  } else {
20  symbol = atomic.symbol;
21  }
22 }

References integer, symbol, and type.

Member Function Documentation

◆ isLocalSymbol() [1/2]

bool mixal::Atomic::isLocalSymbol ( ) const

Whether the atomic is a local symbol.

See also
isLocalSymbol(const std::string&)

Definition at line 50 of file atomic.cpp.

50  {
51  return type == AtomicType::SYMBOL && Atomic::isLocalSymbol(symbol);
52 }

References symbol, and type.

Referenced by mixal::Computer::loadCodes().

◆ isLocalSymbol() [2/2]

bool mixal::Atomic::isLocalSymbol ( const std::string &  symbol)
static

Whether the symbol is a local symbol.

A local symbol has the form [0-9][HFB] (here, forward, backward).

Definition at line 44 of file atomic.cpp.

44  {
45  return symbol.size() == 2 &&
46  ('0' <= symbol[0] && symbol[0] <= '9') &&
47  (symbol[1] == 'H' || symbol[1] == 'F' || symbol[1] == 'B');
48 }

References symbol.

◆ operator!=()

bool mixal::Atomic::operator!= ( const Atomic atomic)

Whether two atomics are different.

Definition at line 31 of file atomic.cpp.

31  {
32  return !((*this) == atomic);
33 }

◆ operator==()

bool mixal::Atomic::operator== ( const Atomic atomic)

Whether two atomics are the same.

Definition at line 24 of file atomic.cpp.

24  {
25  if (type != atomic.type || negative != atomic.negative) {
26  return false;
27  }
28  return type == AtomicType::INTEGER ? integer == atomic.integer : symbol == atomic.symbol;
29 }

References integer, negative, symbol, and type.

◆ replaceSymbol()

void mixal::Atomic::replaceSymbol ( const std::string &  symbol)

Replace the symbol with the actual location.

If the symbol is 2B, it should be replaced with the location of the nearest 2H before the current location.

If the symbol is 4F, it should be replaced with the location of the nearest 4H after the current location.

Parameters
symbolA temporary name representing the location that should be replaced to.

Definition at line 54 of file atomic.cpp.

54  {
55  this->symbol = symbol;
56 }

References symbol.

Friends And Related Function Documentation

◆ operator<<

std::ostream& operator<< ( std::ostream &  out,
const Atomic atomic 
)
friend

Outputs the integer or the symbol based on the atomic type.

Definition at line 35 of file atomic.cpp.

35  {
36  switch (atomic.type) {
37  case AtomicType::INTEGER: out << atomic.integer; break;
38  case AtomicType::SYMBOL: out << atomic.symbol; break;
39  case AtomicType::ASTERISK: out << atomic.symbol; break;
40  }
41  return out;
42 }

Member Data Documentation

◆ integer

int32_t mixal::Atomic::integer

The absolute value part of the integer.

Definition at line 28 of file expression.h.

Referenced by Atomic(), mixal::Expression::evaluate(), and operator==().

◆ negative

bool mixal::Atomic::negative

The sign for the integer value.

Definition at line 27 of file expression.h.

Referenced by mixal::Expression::evaluate(), and operator==().

◆ symbol

std::string mixal::Atomic::symbol

The named symbol for the symbol and the current location.

Definition at line 29 of file expression.h.

Referenced by Atomic(), mixal::Expression::evaluate(), isLocalSymbol(), operator==(), and replaceSymbol().

◆ type

AtomicType mixal::Atomic::type

The type of the atomic.

Definition at line 26 of file expression.h.

Referenced by Atomic(), mixal::Expression::evaluate(), isLocalSymbol(), and operator==().


The documentation for this struct was generated from the following files:
mixal::Atomic::negative
bool negative
Definition: expression.h:27
mixal::Atomic::integer
int32_t integer
Definition: expression.h:28
mixal::Atomic::type
AtomicType type
Definition: expression.h:26
mixal::Atomic::symbol
std::string symbol
Definition: expression.h:29
mixal::Atomic::isLocalSymbol
bool isLocalSymbol() const
Definition: atomic.cpp:50