[4] | 1 | #include "../BasicCompiler_Common/common.h"
|
---|
| 2 |
|
---|
| 3 | BOOL GetErrorMsg(int num,char *KeyWord,char *msg,int pos){
|
---|
| 4 | extern HANDLE hHeap;
|
---|
| 5 | int i2;
|
---|
| 6 | char temporary[64];
|
---|
| 7 |
|
---|
| 8 | if(KeyWord){
|
---|
| 9 | for(i2=0;;i2++){
|
---|
| 10 | if(KeyWord[i2]=='\0') break;
|
---|
| 11 | if(KeyWord[i2]==1){
|
---|
| 12 | GetDefaultNameFromES(KeyWord[i2+1],temporary);
|
---|
| 13 | SlideString(KeyWord+i2+2,lstrlen(temporary)-2);
|
---|
| 14 | memcpy(KeyWord+i2,temporary,lstrlen(temporary));
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
| 18 |
|
---|
| 19 | if(num==-1||num==-2) lstrcpy(msg,KeyWord); //部分エラー
|
---|
| 20 |
|
---|
| 21 | if(num==3){
|
---|
| 22 | temporary[0]=KeyWord[0];
|
---|
| 23 | for(i2=1;;i2++){
|
---|
| 24 | if((!IsVariableChar(KeyWord[i2]))||i2>=255){
|
---|
| 25 | temporary[i2]=0;
|
---|
| 26 | break;
|
---|
| 27 | }
|
---|
| 28 | temporary[i2]=KeyWord[i2];
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | extern char **SynonymErrorWords;
|
---|
| 32 | extern int SynonymErrorNum;
|
---|
| 33 | for(i2=0;i2<SynonymErrorNum;i2++){
|
---|
| 34 | if(lstrcmp(SynonymErrorWords[i2],temporary)==0) return 0;
|
---|
| 35 | }
|
---|
| 36 |
|
---|
| 37 | #if defined(JPN)
|
---|
| 38 | //日本語
|
---|
| 39 | sprintf(msg,"\"%s\" 無効な識別子です",temporary);
|
---|
| 40 | #else
|
---|
| 41 | //英語
|
---|
| 42 | sprintf(msg,"\"%s\" Invalid identifier.",temporary);
|
---|
| 43 | #endif
|
---|
| 44 |
|
---|
| 45 | //重複エラー情報を追加
|
---|
| 46 | SynonymErrorWords=(char **)HeapReAlloc(hHeap,0,SynonymErrorWords,(SynonymErrorNum+1)*sizeof(char *));
|
---|
| 47 | SynonymErrorWords[SynonymErrorNum]=(char *)HeapAlloc(hHeap,0,lstrlen(temporary)+1);
|
---|
| 48 | lstrcpy(SynonymErrorWords[SynonymErrorNum],temporary);
|
---|
| 49 | SynonymErrorNum++;
|
---|
| 50 | }
|
---|
| 51 | if(num==30){
|
---|
| 52 | #if defined(JPN)
|
---|
| 53 | //日本語
|
---|
| 54 | if(temporary[0]) sprintf(msg,"\"%s\" の使い方が不正です",KeyWord);
|
---|
| 55 | else lstrcpy(msg,"文法が間違っています");
|
---|
| 56 | #else
|
---|
| 57 | //英語
|
---|
| 58 | if(temporary[0]) sprintf(msg,"How to use the \"%s\" is wrong.",KeyWord);
|
---|
| 59 | else lstrcpy(msg,"Syntax Error.");
|
---|
| 60 | #endif
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 |
|
---|
| 64 | /////////////////////
|
---|
| 65 | // ワーニングエラー
|
---|
| 66 | /////////////////////
|
---|
| 67 | #if defined(JPN)
|
---|
| 68 | ////////////////////
|
---|
| 69 | //日本語
|
---|
| 70 | ////////////////////
|
---|
| 71 | if(num==-101) sprintf(msg,"[警告] %sに強制変換されています。データが失われる可能性があります。",KeyWord);
|
---|
| 72 | if(num==-102) sprintf(msg,"[警告] %sに強制変換されています。",KeyWord);
|
---|
| 73 | if(num==-103) sprintf(msg,"[警告] \"%s\" 型が指定されていません。Double型として扱います。",KeyWord);
|
---|
| 74 | if(num==-104) sprintf(msg,"[警告] \"%s\" 戻り値の型が指定されていません。Double型として扱います。",KeyWord);
|
---|
| 75 | if(num==-105) sprintf(msg,"[警告] 一時オブジェクトの解放を行えません。キャスト用オブジェクトを用意してください。",KeyWord);
|
---|
| 76 | if(num==-106) sprintf(msg,"[警告] DLLファイル \"%s\" が見つかりません。",KeyWord);
|
---|
| 77 | if(num==-107) sprintf(msg,"[警告] DLL関数 \"%s\" を参照できません。",KeyWord);
|
---|
| 78 | #else
|
---|
| 79 | #endif
|
---|
| 80 |
|
---|
| 81 |
|
---|
| 82 | ///////////////
|
---|
| 83 | // 一般エラー
|
---|
| 84 | ///////////////
|
---|
| 85 |
|
---|
| 86 | #if defined(JPN)
|
---|
| 87 | ////////////////////
|
---|
| 88 | //日本語
|
---|
| 89 | ////////////////////
|
---|
| 90 | if(num==1) lstrcpy(msg,"文法が間違っています");
|
---|
| 91 | if(num==2) sprintf(msg,"左のオペランドが、左辺値になっていません");
|
---|
| 92 | //num==3は予約されています
|
---|
| 93 | if(num==4) sprintf(msg,"%sの相互関係が一致しません",KeyWord);
|
---|
| 94 | if(num==5) sprintf(msg,"ダブルクォートの数が一致しません");
|
---|
| 95 | if(num==6) sprintf(msg,"\"%s\" ジャンプ先が不正です",KeyWord);
|
---|
| 96 | if(num==7) lstrcpy(msg,"DLL名が長すぎます(拡張子を含め、16文字以下にして下さい)");
|
---|
| 97 | if(num==8) lstrcpy(msg,"コンパイラが認識できない文字コードが含まれています");
|
---|
| 98 | if(num==9) sprintf(msg,"型が違います");
|
---|
| 99 | if(num==10) sprintf(msg,"\"%s\" のパラメータ指定が間違っています",KeyWord);
|
---|
| 100 | if(num==11) sprintf(msg,"\"%s\" 型が違います",KeyWord);
|
---|
| 101 | if(num==12) sprintf(msg,"\"%s\" の使い方が不正です",KeyWord);
|
---|
| 102 | if(num==13) sprintf(msg,"\"%s\" を参照できません",KeyWord);
|
---|
| 103 | if(num==14) sprintf(msg,"\"%s\" 配列指定が不正です",KeyWord);
|
---|
| 104 | if(num==15) sprintf(msg,"\"%s\" はすでに定義されています",KeyWord);
|
---|
| 105 | if(num==16) sprintf(msg,"\"%s\" 配列、またはポインタ以外の変数に添え字が指定されています",KeyWord);
|
---|
| 106 | if(num==17) sprintf(msg,"リソース データが不正です");
|
---|
| 107 | if(num==18) sprintf(msg,"\"%s\"はポインタ変数型です。文字列演算を指定することはできません",KeyWord);
|
---|
| 108 | if(num==19) sprintf(msg,"\"%s\"は値参照型です。ByVal指定することはできません",KeyWord);
|
---|
| 109 | if(num==20) lstrcpy(msg,"全角スペースが含まれています(全角スペースはコンパイラが認識できないので、半角スペースまたはタブ文字にしてください)");
|
---|
| 110 | if(num==21) sprintf(msg,"If制御のブロック指定が不正です");
|
---|
| 111 | if(num==22) sprintf(msg,"\"%s\" に対する \"End %s\" が見つかりません",KeyWord,KeyWord);
|
---|
| 112 | if(num==23) sprintf(msg,"リソース ファイル \"%s\" の読み込みに失敗",KeyWord);
|
---|
| 113 | if(num==24) lstrcpy(msg,"Export指定の関数のパラメータには実体オブジェクトを利用することはできません(BytePtr型などを利用して下さい)");
|
---|
| 114 | if(num==27) sprintf(msg,"\"%s\" は定義されていません",KeyWord);
|
---|
| 115 | if(num==28) sprintf(msg,"構造体パラメータはポインタ参照にしてください(%s)",KeyWord);
|
---|
| 116 | if(num==29) sprintf(msg,"配列ポインタを要素と同時に引渡すときは、ポインタ参照(ByRef)にしてください");
|
---|
| 117 | //num==30は予約されています
|
---|
| 118 | if(num==31) sprintf(msg,"\"%s\" は構造体です(メンバの参照はピリオド \".\" で区切ってください)",KeyWord);
|
---|
| 119 | if(num==32) sprintf(msg,"\"%s\" は構造体ポインタです(メンバの参照は \"->\" で区切ってください)",KeyWord);
|
---|
| 120 | if(num==33) sprintf(msg,"定数式にリテラル値、または定数以外のものが含まれています");
|
---|
| 121 | if(num==34) sprintf(msg,"定数はモジュールレベルで宣言して下さい");
|
---|
| 122 | if(num==38) sprintf(msg,"\"%s\" 戻り値が存在しないプロシージャです",KeyWord);
|
---|
| 123 | if(num==39) sprintf(msg,"\"%s\" はオブジェクトポインタではありません(\"->\" 参照はできません)",KeyWord);
|
---|
| 124 | if(num==40) lstrcpy(msg,"関数の戻り値にオブジェクトを指定することはできません");
|
---|
| 125 | if(num==41) lstrcpy(msg,"初期データが不正です");
|
---|
| 126 | if(num==42) lstrcpy(msg,"閉じカッコ \")\" の後に不正な文字が含まれています");
|
---|
| 127 | if(num==43) lstrcpy(msg,"ダブルクォートの後に不正な文字が含まれています");
|
---|
| 128 | if(num==45) sprintf(msg,"実数に対して \"%s\" 演算子は利用できません",KeyWord);
|
---|
| 129 | if(num==46) lstrcpy(msg,"配列の添え字に整数以外の値が与えられています");
|
---|
| 130 | if(num==47) lstrcpy(msg,"As演算子の右辺値に型名以外の識別子が指定されています");
|
---|
| 131 | if(num==48) sprintf(msg,"%s演算子に対して型名が指定されています",KeyWord);
|
---|
| 132 | if(num==49) lstrcpy(msg,"添え字に整数以外の型が指定されています");
|
---|
| 133 | if(num==50) sprintf(msg,"%sに変換できません",KeyWord);
|
---|
| 134 | if(num==51) lstrcpy(msg,"オブジェクト、構造体のアラインメント値は1,2,4,8,16のいずれかでなければなりません");
|
---|
| 135 | if(num==52) sprintf(msg,"\"%s\" オーバーロードを解決できません",KeyWord);
|
---|
| 136 | if(num==53) sprintf(msg,"\"%s\" 出力ファイルの書き込みに失敗しました。実行されている可能性があります",KeyWord);
|
---|
| 137 | if(num==54) sprintf(msg,"対応する%sが存在しません。",KeyWord);
|
---|
| 138 | if(num==55) sprintf(msg,"\"%s\" は対応するForステートメントで利用されるカウンタ変数ではありません。",KeyWord);
|
---|
| 139 | if(num==56) lstrcpy(msg,"ゼロ割りが行われました。");
|
---|
| 140 | if(num==57) lstrcpy(msg,"8進数のリテラル表記が不正です。");
|
---|
| 141 | if(num==58) lstrcpy(msg,"16進数のリテラル表記が不正です。");
|
---|
| 142 | if(num==59) sprintf(msg,"マニフェスト ファイル \"%s\" の読み込みに失敗。",KeyWord);
|
---|
| 143 | if(num==60) lstrcpy(msg,"Staticステートメントはグローバル領域では使用できません。");
|
---|
| 144 |
|
---|
| 145 |
|
---|
| 146 | //オブジェクト関連
|
---|
| 147 | if(num==102) sprintf(msg,"\"%s\" オブジェクトは定義されていません",KeyWord);
|
---|
| 148 | if(num==103) sprintf(msg,"\"%s\" メンバは定義されていません",KeyWord);
|
---|
| 149 | if(num==104) sprintf(msg,"\"%s\" 参照方法が違います",KeyWord);
|
---|
| 150 | if(num==105) sprintf(msg,"\"%s\" 自身のクラスを継承することはできません",KeyWord);
|
---|
| 151 | if(num==106) sprintf(msg,"\"%s\" クラスは定義されていません",KeyWord);
|
---|
| 152 | if(num==107) sprintf(msg,"Privateメンバ \"%s\" にアクセスすることはできません",KeyWord);
|
---|
| 153 | if(num==108) sprintf(msg,"Protectedメンバ \"%s\" にアクセスすることはできません",KeyWord);
|
---|
| 154 | if(num==109) sprintf(msg,"Privateメンバ関数 \"%s\" を呼び出すことはできません",KeyWord);
|
---|
| 155 | if(num==110) sprintf(msg,"Protectedメンバ関数 \"%s\" を呼び出すことはできません",KeyWord);
|
---|
| 156 | if(num==111) lstrcpy(msg,"InheritsはClass定義内の先頭に記述する必要があります");
|
---|
| 157 | if(num==112) sprintf(msg,"\"%s\" はクラス型ではないため、初期パラメータを指定することはできません",KeyWord);
|
---|
| 158 | if(num==113) sprintf(msg,"\"%s\" コンストラクタへ渡すパラメータが不正です",KeyWord);
|
---|
| 159 | if(num==114) lstrcpy(msg,"デストラクタはパラメータを持てません");
|
---|
| 160 | if(num==115) lstrcpy(msg,"コンストラクタ及びデストラクタは戻り値を持てません");
|
---|
| 161 | if(num==116) lstrcpy(msg,"コンストラクタ及びデストラクタはパブリックアクセスにしなければなりません");
|
---|
| 162 | if(num==117) lstrcpy(msg,"デストラクタの名前が \"~クラス名\" になっていません");
|
---|
| 163 | if(num==118) lstrcpy(msg,"参照するスーパークラスが存在しません");
|
---|
| 164 | if(num==119) sprintf(msg,"\"%s\" メンバはスーパークラスで定義されていません",KeyWord);
|
---|
| 165 | if(num==120) lstrcpy(msg,"デストラクトするオブジェクトの型が不明です");
|
---|
| 166 | if(num==121) lstrcpy(msg,"New演算子にはクラス以外の型を指定できません");
|
---|
| 167 | if(num==122) lstrcpy(msg,"Delete演算子にポインタ以外の型が指定されています");
|
---|
| 168 | if(num==123) lstrcpy(msg,"ループ継承が行われました");
|
---|
| 169 | if(num==124) lstrcpy(msg,"循環参照が行われました");
|
---|
| 170 | if(num==125) sprintf(msg,"\"%s\" は抽象クラスです。インスタンス化することはできません。",KeyWord);
|
---|
| 171 | if(num==126) lstrcpy(msg,"オペレータのオーバーロードをクラスの外で行うことはできません。");
|
---|
| 172 | if(num==127) lstrcpy(msg,"Override修飾子の指定が無い状況でオーバーライドを行うことはできません。");
|
---|
| 173 | if(num==128) lstrcpy(msg,"オーバーライドを行うときはアクセシビリティを同一にしなければなりません。");
|
---|
| 174 | if(num==129) sprintf(msg,"静的メンバ \"%s\" は定義されていません。",KeyWord);
|
---|
| 175 |
|
---|
| 176 | //Enum関連
|
---|
| 177 | if(num==150) sprintf(msg,"\"%s\" 値が定義されていません",KeyWord);
|
---|
| 178 | if(num==151) sprintf(msg,"\"%s\" 列挙リストに登録されていません",KeyWord);
|
---|
| 179 |
|
---|
| 180 | //リンカ
|
---|
| 181 | if(num==200) sprintf(msg,"\"%s\" 未解決です (リンク エラー)",KeyWord);
|
---|
| 182 | if(num==201) sprintf(msg,"\"%s\" の読み込みに失敗",KeyWord);
|
---|
| 183 |
|
---|
| 184 | //原因不明
|
---|
| 185 | if(num==300) lstrcpy(msg,"内部エラー");
|
---|
| 186 |
|
---|
| 187 | #else
|
---|
| 188 | ////////////////////
|
---|
| 189 | //英語
|
---|
| 190 | ////////////////////
|
---|
| 191 | if(num==1) lstrcpy(msg,"Syntax Error.");
|
---|
| 192 | if(num==2) sprintf(msg,"Left operand must be l-value.");
|
---|
| 193 | //num==3は予約されています
|
---|
| 194 | if(num==4) sprintf(msg,"Correlation of %s is wrong.",KeyWord);
|
---|
| 195 | if(num==5) sprintf(msg,"Correlation of double quotes is wrong.");
|
---|
| 196 | if(num==6) sprintf(msg,"\"%s\" Label not found.",KeyWord);
|
---|
| 197 | if(num==7) lstrcpy(msg,"The DLL name is too long. Must be 16 characters or less.");
|
---|
| 198 | if(num==8) lstrcpy(msg,"The inaccurate characters are contained.");
|
---|
| 199 | if(num==9) sprintf(msg,"Type is wrong.");
|
---|
| 200 | if(num==10) sprintf(msg,"\"%s\" Rule of parameter is wrong.",KeyWord);
|
---|
| 201 | if(num==11) sprintf(msg,"\"%s\" Type is wrong.",KeyWord);
|
---|
| 202 | if(num==12) sprintf(msg,"\"%s\" Not a valid use.",KeyWord);
|
---|
| 203 | if(num==13) sprintf(msg,"Cannot refer to \"%s\".",KeyWord);
|
---|
| 204 | if(num==14) sprintf(msg,"\"%s\" Array argument(s) out of bound.",KeyWord);
|
---|
| 205 | if(num==15) sprintf(msg,"\"%s\" is already defined.",KeyWord);
|
---|
| 206 | if(num==16) sprintf(msg,"\"%s\" Argument(s) following variable which is not pointer or array.",KeyWord);
|
---|
| 207 | if(num==17) sprintf(msg,"Invalid resource data.");
|
---|
| 208 | if(num==18) sprintf(msg,"\"%s\" Invalid operation on a pointer variable.",KeyWord);
|
---|
| 209 | if(num==19) sprintf(msg,"\"%s\" is already to be passed by value. You cannot use \"ByVal\".",KeyWord);
|
---|
| 210 | if(num==21) sprintf(msg,"Wrong structure of \"If\" block.");
|
---|
| 211 | if(num==22) sprintf(msg,"No matching \"End %s\" found for \"%s\".",KeyWord,KeyWord);
|
---|
| 212 | if(num==23) sprintf(msg,"Cannot read the resource file \"%s\".",KeyWord);
|
---|
| 213 | if(num==24) lstrcpy(msg,"Must not use String type as an argument for exported function. (Use BytePtr type instead.)");
|
---|
| 214 | if(num==27) sprintf(msg,"\"%s\" Undefined procedure.",KeyWord);
|
---|
| 215 | if(num==28) sprintf(msg,"\"%s\" Structure must not be passed by value. (Use \"ByRef\".)",KeyWord);
|
---|
| 216 | if(num==29) sprintf(msg,"Array must not be passed by value. (Use \"ByRef\".)");
|
---|
| 217 | //num==30は予約されています
|
---|
| 218 | if(num==31) sprintf(msg,"\"%s\" is a struct. (Use period \".\" to refer to the members.)",KeyWord);
|
---|
| 219 | if(num==32) sprintf(msg,"\"%s\" is a pointer of struct. (Use arrow \"->\" to refer to the members.)",KeyWord);
|
---|
| 220 | if(num==33) sprintf(msg,"Constant formula has a thing that is not literal value or constant value.");
|
---|
| 221 | if(num==34) sprintf(msg,"Constant formula must be defined in the module level.");
|
---|
| 222 | if(num==38) sprintf(msg,"\"%s\" is a procedure without a return value.",KeyWord);
|
---|
| 223 | if(num==39) sprintf(msg,"\"%s\" is not object pointer. \"->\" is invalid.",KeyWord);
|
---|
| 224 | if(num==40) lstrcpy(msg,"Cannot set a object to return value.");
|
---|
| 225 | if(num==41) lstrcpy(msg,"Init data is wrong.");
|
---|
| 226 | if(num==42) lstrcpy(msg,"The inaccurate characters are contained after the closing parenthesis \")\".");
|
---|
| 227 | if(num==43) lstrcpy(msg,"The inaccurate characters are contained after the double quote.");
|
---|
| 228 |
|
---|
| 229 | //オブジェクト関連
|
---|
| 230 | if(num==102) sprintf(msg,"\"%s\" The object is not defined.",KeyWord);
|
---|
| 231 | if(num==103) sprintf(msg,"\"%s\" The member is not defined.",KeyWord);
|
---|
| 232 | if(num==104) sprintf(msg,"\"%s\" The reference character is different.",KeyWord);
|
---|
| 233 | if(num==105) sprintf(msg,"\"%s\" An own class is not inheritable.",KeyWord);
|
---|
| 234 | if(num==106) sprintf(msg,"\"%s\" It class is not defined.",KeyWord);
|
---|
| 235 | if(num==107) sprintf(msg,"\"%s\" Cannot access the private member.",KeyWord);
|
---|
| 236 | if(num==108) sprintf(msg,"\"%s\" Cannot access the protected member.",KeyWord);
|
---|
| 237 | if(num==109) sprintf(msg,"\"%s\" Cannot call the private member.",KeyWord);
|
---|
| 238 | if(num==110) sprintf(msg,"\"%s\" Cannot call the protected member.",KeyWord);
|
---|
| 239 | if(num==111) lstrcpy(msg,"The Inherits phrase must be described to the 1st line of class module");
|
---|
| 240 | if(num==112) sprintf(msg,"\"%s\" is not class object. Therefor you cannot set the parameter for constructor.",KeyWord);
|
---|
| 241 | if(num==113) sprintf(msg,"\"%s\" The parameter for constructor is wrong.",KeyWord);
|
---|
| 242 | if(num==114) lstrcpy(msg,"Destructor cannot have a parameter.");
|
---|
| 243 | if(num==115) lstrcpy(msg,"Constructor and Destructor cannot have a return value.");
|
---|
| 244 | if(num==116) lstrcpy(msg,"Constructor and Destructor must be public access.");
|
---|
| 245 | if(num==117) lstrcpy(msg,"Destructors name must be \"~ClassName\".");
|
---|
| 246 | if(num==118) lstrcpy(msg,"Super class is not found.");
|
---|
| 247 | if(num==119) sprintf(msg,"\"%s\" The member is not defined in the super class.",KeyWord);
|
---|
| 248 |
|
---|
| 249 | //Enum関連
|
---|
| 250 | if(num==150) sprintf(msg,"\"%s\" The value is not set",KeyWord);
|
---|
| 251 | if(num==151) sprintf(msg,"\"%s\" is not found from enum lists.",KeyWord);
|
---|
| 252 |
|
---|
| 253 | //リンカ
|
---|
| 254 | if(num==200) sprintf(msg,"\"%s\" Unknown error.",KeyWord);
|
---|
| 255 | #endif
|
---|
| 256 |
|
---|
| 257 | return 1;
|
---|
| 258 | }
|
---|
| 259 | void SetError(int num,char *KeyWord,int pos){
|
---|
| 260 | extern HANDLE hHeap;
|
---|
| 261 | extern HWND hMainDlg;
|
---|
| 262 | extern ERRORINFO *pErrorInfo;
|
---|
| 263 | extern int ErrorNum;
|
---|
| 264 | char temporary[1024],temp2[1024],temp3[32],FileName[MAX_PATH];
|
---|
| 265 | BOOL bFirst;
|
---|
| 266 | int i2;
|
---|
| 267 |
|
---|
| 268 | extern BOOL bDebugRun;
|
---|
| 269 | if(bDebugRun) return;
|
---|
| 270 |
|
---|
| 271 | if(num!=-2){
|
---|
| 272 | //一般エラーまたは警告
|
---|
| 273 | i2=0; //ここにブレークポイントをおく
|
---|
| 274 | }
|
---|
| 275 |
|
---|
| 276 | #ifndef _DEBUG
|
---|
| 277 | if(num==300){
|
---|
| 278 | //内部エラー
|
---|
| 279 | return;
|
---|
| 280 | }
|
---|
| 281 | #endif
|
---|
| 282 |
|
---|
| 283 | if(!GetErrorMsg(num,KeyWord,temporary,pos)) return;
|
---|
| 284 |
|
---|
| 285 | if(ErrorNum==0){
|
---|
| 286 | SetDlgItemText(hMainDlg,IDC_ERRORLIST,"");
|
---|
| 287 | EnableWindow(GetDlgItem(hMainDlg,IDC_ERRORLIST),1);
|
---|
| 288 | bFirst=1;
|
---|
| 289 | }
|
---|
| 290 | else bFirst=0;
|
---|
| 291 |
|
---|
| 292 |
|
---|
| 293 | ////////////////////
|
---|
| 294 | // エラー情報を追加
|
---|
| 295 | pErrorInfo=(ERRORINFO *)HeapReAlloc(hHeap,0,pErrorInfo,(ErrorNum+1)*sizeof(ERRORINFO));
|
---|
| 296 |
|
---|
| 297 | if(pos==-1){
|
---|
| 298 | pErrorInfo[ErrorNum].FileName=0;
|
---|
| 299 | lstrcpy(temp2,temporary);
|
---|
| 300 | }
|
---|
| 301 | else{
|
---|
| 302 | GetLineNum(pos,&pErrorInfo[ErrorNum].line,FileName);
|
---|
| 303 |
|
---|
| 304 | pErrorInfo[ErrorNum].FileName=(char *)HeapAlloc(hHeap,0,lstrlen(FileName)+1);
|
---|
| 305 | lstrcpy(pErrorInfo[ErrorNum].FileName,FileName);
|
---|
| 306 |
|
---|
| 307 | _splitpath(pErrorInfo[ErrorNum].FileName,0,0,temp2,temp3);
|
---|
| 308 | lstrcat(temp2,temp3);
|
---|
| 309 |
|
---|
| 310 | if(pErrorInfo[ErrorNum].line==-1)
|
---|
| 311 | sprintf(temp2+lstrlen(temp2),"(no area) %s",temporary);
|
---|
| 312 | else
|
---|
| 313 | sprintf(temp2+lstrlen(temp2),"(%d) - %s",pErrorInfo[ErrorNum].line+1,temporary);
|
---|
| 314 | }
|
---|
| 315 |
|
---|
| 316 | i2=GetWindowTextLength(GetDlgItem(hMainDlg,IDC_ERRORLIST));
|
---|
| 317 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_SETSEL,i2,i2);
|
---|
| 318 | if(bFirst==0){
|
---|
| 319 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_REPLACESEL,0,(LPARAM)"\r\n");
|
---|
| 320 | i2+=2;
|
---|
| 321 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_SETSEL,i2,i2);
|
---|
| 322 | }
|
---|
| 323 | SendDlgItemMessage(hMainDlg,IDC_ERRORLIST,EM_REPLACESEL,0,(LPARAM)temp2);
|
---|
| 324 |
|
---|
| 325 | if(num==-2){
|
---|
| 326 | //コンパイルメッセージ
|
---|
| 327 | //※何もしない
|
---|
| 328 | extern int CompileMsgNum;
|
---|
| 329 | CompileMsgNum++;
|
---|
| 330 | }
|
---|
| 331 | else{
|
---|
| 332 | if(num>-100){
|
---|
| 333 | //警告ではなく、エラーの場合はエラーチェックフラグを立てる
|
---|
| 334 | extern BOOL bError;
|
---|
| 335 | bError=1;
|
---|
| 336 | }
|
---|
| 337 | else{
|
---|
| 338 | extern int WarningNum;
|
---|
| 339 | WarningNum++;
|
---|
| 340 | }
|
---|
| 341 | }
|
---|
| 342 |
|
---|
| 343 | ErrorNum++;
|
---|
| 344 | }
|
---|
| 345 | void CompileMessage(char *buffer){
|
---|
| 346 | SetError(-2,buffer,-1);
|
---|
| 347 | }
|
---|
| 348 |
|
---|
| 349 | #define STRING_SYSTEM_DECLAREHANDLE "*_System_DeclareHandle_"
|
---|
| 350 | void DifferentTypeError(int VarType,LONG_PTR VarIndex,int CalcType,LONG_PTR CalcIndex,int iWarning,char *pszFuncName,int ParmNum){
|
---|
| 351 | //////////////////////////
|
---|
| 352 | // キャストに関する警告
|
---|
| 353 | //////////////////////////
|
---|
| 354 | char temporary[255],temp2[255],temp3[255];
|
---|
| 355 |
|
---|
| 356 | if(IS_LITERAL(CalcIndex)) CalcIndex=-1;
|
---|
| 357 |
|
---|
| 358 | if(pszFuncName)
|
---|
| 359 | sprintf(temporary,"\"%s\"の第%dパラメータが、",pszFuncName,ParmNum+1);
|
---|
| 360 | else temporary[0]=0;
|
---|
| 361 |
|
---|
| 362 | if(!GetTypeName(VarType,VarIndex,temp2)) lstrcpy(temp2,"Any");
|
---|
| 363 | if(memcmp(temp2,STRING_SYSTEM_DECLAREHANDLE,lstrlen(STRING_SYSTEM_DECLAREHANDLE))==0){
|
---|
| 364 | memmove(temp2,
|
---|
| 365 | temp2+lstrlen(STRING_SYSTEM_DECLAREHANDLE),
|
---|
| 366 | lstrlen(temp2+lstrlen(STRING_SYSTEM_DECLAREHANDLE))+1);
|
---|
| 367 | }
|
---|
| 368 | if(!GetTypeName(CalcType,CalcIndex,temp3)) lstrcpy(temp3,"Any");
|
---|
| 369 | if(memcmp(temp3,STRING_SYSTEM_DECLAREHANDLE,lstrlen(STRING_SYSTEM_DECLAREHANDLE))==0){
|
---|
| 370 | memmove(temp3,
|
---|
| 371 | temp3+lstrlen(STRING_SYSTEM_DECLAREHANDLE),
|
---|
| 372 | lstrlen(temp3+lstrlen(STRING_SYSTEM_DECLAREHANDLE))+1);
|
---|
| 373 | }
|
---|
| 374 | sprintf(temporary+lstrlen(temporary),"%sから%s",temp3,temp2);
|
---|
| 375 |
|
---|
| 376 | extern int cp;
|
---|
| 377 | if(iWarning==1) SetError(-101,temporary,cp);
|
---|
| 378 | else if(iWarning==2) SetError(-102,temporary,cp);
|
---|
| 379 | }
|
---|
| 380 |
|
---|
| 381 | void CheckDifferentType(int VarType,LONG_PTR lpVarIndex,int CalcType,LONG_PTR lpCalcIndex,char *pszFuncName,int ParmNum){
|
---|
| 382 |
|
---|
| 383 | if(VarType==DEF_OBJECT||CalcType==DEF_OBJECT){
|
---|
| 384 | //オブジェクトインスタンスの場合
|
---|
| 385 | if(!(VarType==CalcType&&lpVarIndex==lpCalcIndex)){
|
---|
| 386 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,2,pszFuncName,ParmNum);
|
---|
| 387 | return;
|
---|
| 388 | }
|
---|
| 389 | }
|
---|
| 390 |
|
---|
| 391 | //#strictが指定されていないときは型チェックを行わないようにする
|
---|
| 392 | extern BOOL bStrict;
|
---|
| 393 | if(bStrict==0) return;
|
---|
| 394 |
|
---|
| 395 | if(CalcType&FLAG_PTR){
|
---|
| 396 | //配列先頭フラグがたっている場合は、ポインタ型として扱う
|
---|
| 397 | CalcType=MAKE_PTR_TYPE(NATURAL_TYPE(CalcType),PTR_LEVEL(CalcType)+1);
|
---|
| 398 | }
|
---|
| 399 |
|
---|
| 400 | if(IsPtrType(VarType)||IsPtrType(CalcType)){
|
---|
| 401 | /* 右辺及び左辺のいずれかがポインタ型の場合は、
|
---|
| 402 | 型チェックを行う。
|
---|
| 403 | ・同一の種類のポインタ型以外はエラーとする */
|
---|
| 404 |
|
---|
| 405 | if(IsPtrType(VarType)&&lpCalcIndex==LITERAL_NULL){
|
---|
| 406 | //リテラルNULL値の場合
|
---|
| 407 | return;
|
---|
| 408 | }
|
---|
| 409 |
|
---|
| 410 | if(VarType==DEF_PTR_VOID){
|
---|
| 411 | //左辺がVoidPtr型の場合は、ポインタ型すべてを受け入れる
|
---|
| 412 | if(IsPtrType(CalcType)) return;
|
---|
| 413 | }
|
---|
| 414 |
|
---|
| 415 | if(CalcType==DEF_PTR_VOID){
|
---|
| 416 | //右辺がVoidPtr型の場合は、ポインタ型すべてを受け入れる
|
---|
| 417 | if(IsPtrType(VarType)) return;
|
---|
| 418 | }
|
---|
| 419 |
|
---|
| 420 | if(VarType!=CalcType){
|
---|
| 421 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,2,pszFuncName,ParmNum);
|
---|
| 422 | return;
|
---|
| 423 | }
|
---|
| 424 |
|
---|
| 425 | if(VarType==DEF_PTR_OBJECT){
|
---|
| 426 | //双方がオブジェクトポインタ型の場合
|
---|
| 427 | if(lpVarIndex!=lpCalcIndex){
|
---|
| 428 | CClass *pobj_tempClass;
|
---|
| 429 | pobj_tempClass=(CClass *)lpCalcIndex;
|
---|
| 430 | while(pobj_tempClass&&(!IS_LITERAL((LONG_PTR)pobj_tempClass))){
|
---|
| 431 | pobj_tempClass=pobj_tempClass->pobj_InheritsClass;
|
---|
| 432 |
|
---|
| 433 | if(lpVarIndex==(LONG_PTR)pobj_tempClass){
|
---|
| 434 | //継承先が等しいとき
|
---|
| 435 | return;
|
---|
| 436 | }
|
---|
| 437 | }
|
---|
| 438 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,2,pszFuncName,ParmNum);
|
---|
| 439 | return;
|
---|
| 440 | }
|
---|
| 441 | }
|
---|
| 442 | }
|
---|
| 443 |
|
---|
| 444 | if(VarType==DEF_DOUBLE){
|
---|
| 445 | if(Is64Type(CalcType)){
|
---|
| 446 | //64ビット整数値の場合は警告を出す
|
---|
| 447 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
| 448 | }
|
---|
| 449 | }
|
---|
| 450 | else if(VarType==DEF_SINGLE){
|
---|
| 451 | if(Is64Type(CalcType)||CalcType==DEF_DOUBLE){
|
---|
| 452 | //64ビット整数値、またはDouble型の場合は警告を出す
|
---|
| 453 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
| 454 | }
|
---|
| 455 | }
|
---|
| 456 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(char)){
|
---|
| 457 | if(GetTypeSize(CalcType,lpCalcIndex)>sizeof(char)&&
|
---|
| 458 | lpCalcIndex!=LITERAL_NULL&&
|
---|
| 459 | lpCalcIndex!=LITERAL_M128_0&&
|
---|
| 460 | lpCalcIndex!=LITERAL_0_255){
|
---|
| 461 | //8ビット整数値より大きな型で、リテラル値でもない場合は警告を出す
|
---|
| 462 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
| 463 | }
|
---|
| 464 | }
|
---|
| 465 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(short)){
|
---|
| 466 | if(GetTypeSize(CalcType,lpCalcIndex)>sizeof(short)&&
|
---|
| 467 | lpCalcIndex!=LITERAL_NULL&&
|
---|
| 468 | lpCalcIndex!=LITERAL_M128_0&&
|
---|
| 469 | lpCalcIndex!=LITERAL_0_255&&
|
---|
| 470 | lpCalcIndex!=LITERAL_M32768_0&&
|
---|
| 471 | lpCalcIndex!=LITERAL_0_65535){
|
---|
| 472 | //16ビット整数値より大きな型で、リテラル値でもない場合は警告を出す
|
---|
| 473 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
| 474 | }
|
---|
| 475 | }
|
---|
| 476 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(long)){
|
---|
| 477 | if(IsRealNumberType(CalcType)||
|
---|
| 478 | (IsWholeNumberType(CalcType)&&
|
---|
| 479 | GetTypeSize(CalcType,lpCalcIndex)>sizeof(long)&&
|
---|
| 480 | lpCalcIndex!=LITERAL_NULL)
|
---|
| 481 | ){
|
---|
| 482 | /* 32ビット整数値より大きな型、または実数、
|
---|
| 483 | またはリテラル値でもない場合は警告を出す */
|
---|
| 484 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
| 485 | }
|
---|
| 486 | }
|
---|
| 487 | else if(GetTypeSize(VarType,lpVarIndex)==sizeof(_int64)){
|
---|
| 488 | if(IsRealNumberType(CalcType)){
|
---|
| 489 | //実数の場合は警告を出す
|
---|
| 490 | DifferentTypeError(VarType,lpVarIndex,CalcType,lpCalcIndex,1,pszFuncName,ParmNum);
|
---|
| 491 | }
|
---|
| 492 | }
|
---|
| 493 | }
|
---|