lscript_typecheck.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lscript_typecheck.h
  3.  * @brief typechecks script
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LSCRIPT_TYPECHECK_H
  33. #define LL_LSCRIPT_TYPECHECK_H
  34. #include "lscript_error.h"
  35. LSCRIPTType implicit_casts(LSCRIPTType left_side, LSCRIPTType right_side);
  36. BOOL legal_casts(LSCRIPTType cast, LSCRIPTType base);
  37. LSCRIPTType promote(LSCRIPTType left_side, LSCRIPTType right_side);
  38. BOOL legal_assignment(LSCRIPTType left_side, LSCRIPTType right_side);
  39. typedef enum e_lscript_expression_types
  40. {
  41. LET_NULL,
  42. LET_ASSIGNMENT,
  43. LET_ADD_ASSIGN,
  44. LET_SUB_ASSIGN,
  45. LET_MUL_ASSIGN,
  46. LET_DIV_ASSIGN,
  47. LET_MOD_ASSIGN,
  48. LET_EQUALITY,
  49. LET_NOT_EQUALS,
  50. LET_LESS_EQUALS,
  51. LET_GREATER_EQUALS,
  52. LET_LESS_THAN,
  53. LET_GREATER_THAN,
  54. LET_PLUS,
  55. LET_MINUS,
  56. LET_TIMES,
  57. LET_DIVIDE,
  58. LET_MOD,
  59. LET_BIT_AND,
  60. LET_BIT_OR,
  61. LET_BIT_XOR,
  62. LET_BOOLEAN_AND,
  63. LET_BOOLEAN_OR,
  64. LET_PARENTHESIS,
  65. LET_UNARY_MINUS,
  66. LET_BOOLEAN_NOT,
  67. LET_BIT_NOT,
  68. LET_PRE_INCREMENT,
  69. LET_PRE_DECREMENT,
  70. LET_CAST,
  71. LET_VECTOR_INITIALIZER,
  72. LET_QUATERNION_INITIALIZER,
  73. LET_LIST_INITIALIZER,
  74. LET_LVALUE,
  75. LET_POST_INCREMENT,
  76. LET_POST_DECREMENT,
  77. LET_FUNCTION_CALL,
  78. LET_CONSTANT,
  79. LET_FOR_EXPRESSION_LIST,
  80. LET_FUNC_EXPRESSION_LIST,
  81. LET_LIST_EXPRESSION_LIST,
  82. LET_PRINT,
  83. LET_SHIFT_LEFT,
  84. LET_SHIFT_RIGHT,
  85. LET_EOF
  86. } LSCRIPTExpressionType;
  87. BOOL legal_binary_expression(LSCRIPTType &result, LSCRIPTType left_side, LSCRIPTType right_side, LSCRIPTExpressionType expression);
  88. BOOL legal_unary_expression(LSCRIPTType &result, LSCRIPTType left_side, LSCRIPTExpressionType expression);
  89. void init_supported_expressions(void);
  90. /*
  91.   LScript automatic type casting
  92.   LST_INTEGER -> LST_INTEGER
  93.   LST_FLOATINGPOINT -> LST_FLOATINGPOINT
  94.   LST_INTEGER -> LST_FLOATINGPOINT
  95.   LST_FLOATINGPOINT -> LST_STRING
  96.   LST_INTEGER -> LST_STRING
  97.   LST_STRING -> LST_STRING
  98.   LST_VECTOR -> LST_STRING
  99.   LST_QUATERNION -> LST_STRING
  100.   LST_LIST -> LST_STRING
  101.   LST_VECTOR -> LST_VECTOR
  102.   
  103.   LST_QUATERNION -> LST_QUATERNION
  104.   
  105.   LST_FLOATINGPOINT -> LST_LIST
  106.   LST_INTEGER -> LST_LIST
  107.   LST_STRING -> LST_LIST
  108.   LST_VECTOR -> LST_LIST
  109.   LST_QUATERNION -> LST_LIST
  110.   LST_LIST -> LST_LIST
  111. */
  112. #endif