//***********************************************************
//*
//* File:           IFCConstants.java
//* Author:         Abhinav Kamra
//* Contact:        kamra-at-cs.columbia.edu
//* Update:         10.16..2003
//*
//* Description:    Constants declaration.
//*
//***********************************************************

package Organisms2;

import java.io.Serializable;

public interface IFCConstants {

    public static final String _CERROR_STRING = "Error: ";

    public static final int MIN_EXTSTATE = 0;
    public static final int MAX_EXTSTATE = 255;
	
    public static final int _CSTAYPUT    = 0;
    public static final int _CWEST       = 1;
    public static final int _CEAST       = 2;
    public static final int _CNORTH      = 3;
    public static final int _CSOUTH      = 4;

    public static final int _CREPRODUCE  = 5;

    public static final int[] _CDIRECTIONS = { _CSTAYPUT, _CWEST, _CEAST, _CNORTH, _CSOUTH };
    public static final int[] _CXTrans     = { 0, -1, 1, 0, 0};
    public static final int[] _CYTrans     = { 0, 0, 0, -1, 1};
}
