浏览代码

Create empty galgas project

DricomDragon 5 年之前
父节点
当前提交
93ffc87f68

+ 10 - 0
logoPlayer/galgas-sources/logoPlayer-cocoa.galgas

@@ -0,0 +1,10 @@
+gui cocoa {
+  with option logoPlayer_options
+
+  with lexique logoPlayer_lexique {
+    fileExtension: "logoPlayer"
+    title: "Source"
+    blockComment : "#"
+  }
+
+}

+ 5 - 0
logoPlayer/galgas-sources/logoPlayer-grammar.galgas

@@ -0,0 +1,5 @@
+grammar logoPlayer_grammar "LL1" {
+  syntax logoPlayer_syntax
+  <start_symbol>
+}
+

+ 106 - 0
logoPlayer/galgas-sources/logoPlayer-lexique.galgas

@@ -0,0 +1,106 @@
+lexique logoPlayer_lexique {
+
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+#   Identifiers and keywords                                                                                           *
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+
+@string tokenString
+
+style keywordsStyle -> "Keywords"
+
+$identifier$ ! tokenString error message "an identifier"
+
+#--- This is the keyword list
+list keyWordList style keywordsStyle error message "the '%K' keyword" {
+  "begin",
+  "end"
+}
+
+rule 'a'->'z' |  'A'->'Z' {
+  repeat
+    enterCharacterIntoString (!?tokenString !*)
+  while 'a'->'z' | 'A'->'Z' | '_' | '0'->'9' :
+  end
+  send search tokenString in keyWordList default $identifier$
+}
+
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+#   Literal decimal integers                                                                                           *
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+
+style integerStyle -> "Integer Constants"
+@uint uint32value
+$integer$ !uint32value style integerStyle error message "a 32-bit unsigned decimal number"
+
+message decimalNumberTooLarge : "decimal number too large"
+message internalError : "internal error"
+
+rule '0'->'9' {
+  enterCharacterIntoString (!?tokenString !*)
+  repeat
+  while '0'->'9' :
+    enterCharacterIntoString (!?tokenString !*)
+  while '_' :
+  end
+  convertDecimalStringIntoUInt (!tokenString !?uint32value error decimalNumberTooLarge, internalError)
+  send $integer$
+}
+
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+#   Literal character strings                                                                                          *
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+
+style stringStyle -> "String Constants"
+$"string"$ ! tokenString style stringStyle %nonAtomicSelection error message "a character string constant \"...\""
+
+
+message incorrectStringEnd : "string does not end with '\"'"
+
+rule '"' {
+  repeat
+   while ' ' | '!' | '#'-> '\uFFFD' :
+    enterCharacterIntoString (!?tokenString !*)
+  end
+  select
+  case '"' :
+    send $"string"$
+  default
+    error incorrectStringEnd
+  end
+}
+
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+#   Delimiters                                                                                                         *
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+
+style delimitersStyle -> "Delimiters"
+list delimitorsList style delimitersStyle error message "the '%K' delimitor" {
+  ":",    ",",    ";",   "!",  "{",  "}", "->", "@", "*", "-"
+}
+
+rule list delimitorsList
+
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+#   Comments                                                                                                           *
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+
+style commentStyle -> "Comments"
+$comment$ style commentStyle %nonAtomicSelection error message "a comment"
+rule '#' {
+  repeat
+  while '\u0001' -> '\u0009' | '\u000B' | '\u000C' | '\u000E' -> '\uFFFD' :
+  end
+  drop $comment$
+}
+
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+#   Separators                                                                                                         *
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+
+rule '\u0001' -> ' ' {
+}
+
+#———————————————————————————————————————————————————————————————————————————————————————————————————————————————————————
+
+}
+

+ 5 - 0
logoPlayer/galgas-sources/logoPlayer-options.galgas

@@ -0,0 +1,5 @@
+option logoPlayer_options {
+
+# ADD YOUR CODE
+
+}

+ 15 - 0
logoPlayer/galgas-sources/logoPlayer-program.galgas

@@ -0,0 +1,15 @@
+#--- Prologue routine
+before {
+}
+
+#--- 'when' clauses
+case . "logoPlayer"
+message "a source text file with the .logoPlayer extension"
+grammar logoPlayer_grammar
+?sourceFilePath:@lstring inSourceFile {
+  grammar logoPlayer_grammar in inSourceFile
+}
+
+#--- Epilogue routine
+after {
+}

+ 3 - 0
logoPlayer/galgas-sources/logoPlayer-semantics.galgas

@@ -0,0 +1,3 @@
+
+# ADD YOUR CODE
+

+ 9 - 0
logoPlayer/galgas-sources/logoPlayer-syntax.galgas

@@ -0,0 +1,9 @@
+syntax logoPlayer_syntax (logoPlayer_lexique) {
+
+rule <start_symbol> {
+  # ADD YOUR SYNTAX INSTRUCTIONS
+}
+
+# ADD OTHER RULES
+
+}

+ 24 - 0
logoPlayer/logoPlayer.galgasProject

@@ -0,0 +1,24 @@
+project (0:0:1) -> "logoPlayer" {
+#--- Targets
+  %makefile-macosx
+  %makefile-unix
+  %makefile-x86linux32-on-macosx
+  %makefile-x86linux64-on-macosx
+  %makefile-win32-on-macosx
+  %LatestMacOS
+  %applicationBundleBase : "fr.what"
+  %codeblocks-windows
+  %codeblocks-linux32
+  %codeblocks-linux64
+  %codeblocks-mac
+
+#--- Source files
+  "galgas-sources/logoPlayer-lexique.galgas"
+  "galgas-sources/logoPlayer-options.galgas"
+  "galgas-sources/logoPlayer-semantics.galgas"
+  "galgas-sources/logoPlayer-syntax.galgas"
+  "galgas-sources/logoPlayer-grammar.galgas"
+  "galgas-sources/logoPlayer-cocoa.galgas"
+  "galgas-sources/logoPlayer-program.galgas"
+}
+