website logo
Buy CronusGPC LibraryGamePacks (16bit)YouTubeForumsDiscord
📘Cronus Zen Guide
📗GamePacks (32bit)
📗GPC Script Guide
Navigate through spaces
📘Cronus Zen Guide
📗GamePacks (32bit)
📗GPC Script Guide
⌘K
📑GPC SCRIPTING
What's New in 32bit?
Introduction
Variables
Basic GPC Structure
Definitions
Data Section
Remapping
Const Arrays
Init Section
Main Section
Combo Section
User Created Functions
Identifiers
Flow Control
Constants
Functions
Device Functions
Remapping
Advanced Samples
API Samples
Docs powered by archbee 

Operator Types

An operator is a symbol that tells the interpreter to perform specific mathematical, relational, or logical operations and produce the final result. This section details the operators available in GPC.

GPC
|
int a = 10;
int b = 5;
int c = 0;

main {

     // Assignment Operator
     c = 5;        // c is set to a value of 5
     c += 5;       // c is set to a value of 10 (5 + 5 = 10)
     c -= 5;       // c is set to a value of 5 (10 - 5 = 5)
     c *= 5;       // c is set to a value of 25 (5 * 5 = 25)
     c /= 5;       // c is set to a value of 5 (25 / 5 = 5)
     c %= 5;       // c is set to a value of 0 (5 % 5 = 0)
    
     // Mathmatical Operators
     c = a + b;    // Addition        c = 15
     c = a - b;    // Subtraction     c = 5
     c = a * b;    // Multiplication  c = 50
     c = a / b;    // Division        c = 2
     c++;          // Increment       c = 3
     c--;          // Decrement       c = 2
     
     // Logical Operators
     if (c ! a)    // NOT             if c is not a
     if (a && c)   // AND             if a and c are TRUE
     if (a || c)   // OR              if a or c are TRUE
     if (a ^^ c)   // XOR             if either a or c are TRUE but not both
     
     // Relational Operators               
     if (c == 10)  // EQUAL TO                  if c is equal to 10
     if (c != 50)  // NOT EQUAL TO              if c is not equal to 50
     if (c < 20)   // LESS THAN                 if c is less than 20
     if (c > 30)   // GREATER THAN              if c is greater than 30
     if (c <= 40)  // LESS THAN OR EQUAL TO     if c is less than or equal to 40
     if (c >= 40)  // GREATER THAN OR EQUAL TO  if c is greater than or equal to 40
}


Assignment

= is the assignment operator. Think of this as gets set to rather than equal to. When = is used, the left operand gets set to the value of the right operand. There are also a number of short hands for common tasks such as incrementing a value by a set amount.

Operator

Description

=

Sets the left operand to the value of the right operand

+=

Sets the left operand to the value of the left operand plus the right operand

-=

Sets the left operand to the value of the left operand minus the right operand

*=

Sets the left operand to the value of the left operand multiplied by the right operand

/=

Sets the left operand to the value of the left operand divided by the right operand

%=

Sets the left operand to the remainder of dividing the left operand by the right operand

In the example below, assume a holds a value of 10.

GPC
|
a  = 5; // a is set to 5
a += 5; // a is set to 15
a -= 5; // a is set to 5
a *= 5; // a is set to 50
a /= 5; // a is set to 2
a %= 3; // a is set to 1


Arithmetic

It is often necessary to perform arithmetic on two values. The following table lists the arithmetic operators available in GPC.

Operator

Description

+

Adds two operands

-

Subtracts right operand from the left operand

*

Multiplies both operands

/

Divides the left operand by the right operand

%

Modulus, gives the remainder of an integer division

++

Increments by 1

--

Decrements by 1

In the example below, assume a holds a value of 10 and b holds a value of 5.

GPC
|
a + b;    // will give a value of 15
a - b;    // will give a value of 5
a * b;    // will give a value of 50
a / b;    // will give a value of 2
a % b;    // will give a value of 0
a++;      // will give a value of 11
a--;      // will give a value of 9


Note, GPC does not support fractions so the division operator / will drop any fractions. For example, 10 / 3 = 3 as the fraction is dropped. It also does not round, so 3 / 4 = 0 and not 1.

Logical

Logical operators are important in any programming language as they allow to tell the interpreter to make decisions based on certain conditions. The following table lists the logical operators within the GPC language.

Operator

Description

&&

AND operator, if both operators are TRUE then the condition becomes TRUE

||

OR operator, if either operand is TRUE then the condition becomes TRUE

^^

XOR operator, if either operand is TRUE but not both then the condition becomes TRUE

!

NOT operator. Reverses the logical state of an operand.

In the example below, assume a holds a value of 1 and b holds a value of 0.

GPC
|
a && b // value is FALSE
a || b // value is TRUE
a ^^ b // value is TRUE
!b     // value is TRUE
!a     // value is FALSE


Relational

Relational operators produce boolean results (TRUE or FALSE) while comparing two operands. The following tables list the relational operands which are available in GPC.

Operator

Description

==

Equal to, if the left operand holds the same value as the right then the condition becomes TRUE

!=

Not equal to, if the left operand does not hold the same value as the right then the condition becomes TRUE

>

Greater than, if the left operand holds a value greater than the left then the condition becomes TRUE

<

Less than, if the left operand holds a value less than the left then the condition becomes TRUE

>=

Greater than or equal to, if the left operand holds a value which is greater than or equal to the right then the condition becomes TRUE

<=

Less than or equal to, if the left operand holds a value which is less than or equal to the right then the condition becomes TRUE

In the example below, assume a holds a value of 30 and b holds a value of 10.

GPC
|
a == b // is FALSE
a != b // is TRUE
a >  b // is TRUE
a <  b // is FALSE
a >= b // is TRUE
a <= b // is FALSE


Binary

Binary is the same as Logical, except they work with bits.

Operator

Description

&

AND operator, if both operators are TRUE then the condition becomes TRUE

|

OR operator, if either operand is TRUE then the condition becomes TRUE

^

XOR operator, if either operand is TRUE but not both then the condition becomes TRUE

<<

Left Shift operator, Less than, if the left operand holds a value less than the left then the condition becomes TRUE

>>

Right Shift operator, Greater than, if the left operand holds a value greater than the left then the condition becomes TRUE

-

NOT operator, Subtracts right operand from the left operand

In the example below,

GPC
|
3 & 1 = 1
1 | 2 = 3
1 ^ 2 = *
1 << 1 = 2
1 >> 1 = 0
~ 1 = -32768




UP NEXT
Misc
Docs powered by archbee 
TABLE OF CONTENTS
Assignment
Arithmetic
Logical
Relational
Binary