ecere/OS X: Tweaks to get the SDK building for OS X again
[sdk] / ide / src / project / Project.ec
1 #ifdef ECERE_STATIC
2 public import static "ecere"
3 #else
4 public import "ecere"
5 #endif
6
7 import "DynamicString"
8
9 #ifndef MAKEFILE_GENERATOR
10 import "ide"
11 // We should have the .sln/.vcproj generation even on other platforms
12 // e.g. detect from an environment variable pointing to a Windows drive
13 #ifdef __WIN32__
14 import "vsSupport"
15 #endif
16 #endif
17
18 import "ProjectConfig"
19 import "ProjectNode"
20 import "IDESettings"
21
22 default:
23
24 static void DummyFunction()
25 {
26 int a;
27 a.OnFree();
28 }
29
30 private:
31
32 extern int __ecereVMethodID_class_OnCompare;
33 extern int __ecereVMethodID_class_OnFree;
34
35 IDESettings ideSettings;
36
37 IDESettingsContainer settingsContainer
38 {
39    driver = "JSON";
40    dataOwner = &ideSettings;
41    dataClass = class(IDESettings);
42
43    void OnLoad(GlobalSettingsData data)
44    {
45       IDESettings settings = (IDESettings)data;
46 #ifndef MAKEFILE_GENERATOR
47       globalSettingsDialog.ideSettings = settings;
48       ide.UpdateRecentMenus();
49 #endif
50    }
51 };
52
53 #ifdef MAKEFILE_GENERATOR
54 CompilerConfig defaultCompiler;
55 #endif
56
57 // LEGACY BINARY EPJ LOADING
58
59 SetBool ParseTrueFalseValue(char * string)
60 {
61    if(!strcmpi(string, "True")) return true;
62    return false;
63 }
64
65 void ParseArrayValue(Array<String> array, char * equal)
66 {
67    char * start, * comma;
68    char * string;
69    string = CopyString(equal);
70    start = string;
71    while(start)
72    {
73       comma = strstr(start, ",");
74       if(comma)
75          comma[0] = '\0';
76       array.Add(CopyString(start));
77       if(comma)
78          comma++;
79       if(comma)
80          comma++;
81       start = comma;
82    }
83    delete string;
84 }
85
86 void ProjectNode::LegacyBinaryLoadNode(File f)
87 {
88    int len, count, c;
89    int fileNameLen;
90
91    f.Read(&len, sizeof(len), 1);
92    name = new char[len+1];
93    fileNameLen = len;
94    f.Read(name, sizeof(char), len+1);
95    f.Read(&len, sizeof(len), 1);
96    fileNameLen += len;
97    path = new char[len+1];
98    f.Read(path, sizeof(char), len+1);
99    
100    /*
101    fileName = new char[fileNameLen+2];
102    strcpy(fileName, path);
103    if(fileName[0]) strcat(fileName, "/");
104    strcat(fileName, name);
105    */
106
107    f.Read(&type, sizeof(type), 1);
108    f.Read(&count, sizeof(count), 1);
109    
110    if(type == file)
111    {
112       nodeType = file;
113       icon = NodeIcons::SelectFileIcon(name);
114    }
115    else
116    {
117       nodeType = folder;
118       icon = NodeIcons::SelectNodeIcon(type);
119    }
120
121    if(count && !files) files = { };
122    for(c = 0; c < count; c++)
123    {
124       ProjectNode child { };
125       files.Add(child);
126       child.parent = this;
127       child.indent = indent + 1;
128       LegacyBinaryLoadNode(child, f);
129    }
130 }
131
132 /*void LegacyBinarySaveNode(File f)
133 {
134    int len;
135    ProjectNode child;
136    len = strlen(name);
137    f.Write(&len, sizeof(len), 1);
138    f.Write(name, sizeof(char), len+1);
139
140    if(type == project)
141    {
142       // Projects Absolute Path Are Not Saved
143       len = 0;
144       f.Write(&len, sizeof(len), 1);
145       f.Write(&len, sizeof(char), 1);
146    }
147    else
148    {
149       len = strlen(path);
150       f.Write(&len, sizeof(len), 1);
151       f.Write(path, sizeof(char), len+1);
152    }
153    f.Write(&type, sizeof(type), 1);
154    f.Write(&children.count, sizeof(children.count), 1);
155    for(child = children.first; child; child.next)
156       child.SaveNode(f);
157 }*/
158
159 void ProjectNode::LegacyAsciiSaveNode(File f, char * indentation, char * insidePath)
160 {
161    int len;
162    char printPath[MAX_LOCATION];
163
164    if(type == project && (files.count /*|| preprocessorDefs.first*/))
165    {
166       f.Printf("\n   Files\n");
167    }
168    else if(type == file)
169    {
170       if(!strcmp(path, insidePath))
171          f.Printf("%s - %s\n", indentation, name);
172       else
173       {
174          strcpy(printPath, path);
175          len = strlen(printPath);
176          if(len)
177             if(printPath[len-1] != '/')
178                strcat(printPath, "/");
179          strcat(printPath, name);
180          f.Printf("%s = %s\n", indentation, printPath);
181       }
182       if(files.count)
183          f.Printf("\nError\n\n");
184    }
185    else if(type == folder)
186    {
187       f.Printf("%s + %s\n", indentation, name);
188    }
189    else if(type == resources && files.count)
190    {
191       PathCatSlash(insidePath, path);
192       f.Printf("\n%sResources\n", indentation);
193       if(path && path[0])
194          f.Printf("%s   Path = %s\n", indentation, path);
195    }
196    
197    /*if(buildExclusions.first && type != project)
198    {
199       for(item = buildExclusions.first; item; item = item.next)
200       {
201          if(item == buildExclusions.first)
202             f.Printf("%s      Build Exclusions = %s", indentation, item.name);
203          else
204             f.Printf(", %s", item.name);
205       }
206       f.Printf("\n");
207    }
208
209    if(preprocessorDefs.first && (type == project || ((type == file || type == folder) && !isInResources)))
210    {
211       for(item = preprocessorDefs.first; item; item = item.next)
212       {
213          if(item == preprocessorDefs.first)
214             f.Printf("%s%s   Preprocessor Definitions = %s", indentation, type == project ? "" : "   ", item.name);
215          else
216             f.Printf(", %s", item.name);
217       }
218       f.Printf("\n");
219    }
220    */
221    
222    if(type == project && (files.count /*|| preprocessorDefs.first*/))
223    {
224       f.Printf("\n");
225       for(child : files)
226          LegacyAsciiSaveNode(child, f, indentation, insidePath);
227    }
228    else if(type == folder)
229    {
230       strcat(indentation, "   ");
231       // WHAT WAS THIS: strcpy(printPath, path);
232       // TOCHECK: why is Unix/PathCat not used here
233       len = strlen(insidePath);
234       if(len)
235          if(insidePath[len-1] != '/')
236             strcat(insidePath, "/");
237       strcat(insidePath, name);
238
239       for(child : files)
240          LegacyAsciiSaveNode(child, f, indentation, insidePath);
241       f.Printf("%s -\n", indentation);
242       indentation[strlen(indentation) - 3] = '\0';
243       StripLastDirectory(insidePath, insidePath);
244    }
245    else if(type == resources && files.count)
246    {
247       f.Printf("\n");
248       for(child : files)
249          LegacyAsciiSaveNode(child, f, indentation, insidePath);
250       StripLastDirectory(insidePath, insidePath);
251    }
252 }
253
254 /*
255 void ProjectConfig::LegacyProjectConfigSave(File f)
256 {
257    char * indentation = "      ";
258    //if(isCommonConfig)
259       //f.Printf("\n * Common\n");
260    //else
261       f.Printf("\n + %s\n", name);
262    f.Printf("\n   Compiler\n\n");
263    if(objDir.expression[0])
264       f.Printf("%sIntermediate Directory = %s\n", indentation, objDir.expression);
265    f.Printf("%sDebug = %s\n", indentation, (options.debug == true) ? "True" : "False");
266    switch(options.optimization)
267    {
268       // case none:   f.Printf("%sOptimize = %s\n", indentation, "None"); break;
269       case speed: f.Printf("%sOptimize = %s\n", indentation, "Speed"); break;
270       case size:  f.Printf("%sOptimize = %s\n", indentation, "Size");  break;
271    }
272    f.Printf("%sAllWarnings = %s\n", indentation, (options.warnings == all) ? "True" : "False");
273    if(options.profile)
274       f.Printf("%sProfile = %s\n", indentation, (options.profile == true) ? "True" : "False");
275    if(options.memoryGuard == true)
276       f.Printf("%sMemoryGuard = %s\n", indentation, (options.memoryGuard == true) ? "True" : "False");
277    if(options.strictNameSpaces == true)
278       f.Printf("%sStrict Name Spaces = %s\n", indentation, (options.strictNameSpaces == true) ? "True" : "False");
279    if(options.defaultNameSpace && strlen(options.defaultNameSpace))
280       f.Printf("%sDefault Name Space = %s\n", indentation, options.defaultNameSpace);
281     TOFIX: Compiler Bug {
282       if(options.preprocessorDefinitions.count)
283       {
284          bool isFirst = true;
285          for(item : options.preprocessorDefinitions)
286          {
287             if(isFirst)
288             {
289                f.Printf("\n%sPreprocessor Definitions = %s", indentation, item);
290                isFirst = false;
291             }
292             else
293                f.Printf(", %s", item);
294          }
295          f.Printf("\n");
296       }
297    }
298    if(options.includeDirs.count)
299    {
300       f.Printf("\n%sInclude Directories\n", indentation);
301       for(item : options.includeDirs)
302          f.Printf("%s - %s\n", indentation, name);
303       f.Printf("\n");
304    }
305
306    f.Printf("\n%sLinker\n\n", indentation);
307    f.Printf("%sTarget Name = %s\n", indentation, options.targetFileName);
308    switch(options.targetType)
309    {
310       case executable:     f.Printf("%sTarget Type = %s\n", indentation, "Executable"); break;
311       case sharedLibrary:  f.Printf("%sTarget Type = %s\n", indentation, "Shared");     break;
312       case staticLibrary:  f.Printf("%sTarget Type = %s\n", indentation, "Static");     break;
313    }
314    if(targetDir.expression[0])
315       f.Printf("%sTarget Directory = %s\n", indentation, targetDir.expression);
316    if(options.console)
317       f.Printf("%sConsole = %s\n", indentation, options.console ? "True" : "False");
318    if(options.compress)
319       f.Printf("%sCompress = %s\n", indentation, options.compress ? "True" : "False");
320    if(options.libraries.count)
321    {
322       bool isFirst = true;
323       for(item : options.libraries)
324       {
325          if(isFirst)
326          {
327             f.Printf("\n%sLibraries = %s", indentation, name);
328             isFirst = false;
329          }
330          else
331             f.Printf(", %s", item);
332       }
333       f.Printf("\n");
334    }
335    if(options.libraryDirs.count)
336    {
337       f.Printf("\n%sLibrary Directories\n\n", indentation);
338       for(item : options.libraryDirs)
339          f.Printf("       - %s\n", indentation, item);
340    }
341 }
342
343 void LegacyAsciiSaveProject(File f, Project project)
344 {
345    char indentation[128*3];
346    char path[MAX_LOCATION];
347
348    f.Printf("\nECERE Project File : Format Version 0.1b\n");
349    f.Printf("\nDescription\n%s\n.\n", project.description);
350    f.Printf("\nLicense\n%s\n.\n", project.license);
351    f.Printf("\nModule Name = %s\n", project.moduleName);
352    f.Printf("\n   Configurations\n");
353    //////////////////////////////////////commonConfig.Save(f, true);
354    for(cfg : project.configurations)
355       LegacyProjectConfigSave(cfg, f);
356
357    strcpy(indentation, "   ");
358    path[0] = '\0';
359    LegacyAsciiSaveNode(project.topNode, f, indentation, path);
360    // f.Printf("\n");
361    delete f;
362 }
363 */
364
365 // *** NEW JSON PROJECT FORMAT ***
366 public enum ProjectNodeType { file, folder };
367
368 // *******************************
369
370 define PEEK_RESOLUTION = (18.2 * 10);
371
372 // On Windows & UNIX
373 #define SEPS    "/"
374 #define SEP     '/'
375
376 static byte epjSignature[] = { 'E', 'P', 'J', 0x04, 0x01, 0x12, 0x03, 0x12 };
377
378 enum GenMakefilePrintTypes { objects, cObjects, symbols, imports, sources, resources, eCsources };
379
380 define WorkspaceExtension = "ews";
381 define ProjectExtension = "epj";
382
383 define stringInFileIncludedFrom = "In file included from ";
384
385 void ReplaceSpaces(char * output, char * source)
386 {
387    int c, dc;
388    char ch, pch = 0;
389
390    for(c = 0, dc = 0; (ch = source[c]); c++, dc++)
391    {
392       if(ch == ' ') output[dc++] = '\\';
393       if(pch != '$')
394       {
395          if(ch == '(' || ch == ')') output[dc++] = '\\';
396          pch = ch;
397       }
398       else if(ch == ')')
399          pch = 0;
400       output[dc] = ch;
401    }
402    output[dc] = '\0';
403 }
404
405 void ReplaceUnwantedMakeChars(char * output, char * source)
406 {
407    int c, dc;
408    char ch, pch = 0;
409
410    for(c = 0, dc = 0; (ch = source[c]); c++, dc++)
411    {
412       if(pch != '$')
413       {
414          if(ch == '(' || ch == ')') output[dc++] = '\\';
415          pch = ch;
416       }
417       else if(ch == ')')
418          pch = 0;
419       if(ch == ' ')
420          output[dc] = 127;
421       else
422          output[dc] = ch;
423    }
424    output[dc] = '\0';
425 }
426
427 static void OutputNoSpace(File f, char * source)
428 {
429    char * output = new char[strlen(source)+1024];
430    ReplaceSpaces(output, source);
431    f.Puts(output);
432    delete output;
433 }
434
435 enum ListOutputMethod { inPlace, newLine, lineEach };
436
437 int OutputFileList(File f, char * name, Array<String> list, Map<String, int> varStringLenDiffs, char * prefix)
438 {
439    int numOfBreaks = 0;
440    const int breakListLength = 1536;
441    const int breakLineLength = 78; // TODO: turn this into an option.
442
443    int c, len, itemCount = 0;
444    Array<int> breaks { };
445    if(list.count)
446    {
447       int charCount = 0;
448       MapNode<String, int> mn;
449       for(c=0; c<list.count; c++)
450       {
451          len = strlen(list[c]) + 3;
452          if(strstr(list[c], "$(") && varStringLenDiffs && varStringLenDiffs.count)
453          {
454             for(mn = varStringLenDiffs.root.minimum; mn; mn = mn.next)
455             {
456                if(strstr(list[c], mn.key))
457                   len += mn.value;
458             }
459          }
460          if(charCount + len > breakListLength)
461          {
462             breaks.Add(itemCount);
463             itemCount = 0;
464             charCount = len;
465          }
466          itemCount++;
467          charCount += len;
468       }
469       if(itemCount)
470          breaks.Add(itemCount);
471       numOfBreaks = breaks.count;
472    }
473
474    if(numOfBreaks > 1)
475    {
476       f.Printf("%s =%s%s", name, prefix ? " " : "", prefix ? prefix : "");
477       for(c=0; c<numOfBreaks; c++)
478          f.Printf(" $(%s%d)", name, c+1);
479       f.Puts("\n");
480    }
481    else
482       f.Printf("%s =%s%s", name, prefix ? " " : "", prefix ? prefix : "");
483
484    if(numOfBreaks)
485    {
486       int n, offset = 0;
487
488       for(c=0; c<numOfBreaks; c++)
489       {
490          if(numOfBreaks > 1)
491             f.Printf("%s%d =", name, c+1);
492          
493          len = 3;
494          itemCount = breaks[c];
495          for(n=offset; n<offset+itemCount; n++)
496          {
497             if(false) // TODO: turn this into an option.
498             {
499                int itemLen = strlen(list[n]);
500                if(len > 3 && len + itemLen > breakLineLength)
501                {
502                   f.Printf(" \\\n\t%s", list[n]);
503                   len = 3;
504                }
505                else
506                {
507                   len += itemLen;
508                   f.Printf(" %s", list[n]);
509                }
510             }
511             else
512                f.Printf(" \\\n\t%s", list[n]);
513          }
514          offset += itemCount;
515          f.Puts("\n");
516       }
517       list.Free();
518       list.count = 0;
519    }
520    else
521       f.Puts("\n");
522    f.Puts("\n");
523    delete breaks;
524    return numOfBreaks;
525 }
526
527 void OutputCleanActions(File f, char * name, int parts)
528 {
529    if(parts > 1)
530    {
531       int c;
532       for(c=0; c<parts; c++)
533          f.Printf("\t$(call rmq,$(%s%d))\n", name, c+1);
534    }
535    else
536       f.Printf("\t$(call rmq,$(%s))\n", name);
537 }
538
539 void OutputListOption(File f, char * option, Array<String> list, ListOutputMethod method, bool noSpace)
540 {
541    if(list.count)
542    {
543       if(method == newLine)
544          f.Puts(" \\\n\t");
545       for(item : list)
546       {
547          if(method == lineEach)
548             f.Puts(" \\\n\t");
549          f.Printf(" -%s", option);
550          if(noSpace)
551             OutputNoSpace(f, item);
552          else
553             f.Printf("%s", item);
554       }
555    }
556 }
557
558 void StringNoSpaceToDynamicString(DynamicString s, char * path)
559 {
560    char * output = new char[strlen(path)+1024];
561    ReplaceSpaces(output, path);
562    s.concat(output);
563    delete output;
564 }
565
566 static void OutputLibraries(File f, Array<String> libraries)
567 {
568    for(item : libraries)
569    {
570       char ext[MAX_EXTENSION];
571       char temp[MAX_LOCATION];
572       char * s = item;
573       bool usedFunction = false;
574       GetExtension(item, ext);
575       if(!strcmp(ext, "o") || !strcmp(ext, "a"))
576          f.Puts(" ");
577       else
578       {
579          if(!strcmp(ext, "so") || !strcmp(ext, "dylib"))
580          {
581             if(!strncmp(item, "lib", 3))
582                strcpy(temp, item + 3);
583             else
584                strcpy(temp, item);
585             StripExtension(temp);
586             s = temp;
587          } 
588          f.Puts(" \\\n\t$(call _L,");
589          usedFunction = true;
590       }
591       OutputNoSpace(f, s);
592       if(usedFunction)
593          f.Puts(")");
594    }
595 }
596
597 void CamelCase(char * string)
598 {
599    int c, len = strlen(string);
600    for(c=0; c<len && string[c] >= 'A' && string[c] <= 'Z'; c++)
601       string[c] = (char)tolower(string[c]);
602 }
603
604 CompilerConfig GetCompilerConfig()
605 {
606 #ifndef MAKEFILE_GENERATOR
607    CompilerConfig compiler = null;
608    if(ide && ide.workspace)
609       compiler = ideSettings.GetCompilerConfig(ide.workspace.compiler);
610    return compiler;
611 #else
612    incref defaultCompiler;
613    return defaultCompiler;
614 #endif
615 }
616
617 define localTargetType = config && config.options && config.options.targetType ?
618             config.options.targetType : options && options.targetType ?
619             options.targetType : TargetTypes::executable;
620 define localWarnings = config && config.options && config.options.warnings ?
621             config.options.warnings : options && options.warnings ?
622             options.warnings : WarningsOption::unset;
623 define localDebug = config && config.options && config.options.debug ?
624             config.options.debug : options && options.debug ?
625             options.debug : SetBool::unset;
626 define localMemoryGuard = config && config.options && config.options.memoryGuard ?
627             config.options.memoryGuard : options && options.memoryGuard ?
628             options.memoryGuard : SetBool::unset;
629 define localNoLineNumbers = config && config.options && config.options.noLineNumbers ?
630             config.options.noLineNumbers : options && options.noLineNumbers ?
631             options.noLineNumbers : SetBool::unset;
632 define localProfile = config && config.options && config.options.profile ?
633             config.options.profile : options && options.profile ?
634             options.profile : SetBool::unset;
635 define localOptimization = config && config.options && config.options.optimization ?
636             config.options.optimization : options && options.optimization ?
637             options.optimization : OptimizationStrategy::none;
638 define localFastMath = config && config.options && config.options.fastMath ?
639             config.options.fastMath : options && options.fastMath ?
640             options.fastMath : SetBool::unset;
641 define localDefaultNameSpace = config && config.options && config.options.defaultNameSpace ?
642             config.options.defaultNameSpace : options && options.defaultNameSpace ?
643             options.defaultNameSpace : null;
644 define localStrictNameSpaces = config && config.options && config.options.strictNameSpaces ?
645             config.options.strictNameSpaces : options && options.strictNameSpaces ?
646             options.strictNameSpaces : SetBool::unset;
647 // TODO: I would rather have null here, check if it'll be ok, have the property return "" if required
648 define localTargetFileName = config && config.options && config.options.targetFileName ?
649             config.options.targetFileName : options && options.targetFileName ?
650             options.targetFileName : "";
651 define localTargetDirectory = config && config.options && config.options.targetDirectory && config.options.targetDirectory[0] ?
652             config.options.targetDirectory : options && options.targetDirectory && options.targetDirectory[0] ?
653             options.targetDirectory : null;
654 define settingsTargetDirectory = ideSettings && ideSettings.projectDefaultIntermediateObjDir &&
655             ideSettings.projectDefaultIntermediateObjDir[0] ?
656             ideSettings.projectDefaultIntermediateObjDir : defaultObjDirExpression;
657 define localObjectsDirectory = config && config.options && config.options.objectsDirectory && config.options.objectsDirectory[0] ?
658             config.options.objectsDirectory : options && options.objectsDirectory && options.objectsDirectory[0] ?
659             options.objectsDirectory : null;
660 define settingsObjectsDirectory = ideSettings && ideSettings.projectDefaultIntermediateObjDir &&
661             ideSettings.projectDefaultIntermediateObjDir[0] ?
662             ideSettings.projectDefaultIntermediateObjDir : defaultObjDirExpression;
663 define localConsole = config && config.options && config.options.console ?
664             config.options.console : options && options.console ?
665             options.console : SetBool::unset;
666 define localCompress = config && config.options && config.options.compress ?
667             config.options.compress : options && options.compress ?
668             options.compress : SetBool::unset;
669
670 define platformTargetType =
671          configPOs && configPOs.options && configPOs.options.targetType && configPOs.options.targetType != localTargetType ?
672                configPOs.options.targetType :
673          projectPOs && projectPOs.options && projectPOs.options.targetType && projectPOs.options.targetType != localTargetType ?
674                projectPOs.options.targetType : TargetTypes::unset;
675
676
677 char * PlatformToMakefileTargetVariable(Platform platform)
678 {
679    return platform == win32 ? "WINDOWS_TARGET" :
680           platform == tux   ? "LINUX_TARGET"   :
681           platform == apple ? "OSX_TARGET"     :
682                               "ERROR_BAD_TARGET";
683 }
684
685 char * TargetTypeToMakefileVariable(TargetTypes targetType)
686 {
687    return targetType == executable    ? "executable" :
688           targetType == sharedLibrary ? "sharedlib"  :
689           targetType == staticLibrary ? "staticlib"  :
690                                         "unknown";
691 }
692
693 // Move this to ProjectConfig? null vs Common to consider...
694 char * GetConfigName(ProjectConfig config)
695 {
696    return config ? config.name : "Common";
697 }
698
699 class Project : struct
700 {
701    class_no_expansion;  // To use Find on the Container<Project> in Workspace::projects
702                         // We might want to tweak this default behavior of regular classes ?
703                         // Expansion/the current default kind of Find matching we want for things like BitmapResource, FontResource (Also regular classes)
704 public:
705    float version;
706    String moduleName;
707
708    property ProjectOptions options { get { return options; } set { options = value; } isset { return options && !options.isEmpty; } }
709    property Array<PlatformOptions> platforms
710    {
711       get { return platforms; }
712       set
713       {
714          if(platforms) { platforms.Free(); delete platforms; }
715          if(value)
716          {
717             List<PlatformOptions> empty { };
718             Iterator<PlatformOptions> it { value };
719             platforms = value;
720             for(p : platforms; !p.options || p.options.isEmpty) empty.Add(p);
721             for(p : empty; it.Find(p)) platforms.Delete(it.pointer);
722             delete empty;
723          }
724       }
725       isset
726       {
727          if(platforms)
728          {
729             for(p : platforms)
730             {
731                if(p.options && !p.options.isEmpty)
732                   return true;
733             }
734          }
735          return false;
736       }
737    }
738    List<ProjectConfig> configurations;
739    LinkList<ProjectNode> files;
740    String resourcesPath;
741    LinkList<ProjectNode> resources;
742
743    property char * description
744    {
745       set { delete description; if(value && value[0]) description = CopyString(value); }
746       get { return description ? description : ""; }
747       isset { return description != null && description[0]; }
748    }
749
750    property char * license
751    {
752       set { delete license; if(value && value[0]) license = CopyString(value); }
753       get { return license ? license : ""; }
754       isset { return license != null && license[0]; }
755    }
756
757    property char * compilerConfigsDir
758    {
759       set { delete compilerConfigsDir; if(value && value[0]) compilerConfigsDir = CopyString(value); }
760       get { return compilerConfigsDir ? compilerConfigsDir : ""; }
761       isset { return compilerConfigsDir && compilerConfigsDir[0]; }
762    }
763
764 private:
765    // topNode.name holds the file name (.epj)
766    ProjectOptions options;
767    Array<PlatformOptions> platforms;
768    ProjectNode topNode { type = project, icon = epjFile, files = LinkList<ProjectNode>{ }, project = this };
769    ProjectNode resNode;
770
771    ProjectConfig config;
772    String filePath;
773    // This is the file name stripped of the epj extension
774    // It should NOT be edited, saved or loaded anywhere
775    String name;
776
777    String description;
778    String license;
779    String compilerConfigsDir;
780 #ifndef MAKEFILE_GENERATOR
781    FileMonitor fileMonitor
782    {
783       this, FileChange { modified = true };
784       bool OnFileNotify(FileChange action, char * param)
785       {
786          fileMonitor.StopMonitoring();
787          if(OnProjectModified(action, param))
788             fileMonitor.StartMonitoring();
789          return true;
790       }
791    };
792
793    bool StartMonitoring()
794    {
795       fileMonitor.fileName = filePath;
796       fileMonitor.StartMonitoring();
797       return true;
798    }
799
800    bool StopMonitoring()
801    {
802       fileMonitor.StopMonitoring();
803       return true;
804    }
805
806    bool OnProjectModified(FileChange fileChange, char * param)
807    {
808       char temp[4096];
809       sprintf(temp, $"The project %s was modified by another application.\n"
810             "Would you like to reload it and lose your changes?", name);
811       if(MessageBox { type = yesNo, master = ide,
812             text = $"Project has been modified", contents = temp }.Modal() == yes)
813       {
814          Project project = LoadProject(filePath, config.name);
815          if(project)
816          {
817             ProjectView projectView = ide.projectView;
818             DataRow prev = topNode.row ? topNode.row.previous : null;
819             FileMonitor fm = fileMonitor;
820
821             if(projectView) projectView.DeleteNode(topNode);
822
823             *this = *project;
824             delete fileMonitor;
825             fileMonitor = fm;
826             topNode.project = this;
827
828             if(projectView)
829             {
830                CompilerConfig compiler = ideSettings.GetCompilerConfig(projectView.workspace.compiler);
831                projectView.AddNode(topNode, null);
832                topNode.row.Move(prev);
833
834                projectView.ShowOutputBuildLog(true);
835                projectView.DisplayCompiler(compiler, false);
836                projectView.ProjectUpdateMakefileForAllConfigs(this);
837                delete compiler;
838             }
839             eSystem_Delete(project);
840          }
841          return true;
842       }
843       return true;
844    }
845
846 #endif
847
848    // This frees contents without freeing the instance
849    // For use from destructor and for file monitor reloading
850    // (To work around JSON loader (LoadProject) always returning a new instance)
851    void Free()
852    {
853       if(platforms) { platforms.Free(); delete platforms; }
854       if(configurations) { configurations.Free(); delete configurations; }
855       if(files) { files.Free(); delete files; }
856       if(resources) { resources.Free(); delete resources; }
857       delete options;
858       delete resourcesPath;
859
860       delete description;
861       delete license;
862       delete compilerConfigsDir;
863       delete moduleName;
864       delete filePath;
865       delete topNode;
866       delete name;
867    }
868
869    ~Project()
870    {
871       /* // THIS IS NOW AUTOMATED WITH A project CHECK IN ProjectNode
872       topNode.configurations = null;
873       topNode.platforms = null;
874       topNode.options = null;
875       */
876       Free();
877    }
878
879    property ProjectConfig config
880    {
881       set
882       {
883          config = value;
884          delete topNode.info;
885          topNode.info = CopyString(GetConfigName(config));
886       }
887    }
888    property char * filePath
889    {
890       set
891       {
892          if(value)
893          {
894             char string[MAX_LOCATION];
895             GetLastDirectory(value, string);
896             delete topNode.name;
897             topNode.name = CopyString(string);
898             StripExtension(string);
899             delete name;
900             name = CopyString(string);
901             StripLastDirectory(value, string);
902             delete topNode.path;
903             topNode.path = CopyString(string);
904             delete filePath;
905             filePath = CopyString(value);
906          }
907       }
908    }
909
910    TargetTypes GetTargetType(ProjectConfig config)
911    {
912       TargetTypes targetType = localTargetType;
913       return targetType;
914    }
915
916    bool GetTargetTypeIsSetByPlatform(ProjectConfig config)
917    {
918       Platform platform;
919       for(platform = (Platform)1; platform < Platform::enumSize; platform++)
920       {
921          PlatformOptions projectPOs, configPOs;
922          MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
923          if(platformTargetType)
924             return true;
925       }
926       return false;
927    }
928
929
930    char * GetObjDirExpression(ProjectConfig config)
931    {
932       // TODO: Support platform options
933       char * expression = localObjectsDirectory;
934       if(!expression)
935          expression = settingsObjectsDirectory;
936       return expression;
937    }
938
939    DirExpression GetObjDir(CompilerConfig compiler, ProjectConfig config)
940    {
941       char * expression = GetObjDirExpression(config);
942       DirExpression objDir { type = intermediateObjectsDir };
943       objDir.Evaluate(expression, this, compiler, config);
944       return objDir;
945    }
946
947    char * GetTargetDirExpression(ProjectConfig config)
948    {
949       // TODO: Support platform options
950       char * expression = localTargetDirectory;
951       if(!expression)
952          expression = settingsTargetDirectory;
953       return expression;
954    }
955
956    DirExpression GetTargetDir(CompilerConfig compiler, ProjectConfig config)
957    {
958       char * expression = GetTargetDirExpression(config);
959       DirExpression targetDir { type = DirExpressionType::targetDir /*intermediateObjectsDir*/};
960       targetDir.Evaluate(expression, this, compiler, config);
961       return targetDir;
962    }
963
964    WarningsOption GetWarnings(ProjectConfig config)
965    {
966       WarningsOption warnings = localWarnings;
967       return warnings;
968    }
969
970    bool GetDebug(ProjectConfig config)
971    {
972       SetBool debug = localDebug;
973       return debug == true;
974    }
975
976    bool GetMemoryGuard(ProjectConfig config)
977    {
978       SetBool memoryGuard = localMemoryGuard;
979       return memoryGuard == true;
980    }
981
982    bool GetNoLineNumbers(ProjectConfig config)
983    {
984       SetBool noLineNumbers = localNoLineNumbers;
985       return noLineNumbers == true;
986    }
987
988    bool GetProfile(ProjectConfig config)
989    {
990       SetBool profile = localProfile;
991       return profile == true;
992    }
993
994    OptimizationStrategy GetOptimization(ProjectConfig config)
995    {
996       OptimizationStrategy optimization = localOptimization;
997       return optimization;
998    }
999
1000    bool GetFastMath(ProjectConfig config)
1001    {
1002       SetBool fastMath = localFastMath;
1003       return fastMath == true;
1004    }
1005
1006    String GetDefaultNameSpace(ProjectConfig config)
1007    {
1008       String defaultNameSpace = localDefaultNameSpace;
1009       return defaultNameSpace;
1010    }
1011
1012    bool GetStrictNameSpaces(ProjectConfig config)
1013    {
1014       SetBool strictNameSpaces = localStrictNameSpaces;
1015       return strictNameSpaces == true;
1016    }
1017
1018    String GetTargetFileName(ProjectConfig config)
1019    {
1020       String targetFileName = localTargetFileName;
1021       return targetFileName;
1022    }
1023
1024    //String targetDirectory;
1025    //String objectsDirectory;
1026    bool GetConsole(ProjectConfig config)
1027    {
1028       SetBool console = localConsole;
1029       return console == true;
1030    }
1031
1032    bool GetCompress(ProjectConfig config)
1033    {
1034       SetBool compress = localCompress;
1035       return compress == true;
1036    }
1037    //SetBool excludeFromBuild;
1038
1039    bool GetConfigIsInActiveDebugSession(ProjectConfig config)
1040    {
1041 #ifndef MAKEFILE_GENERATOR
1042       return ide.project == this && ide.debugger && ide.debugger.prjConfig == config && ide.debugger.isActive;
1043 #endif
1044    }
1045
1046    bool GetConfigIsInDebugSession(ProjectConfig config)
1047    {
1048 #ifndef MAKEFILE_GENERATOR
1049       return ide.project == this && ide.debugger && ide.debugger.prjConfig == config && ide.debugger.isPrepared;
1050 #endif
1051    }
1052
1053    void SetPath(bool projectsDirs, CompilerConfig compiler, ProjectConfig config)
1054    {
1055 #ifndef MAKEFILE_GENERATOR
1056       ide.SetPath(projectsDirs, compiler, config);
1057 #endif
1058    }
1059
1060 #ifndef MAKEFILE_GENERATOR
1061    bool Save(char * fileName)
1062    {
1063       File f;
1064       /*char output[MAX_LOCATION];
1065        ChangeExtension(fileName, "json", output);
1066       f = FileOpen(output, write);*/
1067       f = FileOpen(fileName, write);
1068       if(f)
1069       {
1070          files = topNode.files;
1071          resources = resNode.files;
1072          resourcesPath = resNode.path;
1073
1074          files.Remove(resNode);
1075          version = 0.2f;
1076
1077          WriteJSONObject(f, class(Project), this, 0);
1078
1079          files.Add(resNode);
1080
1081          files = null;
1082          resources = null;
1083          resourcesPath = null;
1084          delete f;
1085       }
1086       return true;
1087    }
1088 #endif
1089
1090    // This method is only called from Debugger, should be moved to Debugger class?
1091 #ifndef MAKEFILE_GENERATOR
1092    bool GetRelativePath(char * filePath, char * relativePath)
1093    {
1094       ProjectNode node;
1095       char moduleName[MAX_FILENAME];
1096       GetLastDirectory(filePath, moduleName);
1097       // try with workspace dir first?
1098       if((node = topNode.Find(moduleName, false)))
1099       {
1100          strcpy(relativePath, strcmp(node.path, ".") ? node.path : "");
1101          PathCatSlash(relativePath, node.name);
1102          return true;
1103       }
1104       else
1105       {
1106          // Tweak for automatically resolving symbol loader modules
1107          char * sl = strstr(moduleName, ".main.ec");
1108          if(sl && (*sl = 0, !strcmpi(moduleName, name)))
1109          {
1110             char objDir[MAX_LOCATION];
1111             DirExpression objDirExp;
1112             CompilerConfig compiler = ide.debugger.currentCompiler;
1113             ProjectConfig config = ide.debugger.prjConfig;
1114             // This is not perfect, as multiple source files exist for the symbol loader module...
1115             // We try to set it in the debug config object directory.
1116             if(!compiler || !config)
1117             {
1118                // If we're not currently debugging, set a breakpoint in the active compiler/config
1119                compiler = GetCompilerConfig();
1120                config = this.config;
1121                // If the current config is not debuggable, set it in the first debuggable config found
1122                if(config && !config.options.debug)
1123                {
1124                   for(c : configurations; c.options.debug)
1125                   {
1126                      config = c;
1127                      break;
1128                   }
1129                }
1130             }
1131             objDirExp = GetObjDir(compiler, config);
1132             strcpy(objDir, objDirExp.dir);
1133             delete objDirExp;
1134             ChangeCh(objDir, '\\', '/'); // TODO: this is a hack, paths should never include win32 path seperators - fix this in ProjectSettings and ProjectLoad instead
1135             ReplaceSpaces(objDir, objDir);
1136             strcpy(relativePath, objDir);
1137             *sl = '.';
1138             PathCatSlash(relativePath, moduleName);
1139             return true;
1140          }
1141       }
1142       // WARNING: On failure, relative path is uninitialized
1143       return false;   
1144    }
1145 #endif
1146
1147    void CatTargetFileName(char * string, CompilerConfig compiler, ProjectConfig config)
1148    {
1149       TargetTypes targetType = GetTargetType(config);
1150       String targetFileName = GetTargetFileName(config);
1151       if(targetType == staticLibrary)
1152       {
1153          PathCatSlash(string, "lib");
1154          strcat(string, targetFileName);
1155       }
1156       else if(compiler.targetPlatform != win32 && targetType == sharedLibrary)
1157       {
1158          PathCatSlash(string, "lib");
1159          strcat(string, targetFileName);
1160       }
1161       else
1162          PathCatSlash(string, targetFileName);
1163       
1164       switch(targetType)
1165       {
1166          case executable:
1167             if(compiler.targetPlatform == win32)
1168                strcat(string, ".exe");
1169             break;
1170          case sharedLibrary:
1171             if(compiler.targetPlatform == win32)
1172                strcat(string, ".dll");
1173             else if(compiler.targetPlatform == apple)
1174                strcat(string, ".dylib");
1175             else
1176                strcat(string, ".so");
1177             break;
1178          case staticLibrary:
1179             strcat(string, ".a");
1180             break;
1181       }
1182    }
1183
1184    bool GetProjectCompilerConfigsDir(char * cfDir, bool replaceSpaces, bool makeRelative)
1185    {
1186       bool result = false;
1187       char temp[MAX_LOCATION];
1188       strcpy(cfDir, topNode.path);
1189       if(compilerConfigsDir && compilerConfigsDir[0])
1190       {
1191          PathCatSlash(cfDir, compilerConfigsDir);
1192          result = true;
1193       }
1194       if(makeRelative)
1195       {
1196          strcpy(temp, cfDir);
1197          // Using a relative path makes it less likely to run into spaces issues
1198          // Even with escaped spaces, there still seems to be issues including a config file
1199          // in a path containing spaces
1200
1201          MakePathRelative(temp, topNode.path, cfDir);
1202       }
1203
1204       if(cfDir && cfDir[0] && cfDir[strlen(cfDir)-1] != '/')
1205          strcat(cfDir, "/");
1206       if(replaceSpaces)
1207       {
1208          strcpy(temp, cfDir);
1209          ReplaceSpaces(cfDir, temp);
1210       }
1211       return result;
1212    }
1213
1214    bool GetIDECompilerConfigsDir(char * cfDir, bool replaceSpaces, bool makeRelative)
1215    {
1216       char temp[MAX_LOCATION];
1217       bool result = false;
1218       strcpy(cfDir, topNode.path);
1219       if(ideSettings.compilerConfigsDir && ideSettings.compilerConfigsDir[0])
1220       {
1221          PathCatSlash(cfDir, ideSettings.compilerConfigsDir);
1222          result = true;
1223       }
1224       else
1225       {
1226          // Default to <ProjectDir>/.configs if unset
1227          PathCatSlash(cfDir, ".configs");
1228          result = true;
1229       }
1230       if(makeRelative)
1231       {
1232          strcpy(temp, cfDir);
1233          // Using a relative path makes it less likely to run into spaces issues
1234          // Even with escaped spaces, there still seems to be issues including a config file
1235          // in a path containing spaces
1236          if(IsPathInsideOf(cfDir, topNode.path))
1237             MakePathRelative(temp, topNode.path, cfDir);
1238       }
1239       if(cfDir && cfDir[0] && cfDir[strlen(cfDir)-1] != '/')
1240          strcat(cfDir, "/");
1241       if(replaceSpaces)
1242       {
1243          strcpy(temp, cfDir);
1244          ReplaceSpaces(cfDir, temp);
1245       }
1246       return result;
1247    }
1248
1249    void CatMakeFileName(char * string, ProjectConfig config)
1250    {
1251       char projectName[MAX_LOCATION];
1252       strcpy(projectName, name);
1253       sprintf(string, "%s%s%s.Makefile", projectName, config ? "-" : "", config ? config.name : "");
1254    }
1255
1256 #ifndef MAKEFILE_GENERATOR
1257    void MarkChanges(ProjectNode node)
1258    {
1259       for(cfg : topNode.configurations)
1260       {
1261          ProjectConfig c = null;
1262          for(i : node.configurations; !strcmpi(i.name, cfg.name)) { c = i; break; }
1263
1264          if(c && ((c.options && cfg.options && cfg.options.console != c.options.console) ||
1265                (!c.options || !cfg.options)))
1266             cfg.symbolGenModified = true;
1267
1268          cfg.makingModified = true;
1269       }
1270    }
1271
1272    void ModifiedAllConfigs(bool making, bool compiling, bool linking, bool symbolGen)
1273    {
1274       for(cfg : configurations)
1275       {
1276          if(making)
1277             cfg.makingModified = true;
1278          if(compiling)
1279             cfg.compilingModified = true;
1280          if(linking)
1281             cfg.linkingModified = true;
1282          if(symbolGen)
1283             cfg.symbolGenModified = true;
1284       }
1285       if(compiling || linking)
1286       {
1287          ide.projectView.modifiedDocument = true;
1288          ide.workspace.modified = true;
1289       }
1290    }
1291    
1292    void RotateActiveConfig(bool forward)
1293    {
1294       if(configurations.first && configurations.last != configurations.first)
1295       {
1296          Iterator<ProjectConfig> cfg { configurations };
1297          while(forward ? cfg.Next() : cfg.Prev())
1298             if(cfg.data == config)
1299                break;
1300
1301          if(forward)
1302          {
1303             if(!cfg.Next())
1304                cfg.Next();
1305          }
1306          else
1307          {
1308             if(!cfg.Prev())
1309                cfg.Prev();
1310          }
1311
1312          property::config = cfg.data;
1313          ide.workspace.modified = true;
1314          ide.projectView.Update(null);
1315       }
1316    }
1317
1318    void ProcessPipeOutputRaw(DualPipe f)
1319    {
1320       char line[65536];
1321       while(!f.Eof() && !ide.ShouldStopBuild())
1322       {
1323          bool result = true;
1324          double lastTime = GetTime();
1325          bool wait = true;
1326          while(result)
1327          {
1328             if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1329             {
1330                ide.outputView.buildBox.Logf("%s\n", line);
1331             }
1332             if(GetTime() - lastTime > 1.0 / PEEK_RESOLUTION) break;
1333          }
1334          //printf("Processing Input...\n");
1335          if(app.ProcessInput(true))
1336             wait = false;
1337          app.UpdateDisplay();
1338          if(wait)
1339          {
1340             //printf("Waiting...\n");
1341             app.Wait();
1342          }
1343          //if(!result) Sleep(1.0 / PEEK_RESOLUTION);
1344       }
1345       if(ide.ShouldStopBuild())
1346       {
1347          ide.outputView.buildBox.Logf($"\nBuild cancelled by user.\n", line);
1348          f.Terminate();
1349       }
1350    }
1351
1352    bool ProcessBuildPipeOutput(DualPipe f, DirExpression objDirExp, bool isARun, ProjectNode onlyNode,
1353       CompilerConfig compiler, ProjectConfig config)
1354    {
1355       char line[65536];
1356       bool compiling = false, linking = false, precompiling = false;
1357       int compilingEC = 0;
1358       int numErrors = 0, numWarnings = 0;
1359       bool loggedALine = false;
1360       char * configName = config ? config.name : "Common";
1361       int lenMakeCommand = strlen(compiler.makeCommand);
1362
1363       char cppCommand[MAX_LOCATION];
1364       char ccCommand[MAX_LOCATION];
1365       char cxxCommand[MAX_LOCATION];
1366       char stripCommand[MAX_LOCATION];
1367       char ecpCommand[MAX_LOCATION];
1368       char eccCommand[MAX_LOCATION];
1369       char ecsCommand[MAX_LOCATION];
1370       char earCommand[MAX_LOCATION];
1371
1372       char * cc = compiler.ccCommand;
1373       char * cxx = compiler.cxxCommand;
1374       char * cpp = compiler.cppCommand;
1375       char * strip = compiler.cppCommand;
1376       sprintf(cppCommand, "%s%s%s%s ",
1377             compiler.ccacheEnabled ? "ccache " : "",
1378             compiler.distccEnabled ? "distcc " : "",
1379             compiler.gccPrefix ? compiler.gccPrefix : "",
1380             compiler.cppCommand);
1381       sprintf(ccCommand, "%s%s%s%s ",
1382             compiler.ccacheEnabled ? "ccache " : "",
1383             compiler.distccEnabled ? "distcc " : "",
1384             compiler.gccPrefix ? compiler.gccPrefix : "",
1385             compiler.ccCommand);
1386       sprintf(cxxCommand, "%s%s%s%s ",
1387             compiler.ccacheEnabled ? "ccache " : "",
1388             compiler.distccEnabled ? "distcc " : "",
1389             compiler.gccPrefix ? compiler.gccPrefix : "",
1390             compiler.cxxCommand);
1391
1392       sprintf(stripCommand, "%sstrip ",
1393             compiler.gccPrefix ? compiler.gccPrefix : "");
1394
1395       sprintf(ecpCommand, "%s ", compiler.ecpCommand);
1396       sprintf(eccCommand, "%s ", compiler.eccCommand);
1397       sprintf(ecsCommand, "%s ", compiler.ecsCommand);
1398       sprintf(earCommand, "%s ", compiler.earCommand);
1399
1400       while(!f.Eof() && !ide.ShouldStopBuild())
1401       {
1402          bool result = true;
1403          double lastTime = GetTime();
1404          bool wait = true;
1405          while(result)
1406          {
1407             //printf("Peeking and GetLine...\n");
1408             if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1409             {
1410                char * inFileIncludedFrom = strstr(line, stringInFileIncludedFrom);
1411                if(strstr(line, compiler.makeCommand) == line && line[lenMakeCommand] == ':')
1412                {
1413                   char * module = strstr(line, "No rule to make target `");
1414                   if(module)
1415                   {
1416                      char * end;
1417                      module = strchr(module, '`') + 1;
1418                      end = strchr(module, '\'');
1419                      if(end)
1420                      {
1421                         *end = '\0';
1422                         ide.outputView.buildBox.Logf($"   %s: No such file or directory\n", module);
1423                         // ide.outputView.buildBox.Logf("error: %s\n   No such file or directory\n", module);
1424                         numErrors++;
1425                      }
1426                   }
1427                   //else
1428                   //{
1429                      //ide.outputView.buildBox.Logf("error: %s\n", line);
1430                      //numErrors++;
1431                   //}
1432                }
1433                else if(strstr(line, "ear ") == line);
1434                else if(strstr(line, stripCommand) == line);
1435                else if(strstr(line, ccCommand) == line || strstr(line, cxxCommand) == line || strstr(line, ecpCommand) == line || strstr(line, eccCommand) == line)
1436                {
1437                   char moduleName[MAX_FILENAME];
1438                   byte * tokens[1];
1439                   char * module;
1440                   bool isPrecomp = false;
1441
1442                   if(strstr(line, ccCommand) == line || strstr(line, cxxCommand) == line)
1443                   {
1444                      module = strstr(line, " -c ");
1445                      if(module) module += 4;
1446                   }
1447                   else if(strstr(line, eccCommand) == line)
1448                   {
1449                      module = strstr(line, " -c ");
1450                      if(module) module += 4;
1451                      //module = line + 3;
1452                      // Don't show GCC warnings about generated C code because it does not compile clean yet...
1453                      compilingEC = 3;//2;
1454                   }
1455                   else if(strstr(line, ecpCommand) == line)
1456                   {
1457                      // module = line + 8;
1458                      module = strstr(line, " -c ");
1459                      if(module) module += 4;
1460                      isPrecomp = true;
1461                      compilingEC = 0;
1462                   }
1463
1464                   loggedALine = true;
1465
1466                   if(module)
1467                   {
1468                      if(!compiling && !isPrecomp)
1469                      {
1470                         ide.outputView.buildBox.Logf($"Compiling...\n");
1471                         compiling = true;
1472                      }
1473                      else if(!precompiling && isPrecomp)
1474                      {
1475                         ide.outputView.buildBox.Logf($"Generating symbols...\n");
1476                         precompiling = true;
1477                      }
1478                      // Changed escapeBackSlashes here to handle paths with spaces
1479                      Tokenize(module, 1, tokens, true); // false);
1480                      GetLastDirectory(module, moduleName);
1481                      ide.outputView.buildBox.Logf("%s\n", moduleName);
1482                   }
1483                   else if((module = strstr(line, " -o ")))
1484                   {
1485                      compiling = false;
1486                      precompiling = false;
1487                      linking = true;
1488                      ide.outputView.buildBox.Logf($"Linking...\n");
1489                   }
1490                   else
1491                   {
1492                      ide.outputView.buildBox.Logf("%s\n", line);
1493                      numErrors++;
1494                   }
1495
1496                   if(compilingEC) compilingEC--;
1497                }
1498                else if(strstr(line, "ar rcs") == line)
1499                   ide.outputView.buildBox.Logf($"Building library...\n");
1500                else if(strstr(line, ecsCommand) == line)
1501                   ide.outputView.buildBox.Logf($"Writing symbol loader...\n");
1502                else
1503                {
1504                   if(linking || compiling || precompiling)
1505                   {
1506                      char * colon = strstr(line, ":"); //, * bracket;
1507                      if(colon && (colon[1] == '/' || colon[1] == '\\'))
1508                         colon = strstr(colon + 1, ":");
1509                      if(colon)
1510                      {
1511                         char moduleName[MAX_LOCATION], temp[MAX_LOCATION];
1512                         char * pointer;
1513                         char * error;
1514                         char * start = inFileIncludedFrom ? line + strlen(stringInFileIncludedFrom) : line;
1515                         int len = (int)(colon - start);
1516                         len = Min(len, MAX_LOCATION-1);
1517                         // Don't be mistaken by the drive letter colon
1518                         // Cut module name
1519                         // TODO: need to fix colon - line gives char *
1520                         // warning: incompatible expression colon - line (char *); expected int
1521                         /*
1522                         strncpy(moduleName, line, (int)(colon - line));
1523                         moduleName[colon - line] = '\0';
1524                         */
1525                         strncpy(moduleName, start, len);
1526                         moduleName[len] = '\0';
1527                         // Remove stuff in brackets
1528                         //bracket = strstr(moduleName, "(");
1529                         //if(bracket) *bracket = '\0';
1530
1531                         GetLastDirectory(moduleName, temp);
1532                         if(linking && (!strcmp(temp, "ld") || !strcmp(temp, "ld.exe")))
1533                         {
1534                            numErrors++;
1535                            strcpy(moduleName, $"Linker Error");
1536                         }
1537                         else
1538                         {
1539                            strcpy(temp, topNode.path);
1540                            PathCatSlash(temp, moduleName);
1541                            MakePathRelative(temp, topNode.path, moduleName);
1542                         }
1543                         if(strstr(line, "error:"))
1544                            numErrors ++;
1545                         else
1546                         {
1547                            // Silence warnings for compiled EC
1548                            char * objDir = strstr(moduleName, objDirExp.dir);
1549                         
1550                            if(linking)
1551                            {
1552                               if((pointer = strstr(line, "undefined"))  ||
1553                                    (pointer = strstr(line, "No such file")) ||
1554                                    (pointer = strstr(line, "token")))
1555                               {
1556                                  strncat(moduleName, colon, pointer - colon);
1557                                  strcat(moduleName, "error: ");
1558                                  colon = pointer;
1559                                  numErrors ++;
1560                               }
1561                            }
1562                            else if((pointer = strstr(line, "No such file")))
1563                            {
1564                               strncat(moduleName, colon, pointer - colon);
1565                               strcat(moduleName, "error: ");
1566                               colon = pointer;
1567                               numErrors ++;
1568                            }
1569                            else if(compilingEC == 1 || (objDir && objDir == moduleName))
1570                               continue;
1571                            else if(strstr(line, "warning:"))
1572                            {
1573                               numWarnings++;
1574                            }
1575                         }
1576                         if(this == ide.workspace.projects.firstIterator.data)
1577                            ide.outputView.buildBox.Logf("   %s%s\n", moduleName, colon);
1578                         else
1579                         {
1580                            char fullModuleName[MAX_LOCATION];
1581                            strcpy(fullModuleName, topNode.path);
1582                            PathCat(fullModuleName, moduleName);
1583                            MakePathRelative(fullModuleName, ide.workspace.projects.firstIterator.data.topNode.path, fullModuleName);
1584                            MakeSystemPath(fullModuleName);
1585                            ide.outputView.buildBox.Logf("   %s%s%s\n", inFileIncludedFrom ? stringInFileIncludedFrom : "", fullModuleName, colon);
1586                         }
1587                      }
1588                      else
1589                      {
1590                         ide.outputView.buildBox.Logf("%s\n", line);
1591                         linking = compiling = precompiling = false;
1592                      }
1593                   }
1594                   else
1595                      ide.outputView.buildBox.Logf("%s\n", line);
1596                }
1597                wait = false;
1598             }
1599             //printf("Done getting line\n");
1600             if(GetTime() - lastTime > 1.0 / PEEK_RESOLUTION) break;
1601          }
1602          //printf("Processing Input...\n");
1603          if(app.ProcessInput(true))
1604             wait = false;
1605          app.UpdateDisplay();
1606          if(wait)
1607          {
1608             //printf("Waiting...\n");
1609             app.Wait();
1610          }
1611          //if(!result) Sleep(1.0 / PEEK_RESOLUTION);
1612       }
1613       if(ide.ShouldStopBuild())
1614       {
1615          ide.outputView.buildBox.Logf($"\nBuild cancelled by user.\n", line);
1616          f.Terminate();
1617       }
1618       else if(loggedALine || !isARun)
1619       {
1620          if(f.GetExitCode() && !numErrors)
1621          {
1622             bool result = f.GetLine(line, sizeof(line)-1);
1623             ide.outputView.buildBox.Logf($"Fatal Error: child process terminated unexpectedly\n");
1624          }
1625          else
1626          {
1627             if(!onlyNode)
1628                ide.outputView.buildBox.Logf("\n%s (%s) - ", GetTargetFileName(config), configName);
1629             if(numErrors)
1630                ide.outputView.buildBox.Logf("%d %s, ", numErrors, (numErrors > 1) ? $"errors" : $"error");
1631             else
1632                ide.outputView.buildBox.Logf($"no error, ");
1633    
1634             if(numWarnings)
1635                ide.outputView.buildBox.Logf("%d %s\n", numWarnings, (numWarnings > 1) ? $"warnings" : $"warning");
1636             else
1637                ide.outputView.buildBox.Logf($"no warning\n");
1638          }
1639       }
1640       return numErrors == 0;
1641    }
1642
1643    void ProcessCleanPipeOutput(DualPipe f, CompilerConfig compiler, ProjectConfig config)
1644    {
1645       char line[65536];
1646       int lenMakeCommand = strlen(compiler.makeCommand);
1647       while(!f.Eof())
1648       {
1649          bool result = true;
1650          bool wait = true;
1651          double lastTime = GetTime();
1652          while(result)
1653          {
1654             if((result = f.Peek()) && (result = f.GetLine(line, sizeof(line)-1)))
1655             {
1656                if(strstr(line, compiler.makeCommand) == line && line[lenMakeCommand] == ':');
1657                else if(strstr(line, "del") == line);
1658                else if(strstr(line, "rm") == line);
1659                else if(strstr(line, "Could Not Find") == line);
1660                else
1661                {
1662                   ide.outputView.buildBox.Logf(line);
1663                   ide.outputView.buildBox.Logf("\n");
1664                }
1665                wait = false;
1666             }
1667             if(GetTime() - lastTime > 1.0 / PEEK_RESOLUTION) break;
1668          }
1669          if(app.ProcessInput(true))
1670             wait = false;
1671          app.UpdateDisplay();
1672          if(wait)
1673             app.Wait();
1674          //Sleep(1.0 / PEEK_RESOLUTION);
1675       }
1676    }
1677
1678    bool Build(bool isARun, ProjectNode onlyNode, CompilerConfig compiler, ProjectConfig config)
1679    {
1680       bool result = false;
1681       DualPipe f;
1682       char targetFileName[MAX_LOCATION] = "";
1683       char makeTarget[MAX_LOCATION] = "";
1684       char makeFile[MAX_LOCATION];
1685       char makeFilePath[MAX_LOCATION];
1686       char configName[MAX_LOCATION];
1687       DirExpression objDirExp = GetObjDir(compiler, config);
1688       PathBackup pathBackup { };
1689       bool crossCompiling = (compiler.targetPlatform != GetRuntimePlatform());
1690       char * targetPlatform = crossCompiling ? (char *)compiler.targetPlatform : "";
1691
1692       int numJobs = compiler.numJobs;
1693       char command[MAX_LOCATION];
1694       char * compilerName;
1695
1696       compilerName = CopyString(compiler.name);
1697       CamelCase(compilerName);
1698
1699       strcpy(configName, config ? config.name : "Common");
1700
1701       SetPath(false, compiler, config); //true
1702       CatTargetFileName(targetFileName, compiler, config);
1703
1704       strcpy(makeFilePath, topNode.path);
1705       CatMakeFileName(makeFile, config);
1706       PathCatSlash(makeFilePath, makeFile);
1707
1708       // TODO: TEST ON UNIX IF \" around makeTarget is ok
1709       if(onlyNode)
1710       {
1711          if(compiler.type.isVC)
1712          {
1713             PrintLn("compiling a single file is not yet supported");
1714          }
1715          else
1716          {
1717             int len;
1718             char pushD[MAX_LOCATION];
1719             char cfDir[MAX_LOCATION];
1720             GetIDECompilerConfigsDir(cfDir, true, true);
1721             GetWorkingDir(pushD, sizeof(pushD));
1722             ChangeWorkingDir(topNode.path);
1723             // Create object dir if it does not exist already
1724             if(!FileExists(objDirExp.dir).isDirectory)
1725             {
1726                sprintf(command, "%s CF_DIR=\"%s\"%s%s COMPILER=%s objdir -C \"%s\" -f \"%s\"",
1727                      compiler.makeCommand, cfDir,
1728                      crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1729                      compilerName, topNode.path, makeFilePath);
1730 #ifdef _DEBUG
1731                PrintLn(command);
1732                ide.outputView.buildBox.Logf("command: %s\n", command);
1733 #endif
1734                Execute(command);
1735             }
1736
1737             ChangeWorkingDir(pushD);
1738
1739             PathCatSlash(makeTarget+1, objDirExp.dir);
1740             PathCatSlash(makeTarget+1, onlyNode.name);
1741             StripExtension(makeTarget+1);
1742             strcat(makeTarget+1, ".o");
1743             makeTarget[0] = '\"';
1744             len = strlen(makeTarget);
1745             makeTarget[len++] = '\"';
1746             makeTarget[len++] = '\0';
1747          }
1748       }
1749
1750       if(compiler.type.isVC)
1751       {
1752          bool result = false;
1753          char oldwd[MAX_LOCATION];
1754          GetWorkingDir(oldwd, sizeof(oldwd));
1755          ChangeWorkingDir(topNode.path);
1756
1757          sprintf(command, "%s /useenv /nologo /logcommands %s.sln %s|Win32", compiler.makeCommand, name, config.name);
1758          ide.outputView.buildBox.Logf("command: %s\n", command);
1759 #ifdef _DEBUG
1760          PrintLn(command);
1761          ide.outputView.buildBox.Logf("command: %s\n", command);
1762 #endif
1763          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1764          {
1765             ProcessPipeOutputRaw(f);
1766             delete f;
1767             result = true;
1768          }
1769          ChangeWorkingDir(oldwd);
1770       }
1771       else
1772       {
1773          char cfDir[MAX_LOCATION];
1774          GetIDECompilerConfigsDir(cfDir, true, true);
1775          sprintf(command, "%s CF_DIR=\"%s\"%s%s COMPILER=%s -j%d %s%s%s -C \"%s\" -f \"%s\"",
1776                compiler.makeCommand, cfDir,
1777                crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1778                compilerName, numJobs,
1779                compiler.ccacheEnabled ? "CCACHE=y " : "",
1780                compiler.distccEnabled ? "DISTCC=y " : "",
1781                makeTarget, topNode.path, makeFilePath);
1782 #ifdef _DEBUG
1783          PrintLn(command);
1784          ide.outputView.buildBox.Logf("command: %s\n", command);
1785 #endif
1786          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1787          {
1788             result = ProcessBuildPipeOutput(f, objDirExp, isARun, onlyNode, compiler, config);
1789             delete f;
1790          }
1791          else
1792          {
1793             ide.outputView.buildBox.Logf($"Error executing make (%s) command\n", compiler.makeCommand);
1794 #ifndef _DEBUG
1795             ide.outputView.buildBox.Logf("command: %s\n", command);
1796 #endif
1797          }
1798       }
1799
1800       delete pathBackup;
1801       delete objDirExp;
1802       delete compilerName;
1803       return result;
1804    }
1805
1806    void Clean(CompilerConfig compiler, ProjectConfig config, bool realclean)
1807    {
1808       char makeFile[MAX_LOCATION];
1809       char makeFilePath[MAX_LOCATION];
1810       char command[MAX_LOCATION];
1811       char * compilerName;
1812       DualPipe f;
1813       PathBackup pathBackup { };
1814       bool crossCompiling = (compiler.targetPlatform != GetRuntimePlatform());
1815       char * targetPlatform = crossCompiling ? (char *)compiler.targetPlatform : "";
1816
1817       compilerName = CopyString(compiler.name);
1818       CamelCase(compilerName);
1819
1820       SetPath(false, compiler, config);
1821
1822       strcpy(makeFilePath, topNode.path);
1823       CatMakeFileName(makeFile, config);
1824       PathCatSlash(makeFilePath, makeFile);
1825       
1826       if(compiler.type.isVC)
1827       {
1828          bool result = false;
1829          char oldwd[MAX_LOCATION];
1830          GetWorkingDir(oldwd, sizeof(oldwd));
1831          ChangeWorkingDir(topNode.path);
1832          
1833          sprintf(command, "%s /useenv /clean /nologo /logcommands %s.sln %s|Win32", compiler.makeCommand, name, config.name);
1834          ide.outputView.buildBox.Logf("command: %s\n", command);
1835 #ifdef _DEBUG
1836          PrintLn(command);
1837          ide.outputView.buildBox.Logf("command: %s\n", command);
1838 #endif
1839          if((f = DualPipeOpen(PipeOpenMode { output = true, error = true, input = true }, command)))
1840          {
1841             ProcessPipeOutputRaw(f);
1842             delete f;
1843             result = true;
1844          }
1845          ChangeWorkingDir(oldwd);
1846          return result;
1847       }
1848       else
1849       {
1850          char cfDir[MAX_LOCATION];
1851          GetIDECompilerConfigsDir(cfDir, true, true);
1852          sprintf(command, "%s CF_DIR=\"%s\"%s%s COMPILER=%s %sclean -C \"%s\" -f \"%s\"",
1853                compiler.makeCommand, cfDir,
1854                crossCompiling ? " TARGET_PLATFORM=" : "", targetPlatform,
1855                compilerName, realclean ? "real" : "", topNode.path, makeFilePath);
1856 #ifdef _DEBUG
1857          PrintLn(command);
1858          ide.outputView.buildBox.Logf("command: %s\n", command);
1859 #endif
1860          if((f = DualPipeOpen(PipeOpenMode { output = 1, error = 1, input = 2 }, command)))
1861          {
1862             ide.outputView.buildBox.Tell($"Deleting target and object files...");
1863             ProcessCleanPipeOutput(f, compiler, config);
1864             delete f;
1865
1866             ide.outputView.buildBox.Logf($"Target and object files deleted\n");
1867          }
1868       }
1869
1870       delete pathBackup;
1871       delete compilerName;
1872    }
1873
1874    void Run(char * args, CompilerConfig compiler, ProjectConfig config)
1875    {   
1876       String target = new char[maxPathLen];
1877       char oldDirectory[MAX_LOCATION];
1878       DirExpression targetDirExp = GetTargetDir(compiler, config);
1879       PathBackup pathBackup { };
1880
1881       // Build(project, ideMain, true, null);
1882
1883    #if defined(__WIN32__)
1884       strcpy(target, topNode.path);
1885    #else
1886       strcpy(target, "");
1887    #endif
1888       PathCatSlash(target, targetDirExp.dir);
1889       CatTargetFileName(target, compiler, config);
1890       sprintf(target, "%s %s", target, args);
1891       GetWorkingDir(oldDirectory, MAX_LOCATION);
1892
1893       if(strlen(ide.workspace.debugDir))
1894       {
1895          char temp[MAX_LOCATION];
1896          strcpy(temp, topNode.path);
1897          PathCatSlash(temp, ide.workspace.debugDir);
1898          ChangeWorkingDir(temp);
1899       }
1900       else
1901          ChangeWorkingDir(topNode.path);
1902       // ChangeWorkingDir(topNode.path);
1903       SetPath(true, compiler, config);
1904       if(compiler.execPrefixCommand)
1905       {
1906          char * prefixedTarget = new char[strlen(compiler.execPrefixCommand) + strlen(target) + 2];
1907          prefixedTarget[0] = '\0';
1908          strcat(prefixedTarget, compiler.execPrefixCommand);
1909          strcat(prefixedTarget, " ");
1910          strcat(prefixedTarget, target);
1911          Execute(prefixedTarget);
1912          delete prefixedTarget;
1913       }
1914       else
1915          Execute(target);
1916
1917       ChangeWorkingDir(oldDirectory);
1918       delete pathBackup;
1919
1920       delete targetDirExp;
1921       delete target;
1922    }
1923
1924    void Compile(ProjectNode node, CompilerConfig compiler, ProjectConfig config)
1925    {
1926       Build(false, node, compiler, config);
1927    }
1928 #endif
1929
1930    void GetMakefileTargetFileName(TargetTypes targetType, char * fileName, ProjectConfig config)
1931    {
1932       fileName[0] = '\0';
1933       if(targetType == staticLibrary || targetType == sharedLibrary)
1934          strcat(fileName, "$(LP)");
1935       // !!! ReplaceSpaces must be done after all PathCat calls !!!
1936       // ReplaceSpaces(s, GetTargetFileName(config));
1937       strcat(fileName, GetTargetFileName(config));
1938       switch(targetType)
1939       {
1940          case executable:
1941             strcat(fileName, "$(E)");
1942             break;
1943          case sharedLibrary:
1944             strcat(fileName, "$(SO)");
1945             break;
1946          case staticLibrary:
1947             strcat(fileName, "$(A)");
1948             break;
1949       }
1950    }
1951
1952    bool GenerateCrossPlatformMk()
1953    {
1954       bool result = false;
1955       char path[MAX_LOCATION];
1956
1957       if(!GetProjectCompilerConfigsDir(path, false, false))
1958          GetIDECompilerConfigsDir(path, false, false);
1959
1960       if(!FileExists(path).isDirectory)
1961       {
1962          MakeDir(path);
1963          {
1964             char dirName[MAX_FILENAME];
1965             GetLastDirectory(path, dirName);
1966             if(!strcmp(dirName, ".configs"))
1967                FileSetAttribs(path, FileAttribs { isHidden = true });
1968          }
1969       }
1970       PathCatSlash(path, "crossplatform.mk");
1971
1972       if(FileExists(path))
1973          DeleteFile(path);
1974       {
1975          File include = FileOpen(":crossplatform.mk", read);
1976          if(include)
1977          {
1978             File f = FileOpen(path, write);
1979             if(f)
1980             {
1981                for(; !include.Eof(); )
1982                {
1983                   char buffer[4096];
1984                   int count = include.Read(buffer, 1, 4096);
1985                   f.Write(buffer, 1, count);
1986                }
1987                delete f;
1988
1989                result = true;
1990             }
1991             delete include;
1992          }
1993       }
1994       return result;
1995    }
1996
1997    bool GenerateCompilerCf(CompilerConfig compiler)
1998    {
1999       bool result = false;
2000       char path[MAX_LOCATION];
2001       char * name;
2002       char * compilerName;
2003       bool gccCompiler = compiler.ccCommand && (strstr(compiler.ccCommand, "gcc") != null || strstr(compiler.ccCommand, "g++") != null);
2004       Platform platform = compiler.targetPlatform;
2005
2006       compilerName = CopyString(compiler.name);
2007       CamelCase(compilerName);
2008       name = PrintString(platform, "-", compilerName, ".cf");
2009
2010       if(!GetProjectCompilerConfigsDir(path, false, false))
2011          GetIDECompilerConfigsDir(path, false, false);
2012
2013       if(!FileExists(path).isDirectory)
2014       {
2015          MakeDir(path);
2016          {
2017             char dirName[MAX_FILENAME];
2018             GetLastDirectory(path, dirName);
2019             if(!strcmp(dirName, ".configs"))
2020                FileSetAttribs(path, FileAttribs { isHidden = true });
2021          }
2022       }
2023       PathCatSlash(path, name);
2024
2025       if(FileExists(path))
2026          DeleteFile(path);
2027       {
2028          File f = FileOpen(path, write);
2029          if(f)
2030          {
2031             f.Puts("# TOOLCHAIN\n");
2032             f.Puts("\n");
2033
2034             if(compiler.gccPrefix && compiler.gccPrefix[0])
2035             {
2036                f.Printf("GCC_PREFIX := %s\n", compiler.gccPrefix);
2037                f.Puts("\n");
2038             }
2039             if(compiler.sysroot && compiler.sysroot[0])
2040             {
2041                f.Printf("SYSROOT := %s\n", compiler.sysroot);
2042                // Moved this to crossplatform.mk
2043                //f.Puts("_SYSROOT := $(space)--sysroot=$(SYSROOT)\n");
2044                f.Puts("\n");
2045             }
2046
2047             //f.Printf("SHELL := %s\n", "sh"/*compiler.shellCommand*/); // is this really needed?
2048             f.Printf("CPP := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.cppCommand);
2049             f.Printf("CC := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.ccCommand);
2050             f.Printf("CXX := $(CCACHE_COMPILE)$(DISTCC_COMPILE)$(GCC_PREFIX)%s$(_SYSROOT)\n", compiler.cxxCommand);
2051             f.Printf("ECP := %s\n", compiler.ecpCommand);
2052             f.Printf("ECC := %s$(if $(CROSS_TARGET), -t $(TARGET_PLATFORM),)\n", compiler.eccCommand);
2053             f.Printf("ECS := %s$(if $(CROSS_TARGET), -t $(TARGET_PLATFORM),)\n", compiler.ecsCommand);
2054             f.Printf("EAR := %s\n", compiler.earCommand);
2055
2056             f.Puts("AS := $(GCC_PREFIX)as\n");
2057             f.Puts("LD := $(GCC_PREFIX)ld\n");
2058             f.Puts("AR := $(GCC_PREFIX)ar\n");
2059             f.Puts("STRIP := $(GCC_PREFIX)strip\n");
2060             f.Puts("UPX := upx\n");
2061             f.Puts("\n");
2062
2063             if(compiler.environmentVars && compiler.environmentVars.count)
2064             {
2065                f.Puts("# ENVIRONMENT VARIABLES\n");
2066                f.Puts("\n");
2067                for(e : compiler.environmentVars)
2068                {
2069                   f.Printf("export %s := %s\n", e.name, e.string);
2070                }
2071             }
2072
2073             f.Puts("UPXFLAGS = -9\n"); // TOFEAT: Compression Level Option? Other UPX Options?
2074             f.Puts("\n");
2075
2076             f.Puts("EARFLAGS = aw\n");
2077             f.Puts("\n");
2078
2079             f.Puts("# HARD CODED TARGET_PLATFORM-SPECIFIC OPTIONS\n");
2080             f.Printf("LDFLAGS +=$(if $(%s), -Wl$(comma)--no-undefined,)\n", PlatformToMakefileTargetVariable(tux));
2081             f.Puts("\n");
2082
2083             // JF's
2084             f.Printf("LDFLAGS +=$(if $(%s), -framework cocoa -framework OpenGL,)\n", PlatformToMakefileTargetVariable(apple));
2085
2086             if(gccCompiler)
2087             {
2088                f.Puts("\nCFLAGS += -fmessage-length=0\n");
2089             }
2090
2091             if(compiler.includeDirs && compiler.includeDirs.count)
2092             {
2093                f.Puts("\nCFLAGS +=");
2094                OutputListOption(f, gccCompiler ? "isystem " : "I", compiler.includeDirs, lineEach, true);
2095                f.Puts("\n");
2096             }
2097             if(compiler.prepDirectives && compiler.prepDirectives.count)
2098             {
2099                f.Puts("\nCFLAGS +=");
2100                OutputListOption(f, "D", compiler.prepDirectives, inPlace, true);
2101                f.Puts("\n");
2102             }
2103             if(compiler.libraryDirs && compiler.libraryDirs.count)
2104             {
2105                f.Puts("\nLDFLAGS +=");
2106                OutputListOption(f, "L", compiler.libraryDirs, lineEach, true);
2107                // We would need a bool option to know whether we want to add to rpath as well...
2108                // OutputListOption(f, "Wl,-rpath ", compiler.libraryDirs, lineEach, true);
2109                f.Puts("\n");
2110             }
2111             if(compiler.excludeLibs && compiler.excludeLibs.count)
2112             {
2113                f.Puts("\nEXCLUDED_LIBS =");
2114                for(l : compiler.excludeLibs)
2115                {
2116                   f.Puts(" ");
2117                   f.Puts(l);
2118                }
2119             }
2120             if(compiler.linkerFlags && compiler.linkerFlags.count)
2121             {
2122                f.Puts("\nLDFLAGS +=");
2123                OutputListOption(f, "Wl,", compiler.linkerFlags, inPlace, true);
2124                f.Puts("\n");
2125             }
2126             f.Printf("\nFORCE_64_BIT := %s", compiler.supportsBitDepth ? "-m64" : "");
2127             f.Printf("\nFORCE_32_BIT := %s", compiler.supportsBitDepth ? "-m32" : "");
2128             f.Puts("\n");
2129             f.Puts("\nOFLAGS += $(LDFLAGS)");
2130             f.Puts("\n");
2131
2132             delete f;
2133
2134             result = true;
2135          }
2136       }
2137       delete name;
2138       delete compilerName;
2139       return result;
2140    }
2141
2142    bool GenerateMakefile(char * altMakefilePath, bool noResources, char * includemkPath, ProjectConfig config)
2143    {
2144       bool result = false;
2145       char filePath[MAX_LOCATION];
2146       char makeFile[MAX_LOCATION];
2147       // PathBackup pathBackup { };
2148       // char oldDirectory[MAX_LOCATION];
2149       File f = null;
2150
2151       if(!altMakefilePath)
2152       {
2153          strcpy(filePath, topNode.path);
2154          CatMakeFileName(makeFile, config);
2155          PathCatSlash(filePath, makeFile);
2156       }
2157
2158       f = FileOpen(altMakefilePath ? altMakefilePath : filePath, write);
2159
2160       /*SetPath(false, compiler, config);
2161       GetWorkingDir(oldDirectory, MAX_LOCATION);
2162       ChangeWorkingDir(topNode.path);*/
2163
2164       if(f)
2165       {
2166          bool test;
2167          int ifCount;
2168          Platform platform;
2169          char targetDir[MAX_LOCATION];
2170          char objDirExpNoSpaces[MAX_LOCATION];
2171          char objDirNoSpaces[MAX_LOCATION];
2172          char resDirNoSpaces[MAX_LOCATION];
2173          char targetDirExpNoSpaces[MAX_LOCATION];
2174          char fixedModuleName[MAX_FILENAME];
2175          char fixedConfigName[MAX_FILENAME];
2176          int c, len;
2177          // Non-zero if we're building eC code
2178          // We'll have to be careful with this when merging configs where eC files can be excluded in some configs and included in others
2179          int numCObjects = 0;
2180          int numObjects = 0;
2181          bool containsCXX = false; // True if the project contains a C++ file
2182          bool sameObjTargetDirs;
2183          String objDirExp = GetObjDirExpression(config);
2184          TargetTypes targetType = GetTargetType(config);
2185
2186          char cfDir[MAX_LOCATION];
2187          int objectsParts = 0, eCsourcesParts = 0;
2188          Array<String> listItems { };
2189          Map<String, int> varStringLenDiffs { };
2190          Map<String, NameCollisionInfo> namesInfo { };
2191          bool forceBitDepth = false;
2192
2193          Map<String, int> cflagsVariations { };
2194          Map<int, int> nodeCFlagsMapping { };
2195
2196          Map<String, int> ecflagsVariations { };
2197          Map<int, int> nodeECFlagsMapping { };
2198
2199          ReplaceSpaces(objDirNoSpaces, objDirExp);
2200          strcpy(targetDir, GetTargetDirExpression(config));
2201          ReplaceSpaces(targetDirExpNoSpaces, targetDir);
2202
2203          strcpy(objDirExpNoSpaces, GetObjDirExpression(config));
2204          ChangeCh(objDirExpNoSpaces, '\\', '/'); // TODO: this is a hack, paths should never include win32 path seperators - fix this in ProjectSettings and ProjectLoad instead
2205          ReplaceSpaces(objDirExpNoSpaces, objDirExpNoSpaces);
2206          ReplaceSpaces(resDirNoSpaces, resNode.path ? resNode.path : "");
2207          ReplaceSpaces(fixedModuleName, moduleName);
2208          ReplaceSpaces(fixedConfigName, GetConfigName(config));
2209          CamelCase(fixedConfigName);
2210
2211          sameObjTargetDirs = !fstrcmp(objDirExpNoSpaces, targetDirExpNoSpaces);
2212
2213          f.Printf(".PHONY: all objdir%s clean realclean distclean\n\n", sameObjTargetDirs ? "" : " targetdir");
2214
2215          f.Puts("# CORE VARIABLES\n\n");
2216
2217          f.Printf("MODULE := %s\n", fixedModuleName);
2218          //f.Printf("VERSION = %s\n", version);
2219          f.Printf("CONFIG := %s\n", fixedConfigName);
2220          f.Puts("ifndef COMPILER\n" "COMPILER := default\n" "endif\n");
2221          f.Puts("\n");
2222
2223          test = GetTargetTypeIsSetByPlatform(config);
2224          if(test)
2225          {
2226             ifCount = 0;
2227             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2228             {
2229                TargetTypes targetType;
2230                PlatformOptions projectPOs, configPOs;
2231                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2232                targetType = platformTargetType;
2233                if(targetType)
2234                {
2235                   if(ifCount)
2236                      f.Puts("else\n");
2237                   ifCount++;
2238                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2239                   f.Printf("TARGET_TYPE = %s\n", TargetTypeToMakefileVariable(targetType));
2240                }
2241             }
2242             f.Puts("else\n");
2243          }
2244          f.Printf("TARGET_TYPE = %s\n", TargetTypeToMakefileVariable(targetType));
2245          if(test)
2246          {
2247             if(ifCount)
2248             {
2249                for(c = 0; c < ifCount; c++)
2250                   f.Puts("endif\n");
2251             }
2252          }
2253          f.Puts("\n");
2254
2255          f.Puts("# FLAGS\n\n");
2256
2257          f.Puts("ECFLAGS =\n");
2258          f.Puts("ifndef DEBIAN_PACKAGE\n" "CFLAGS =\n" "LDFLAGS =\n" "endif\n");
2259          f.Puts("PRJ_CFLAGS =\n");
2260          f.Puts("CECFLAGS =\n");
2261          f.Puts("OFLAGS =\n");
2262          f.Puts("LIBS =\n");
2263          f.Puts("\n");
2264
2265          f.Puts("ifdef DEBUG\n" "NOSTRIP := y\n" "endif\n");
2266          f.Puts("\n");
2267
2268          // Important: We cannot use this ifdef anymore, EXECUTABLE_TARGET is not yet defined. It's embedded in the crossplatform.mk EXECUTABLE
2269          //f.Puts("ifdef EXECUTABLE_TARGET\n");
2270          f.Printf("CONSOLE = %s\n", GetConsole(config) ? "-mconsole" : "-mwindows");
2271          //f.Puts("endif\n");
2272          f.Puts("\n");
2273
2274          f.Puts("# INCLUDES\n\n");
2275
2276          if(compilerConfigsDir && compilerConfigsDir[0])
2277          {
2278             strcpy(cfDir, compilerConfigsDir);
2279             if(cfDir && cfDir[0] && cfDir[strlen(cfDir)-1] != '/')
2280                strcat(cfDir, "/");
2281          }
2282          else
2283          {
2284             GetIDECompilerConfigsDir(cfDir, true, true);
2285             // Use CF_DIR environment variable for absolute paths only
2286             if(cfDir[0] == '/' || (cfDir[0] && cfDir[1] == ':'))
2287                strcpy(cfDir, "$(CF_DIR)");
2288          }
2289
2290          f.Printf("_CF_DIR = %s\n", cfDir);
2291          f.Puts("\n");
2292
2293          f.Printf("include %s\n", includemkPath ? includemkPath : "$(_CF_DIR)crossplatform.mk");
2294          f.Puts("include $(_CF_DIR)$(TARGET_PLATFORM)-$(COMPILER).cf\n");
2295          f.Puts("\n");
2296
2297          f.Puts("# POST-INCLUDES VARIABLES\n\n");
2298
2299          f.Printf("OBJ = %s%s\n", objDirExpNoSpaces, objDirExpNoSpaces[0] ? "/" : "");
2300          f.Puts("\n");
2301
2302          f.Printf("RES = %s%s\n", resDirNoSpaces, resDirNoSpaces[0] ? "/" : "");
2303          f.Puts("\n");
2304
2305          // test = GetTargetTypeIsSetByPlatform(config);
2306          {
2307             char target[MAX_LOCATION];
2308             char targetNoSpaces[MAX_LOCATION];
2309             if(test)
2310             {
2311                TargetTypes type;
2312                ifCount = 0;
2313                for(type = (TargetTypes)1; type < TargetTypes::enumSize; type++)
2314                {
2315                   if(type != targetType)
2316                   {
2317                      if(ifCount)
2318                         f.Puts("else\n");
2319                      ifCount++;
2320                      f.Printf("ifeq \"$(TARGET_TYPE)\" \"%s\"\n", TargetTypeToMakefileVariable(type));
2321
2322                      GetMakefileTargetFileName(type, target, config);
2323                      strcpy(targetNoSpaces, targetDir);
2324                      PathCatSlash(targetNoSpaces, target);
2325                      ReplaceSpaces(targetNoSpaces, targetNoSpaces);
2326                      f.Printf("TARGET = %s\n", targetNoSpaces);
2327                   }
2328                }
2329                f.Puts("else\n");
2330             }
2331             GetMakefileTargetFileName(targetType, target, config);
2332             strcpy(targetNoSpaces, targetDir);
2333             PathCatSlash(targetNoSpaces, target);
2334             ReplaceSpaces(targetNoSpaces, targetNoSpaces);
2335             f.Printf("TARGET = %s\n", targetNoSpaces);
2336
2337             if(test)
2338             {
2339                if(ifCount)
2340                {
2341                   for(c = 0; c < ifCount; c++)
2342                      f.Puts("endif\n");
2343                }
2344             }
2345          }
2346          f.Puts("\n");
2347
2348          // Use something fixed here, to not cause Makefile differences across compilers...
2349          varStringLenDiffs["$(OBJ)"] = 30; // strlen("obj/memoryGuard.android.gcc-4.6.2") - 6;
2350          // varStringLenDiffs["$(OBJ)"] = strlen(objDirNoSpaces) - 6;
2351
2352          topNode.GenMakefileGetNameCollisionInfo(namesInfo, config);
2353
2354          {
2355             int c;
2356             char * map[5][2] = { { "COBJECTS", "C" }, { "SYMBOLS", "S" }, { "IMPORTS", "I" }, { "ECOBJECTS", "O" }, { "BOWLS", "B" } };
2357
2358             numCObjects = topNode.GenMakefilePrintNode(f, this, eCsources, namesInfo, listItems, config, null);
2359             if(numCObjects)
2360             {
2361                eCsourcesParts = OutputFileList(f, "_ECSOURCES", listItems, varStringLenDiffs, null);
2362
2363                f.Puts("ECSOURCES = $(call shwspace,$(_ECSOURCES))\n");
2364                if(eCsourcesParts > 1)
2365                {
2366                   for(c = 1; c <= eCsourcesParts; c++)
2367                      f.Printf("ECSOURCES%d = $(call shwspace,$(_ECSOURCES%d))\n", c, c);
2368                }
2369                f.Puts("\n");
2370
2371                for(c = 0; c < 5; c++)
2372                {
2373                   if(eCsourcesParts > 1)
2374                   {
2375                      int n;
2376                      f.Printf("%s =", map[c][0]);
2377                      for(n = 1; n <= eCsourcesParts; n++)
2378                         f.Printf(" $(%s%d)", map[c][0], n);
2379                      f.Puts("\n");
2380                      for(n = 1; n <= eCsourcesParts; n++)
2381                         f.Printf("%s%d = $(call shwspace,$(addprefix $(OBJ),$(patsubst %%.ec,%%$(%s),$(notdir $(_ECSOURCES%d)))))\n", map[c][0], n, map[c][1], n);
2382                   }
2383                   else if(eCsourcesParts == 1)
2384                      f.Printf("%s = $(call shwspace,$(addprefix $(OBJ),$(patsubst %%.ec,%%$(%s),$(notdir $(_ECSOURCES)))))\n", map[c][0], map[c][1]);
2385                   f.Puts("\n");
2386                }
2387             }
2388          }
2389
2390          numObjects = topNode.GenMakefilePrintNode(f, this, objects, namesInfo, listItems, config, &containsCXX);
2391          if(numObjects)
2392             objectsParts = OutputFileList(f, "_OBJECTS", listItems, varStringLenDiffs, null);
2393          f.Printf("OBJECTS =%s%s%s\n", numObjects ? " $(_OBJECTS)" : "", numCObjects ? " $(ECOBJECTS)" : "", numCObjects ? " $(OBJ)$(MODULE).main$(O)" : "");
2394          f.Puts("\n");
2395
2396          topNode.GenMakefilePrintNode(f, this, sources, null, listItems, config, null);
2397          OutputFileList(f, "SOURCES", listItems, varStringLenDiffs, numCObjects ? "$(ECSOURCES)" : null);
2398
2399          if(!noResources)
2400             resNode.GenMakefilePrintNode(f, this, resources, null, listItems, config, null);
2401          OutputFileList(f, "RESOURCES", listItems, varStringLenDiffs, null);
2402
2403          f.Puts("LIBS += $(SHAREDLIB) $(EXECUTABLE) $(LINKOPT)\n");
2404          f.Puts("\n");
2405          if((config && config.options && config.options.libraries) ||
2406                (options && options.libraries))
2407          {
2408             f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2409             f.Puts("LIBS +=");
2410             if(config && config.options && config.options.libraries)
2411                OutputLibraries(f, config.options.libraries);
2412             else if(options && options.libraries)
2413                OutputLibraries(f, options.libraries);
2414             f.Puts("\n");
2415             f.Puts("endif\n");
2416             f.Puts("\n");
2417          }
2418
2419          topNode.GenMakeCollectAssignNodeFlags(config, numCObjects,
2420                cflagsVariations, nodeCFlagsMapping,
2421                ecflagsVariations, nodeECFlagsMapping, null);
2422
2423          GenMakePrintCustomFlags(f, "PRJ_CFLAGS", false, cflagsVariations);
2424          GenMakePrintCustomFlags(f, "ECFLAGS", true, ecflagsVariations);
2425
2426          if(platforms || (config && config.platforms))
2427          {
2428             ifCount = 0;
2429             //for(platform = firstPlatform; platform <= lastPlatform; platform++)
2430             //for(platform = win32; platform <= apple; platform++)
2431
2432             f.Puts("# PLATFORM-SPECIFIC OPTIONS\n\n");
2433             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2434             {
2435                PlatformOptions projectPlatformOptions, configPlatformOptions;
2436                MatchProjectAndConfigPlatformOptions(config, platform, &projectPlatformOptions, &configPlatformOptions);
2437
2438                if(projectPlatformOptions || configPlatformOptions)
2439                {
2440                   if(ifCount)
2441                      f.Puts("else\n");
2442                   ifCount++;
2443                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2444                   f.Puts("\n");
2445
2446                   if((projectPlatformOptions && projectPlatformOptions.options.linkerOptions && projectPlatformOptions.options.linkerOptions.count) ||
2447                      (configPlatformOptions && configPlatformOptions.options.linkerOptions && configPlatformOptions.options.linkerOptions.count))
2448                   {
2449                      f.Puts("PRJ_CFLAGS +=");
2450                      // tocheck: does any of that -Wl stuff from linkerOptions have any business being in CFLAGS?
2451                      if(projectPlatformOptions && projectPlatformOptions.options.linkerOptions && projectPlatformOptions.options.linkerOptions.count)
2452                      {
2453                         f.Puts(" \\\n\t -Wl");
2454                         for(s : projectPlatformOptions.options.linkerOptions)
2455                            f.Printf(",%s", s);
2456                      }
2457                      if(configPlatformOptions && configPlatformOptions.options.linkerOptions && configPlatformOptions.options.linkerOptions.count)
2458                      {
2459                         f.Puts(" \\\n\t -Wl");
2460                         for(s : configPlatformOptions.options.linkerOptions)
2461                            f.Printf(",%s", s);
2462                      }
2463                      f.Puts("\n");
2464                      f.Puts("\n");
2465                   }
2466
2467                   if((projectPlatformOptions && projectPlatformOptions.options.libraryDirs && projectPlatformOptions.options.libraryDirs.count) ||
2468                         (configPlatformOptions && configPlatformOptions.options.libraryDirs && configPlatformOptions.options.libraryDirs.count) ||
2469                         (projectPlatformOptions && projectPlatformOptions.options.libraries && projectPlatformOptions.options.libraries.count) ||
2470                         (configPlatformOptions && configPlatformOptions.options.libraries && configPlatformOptions.options.libraries.count))
2471                   {
2472                      f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2473                      if((projectPlatformOptions && projectPlatformOptions.options.libraryDirs && projectPlatformOptions.options.libraryDirs.count) ||
2474                         (configPlatformOptions && configPlatformOptions.options.libraryDirs && configPlatformOptions.options.libraryDirs.count))
2475                      {
2476                         f.Puts("OFLAGS +=");
2477                         if(configPlatformOptions && configPlatformOptions.options.libraryDirs)
2478                            OutputListOption(f, "L", configPlatformOptions.options.libraryDirs, lineEach, true);
2479                         if(projectPlatformOptions && projectPlatformOptions.options.libraryDirs)
2480                            OutputListOption(f, "L", projectPlatformOptions.options.libraryDirs, lineEach, true);
2481                         f.Puts("\n");
2482                      }
2483
2484                      if((configPlatformOptions && configPlatformOptions.options.libraries))
2485                      {
2486                         if(configPlatformOptions.options.libraries.count)
2487                         {
2488                            f.Puts("LIBS +=");
2489                            OutputLibraries(f, configPlatformOptions.options.libraries);
2490                            f.Puts("\n");
2491                         }
2492                      }
2493                      else if(projectPlatformOptions && projectPlatformOptions.options.libraries)
2494                      {
2495                         if(projectPlatformOptions.options.libraries.count)
2496                         {
2497                            f.Puts("LIBS +=");
2498                            OutputLibraries(f, projectPlatformOptions.options.libraries);
2499                            f.Puts("\n");
2500                         }
2501                      }
2502                      f.Puts("endif\n");
2503                      f.Puts("\n");
2504                   }
2505                }
2506             }
2507             if(ifCount)
2508             {
2509                for(c = 0; c < ifCount; c++)
2510                   f.Puts("endif\n");
2511             }
2512             f.Puts("\n");
2513          }
2514
2515          // tocheck: does any of that -Wl stuff from linkerOptions have any business being in CFLAGS?
2516          if(options && options.linkerOptions && options.linkerOptions.count)
2517          {
2518             f.Puts("PRJ_CFLAGS +=");
2519             f.Puts(" \\\n\t -Wl");
2520             for(s : options.linkerOptions)
2521                f.Printf(",%s", s);
2522          }
2523          f.Puts("\n");
2524          f.Puts("\n");
2525
2526          f.Puts("CECFLAGS += -cpp $(_CPP)");
2527          f.Puts("\n");
2528          f.Puts("\n");
2529
2530          f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2531          f.Puts("OFLAGS +=");
2532          forceBitDepth = (options && options.buildBitDepth) || numCObjects;
2533          if(forceBitDepth)
2534             f.Puts((!options || !options.buildBitDepth || options.buildBitDepth == bits32) ? " $(FORCE_32_BIT)" : " $(FORCE_64_BIT) \\\n");
2535
2536          if(GetProfile(config))
2537             f.Puts(" -pg");
2538          if(config && config.options && config.options.libraryDirs)
2539             OutputListOption(f, "L", config.options.libraryDirs, lineEach, true);
2540          if(options && options.libraryDirs)
2541             OutputListOption(f, "L", options.libraryDirs, lineEach, true);
2542          f.Puts("\n");
2543          f.Puts("endif\n");
2544          f.Puts("\n");
2545
2546          f.Puts("# TARGETS\n");
2547          f.Puts("\n");
2548
2549          f.Printf("all: objdir%s $(TARGET)\n", sameObjTargetDirs ? "" : " targetdir");
2550          f.Puts("\n");
2551
2552          f.Puts("objdir:\n");
2553             f.Puts("\t$(if $(wildcard $(OBJ)),,$(call mkdirq,$(OBJ)))\n");
2554          //f.Puts("# PRE-BUILD COMMANDS\n");
2555          if(options && options.prebuildCommands)
2556          {
2557             for(s : options.prebuildCommands)
2558                if(s && s[0]) f.Printf("\t%s\n", s);
2559          }
2560          if(config && config.options && config.options.prebuildCommands)
2561          {
2562             for(s : config.options.prebuildCommands)
2563                if(s && s[0]) f.Printf("\t%s\n", s);
2564          }
2565          if(platforms || (config && config.platforms))
2566          {
2567             ifCount = 0;
2568             //f.Puts("# TARGET_PLATFORM-SPECIFIC PRE-BUILD COMMANDS\n");
2569             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2570             {
2571                PlatformOptions projectPOs, configPOs;
2572                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2573
2574                if((projectPOs && projectPOs.options.prebuildCommands && projectPOs.options.prebuildCommands.count) ||
2575                      (configPOs && configPOs.options.prebuildCommands && configPOs.options.prebuildCommands.count))
2576                {
2577                   if(ifCount)
2578                      f.Puts("else\n");
2579                   ifCount++;
2580                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2581
2582                   if(projectPOs && projectPOs.options.prebuildCommands && projectPOs.options.prebuildCommands.count)
2583                   {
2584                      for(s : projectPOs.options.prebuildCommands)
2585                         if(s && s[0]) f.Printf("\t%s\n", s);
2586                   }
2587                   if(configPOs && configPOs.options.prebuildCommands && configPOs.options.prebuildCommands.count)
2588                   {
2589                      for(s : configPOs.options.prebuildCommands)
2590                         if(s && s[0]) f.Printf("\t%s\n", s);
2591                   }
2592                }
2593             }
2594             if(ifCount)
2595             {
2596                int c;
2597                for(c = 0; c < ifCount; c++)
2598                   f.Puts("endif\n");
2599             }
2600          }
2601          f.Puts("\n");
2602
2603          if(!sameObjTargetDirs)
2604          {
2605             f.Puts("targetdir:\n");
2606                f.Printf("\t$(if $(wildcard %s),,$(call mkdirq,%s))\n", targetDirExpNoSpaces, targetDirExpNoSpaces);
2607             f.Puts("\n");
2608          }
2609
2610          if(numCObjects)
2611          {
2612             // Main Module (Linking) for ECERE C modules
2613             f.Puts("$(OBJ)$(MODULE).main.ec: $(SYMBOLS) $(COBJECTS)\n");
2614             // use of objDirExpNoSpaces used instead of $(OBJ) to prevent problematic joining of arguments in ecs
2615             f.Printf("\t$(ECS)%s $(ECSLIBOPT) $(SYMBOLS) $(IMPORTS) -symbols %s -o $(OBJ)$(MODULE).main.ec\n", 
2616                GetConsole(config) ? " -console" : "", objDirExpNoSpaces);
2617             f.Puts("\n");
2618             // Main Module (Linking) for ECERE C modules
2619             f.Puts("$(OBJ)$(MODULE).main.c: $(OBJ)$(MODULE).main.ec\n");
2620             f.Puts("\t$(ECP) $(CFLAGS) $(CECFLAGS) $(ECFLAGS) $(PRJ_CFLAGS)"
2621                   " -c $(OBJ)$(MODULE).main.ec -o $(OBJ)$(MODULE).main.sym -symbols $(OBJ)\n");
2622             f.Puts("\t$(ECC) $(CFLAGS) $(CECFLAGS) $(ECFLAGS) $(PRJ_CFLAGS) $(FVISIBILITY)"
2623                   " -c $(OBJ)$(MODULE).main.ec -o $(OBJ)$(MODULE).main.c -symbols $(OBJ)\n");
2624             f.Puts("\n");
2625          }
2626
2627          // *** Target ***
2628
2629          // This would not rebuild the target on updated objects
2630          // f.Printf("$(TARGET): $(SOURCES) $(RESOURCES) | objdir $(SYMBOLS) $(OBJECTS)%s\n", sameObjTargetDirs ? "" : " targetdir");
2631
2632          // This should fix it for good!
2633          f.Puts("$(SYMBOLS): | objdir\n");
2634          f.Puts("$(OBJECTS): | objdir\n");
2635
2636          // This alone was breaking the tarball, object directory does not get created first (order-only rules happen last it seems!)
2637          f.Printf("$(TARGET): $(SOURCES) $(RESOURCES) $(SYMBOLS) $(OBJECTS) | objdir%s\n", sameObjTargetDirs ? "" : " targetdir");
2638
2639          f.Puts("ifndef STATIC_LIBRARY_TARGET\n");
2640          f.Printf("\t$(%s) $(OFLAGS) $(OBJECTS) $(LIBS) %s-o $(TARGET) $(INSTALLNAME)\n", containsCXX ? "CXX" : "CC", containsCXX ? "-lstdc++ " : "");
2641          if(!GetDebug(config))
2642          {
2643             f.Puts("ifndef NOSTRIP\n");
2644             f.Puts("\t$(STRIP) $(STRIPOPT) $(TARGET)\n");
2645             f.Puts("endif\n");
2646
2647             if(GetCompress(config))
2648             {
2649                f.Printf("ifndef %s\n", PlatformToMakefileTargetVariable(win32));
2650                f.Puts("ifdef EXECUTABLE_TARGET\n");
2651                   f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n");
2652                f.Puts("endif\n");
2653                f.Puts("else\n");
2654                   f.Puts("\t$(UPX) $(UPXFLAGS) $(TARGET)\n");
2655                f.Puts("endif\n");
2656             }
2657          }
2658          if(resNode.files && resNode.files.count && !noResources)
2659             resNode.GenMakefileAddResources(f, resNode.path, config);
2660          f.Puts("else\n");
2661          f.Puts("\t$(AR) rcs $(TARGET) $(OBJECTS) $(LIBS)\n");
2662          f.Puts("endif\n");
2663
2664          //f.Puts("# POST-BUILD COMMANDS\n");
2665          if(options && options.postbuildCommands)
2666          {
2667             for(s : options.postbuildCommands)
2668                if(s && s[0]) f.Printf("\t%s\n", s);
2669          }
2670          if(config && config.options && config.options.postbuildCommands)
2671          {
2672             for(s : config.options.postbuildCommands)
2673                if(s && s[0]) f.Printf("\t%s\n", s);
2674          }
2675          if(platforms || (config && config.platforms))
2676          {
2677             ifCount = 0;
2678             //f.Puts("# TARGET_PLATFORM-SPECIFIC POST-BUILD COMMANDS\n");
2679             for(platform = (Platform)1; platform < Platform::enumSize; platform++)
2680             {
2681                PlatformOptions projectPOs, configPOs;
2682                MatchProjectAndConfigPlatformOptions(config, platform, &projectPOs, &configPOs);
2683
2684                if((projectPOs && projectPOs.options.postbuildCommands && projectPOs.options.postbuildCommands.count) ||
2685                      (configPOs && configPOs.options.postbuildCommands && configPOs.options.postbuildCommands.count))
2686                {
2687                   if(ifCount)
2688                      f.Puts("else\n");
2689                   ifCount++;
2690                   f.Printf("ifdef %s\n", PlatformToMakefileTargetVariable(platform));
2691
2692                   if(projectPOs && projectPOs.options.postbuildCommands && projectPOs.options.postbuildCommands.count)
2693                   {
2694                      for(s : projectPOs.options.postbuildCommands)
2695                         if(s && s[0]) f.Printf("\t%s\n", s);
2696                   }
2697                   if(configPOs && configPOs.options.postbuildCommands && configPOs.options.postbuildCommands.count)
2698                   {
2699                      for(s : configPOs.options.postbuildCommands)
2700                         if(s && s[0]) f.Printf("\t%s\n", s);
2701                   }
2702                }
2703             }
2704             if(ifCount)
2705             {
2706                int c;
2707                for(c = 0; c < ifCount; c++)
2708                   f.Puts("endif\n");
2709             }
2710          }
2711          f.Puts("\n");
2712
2713          f.Puts("# SYMBOL RULES\n");
2714          f.Puts("\n");
2715
2716          topNode.GenMakefilePrintSymbolRules(f, this, config, nodeCFlagsMapping, nodeECFlagsMapping);
2717
2718          f.Puts("# C OBJECT RULES\n");
2719          f.Puts("\n");
2720
2721          topNode.GenMakefilePrintCObjectRules(f, this, config, nodeCFlagsMapping, nodeECFlagsMapping);
2722
2723          f.Puts("# OBJECT RULES\n");
2724          f.Puts("\n");
2725          // todo call this still but only generate rules whith specific options
2726          // see we-have-file-specific-options in ProjectNode.ec
2727          topNode.GenMakefilePrintObjectRules(f, this, namesInfo, config, nodeCFlagsMapping, nodeECFlagsMapping);
2728
2729          if(numCObjects)
2730             GenMakefilePrintMainObjectRule(f, config);
2731
2732          f.Printf("clean: objdir%s\n", sameObjTargetDirs ? "" : " targetdir");
2733          f.Printf("\t$(call rmq,%s$(TARGET))\n", numCObjects ? "$(OBJ)$(MODULE).main.o $(OBJ)$(MODULE).main.c $(OBJ)$(MODULE).main.ec $(OBJ)$(MODULE).main$(I) $(OBJ)$(MODULE).main$(S) " : "");
2734          OutputCleanActions(f, "_OBJECTS", objectsParts);
2735          if(numCObjects)
2736          {
2737             OutputCleanActions(f, "ECOBJECTS", eCsourcesParts);
2738             OutputCleanActions(f, "COBJECTS", eCsourcesParts);
2739             OutputCleanActions(f, "BOWLS", eCsourcesParts);
2740             OutputCleanActions(f, "IMPORTS", eCsourcesParts);
2741             OutputCleanActions(f, "SYMBOLS", eCsourcesParts);
2742          }
2743          f.Puts("\n");
2744
2745          f.Puts("realclean: clean\n");
2746          f.Puts("\t$(call rmrq,$(OBJ))\n");
2747          if(!sameObjTargetDirs)
2748             f.Printf("\t$(call rmdirq,%s)\n", targetDirExpNoSpaces);
2749          f.Puts("\n");
2750
2751          f.Puts("distclean:\n");
2752          f.Puts("\t$(call rmrq,obj/)\n");
2753
2754          delete f;
2755
2756          listItems.Free();
2757          delete listItems;
2758          varStringLenDiffs.Free();
2759          delete varStringLenDiffs;
2760          namesInfo.Free();
2761          delete namesInfo;
2762
2763          delete cflagsVariations;
2764          delete nodeCFlagsMapping;
2765          delete ecflagsVariations;
2766          delete nodeECFlagsMapping;
2767
2768          result = true;
2769       }
2770
2771       // ChangeWorkingDir(oldDirectory);
2772       // delete pathBackup;
2773
2774       if(config)
2775          config.makingModified = false;
2776       return result;
2777    }
2778
2779    void GenMakefilePrintMainObjectRule(File f, ProjectConfig config)
2780    {
2781       char extension[MAX_EXTENSION] = "c";
2782       char modulePath[MAX_LOCATION];
2783       char fixedModuleName[MAX_FILENAME];
2784       DualPipe dep;
2785       char command[2048];
2786       char objDirNoSpaces[MAX_LOCATION];
2787       String objDirExp = GetObjDirExpression(config);
2788
2789       ReplaceSpaces(objDirNoSpaces, objDirExp);
2790       ReplaceSpaces(fixedModuleName, moduleName);
2791       
2792       //sprintf(fixedModuleName, "%s.main", fixedPrjName);
2793       //strcat(fixedModuleName, ".main");
2794
2795 #if 0       // TODO: Fix nospaces stuff
2796       // *** Dependency command ***
2797       sprintf(command, "gcc -MT $(OBJ)%s$(O) -MM $(OBJ)%s.c", fixedModuleName, fixedModuleName);
2798
2799       // System Includes (from global settings)
2800       for(item : compiler.dirs[Includes])
2801       {
2802          strcat(command, " -isystem ");
2803          if(strchr(item.name, ' '))
2804          {
2805             strcat(command, "\"");
2806             strcat(command, item);
2807             strcat(command, "\"");
2808          }
2809          else
2810             strcat(command, item);
2811       }
2812
2813       for(item = includeDirs.first; item; item = item.next)
2814       {
2815          strcat(command, " -I");
2816          if(strchr(item.name, ' '))
2817          {
2818             strcat(command, "\"");
2819             strcat(command, item.name);
2820             strcat(command, "\"");
2821          }
2822          else
2823             strcat(command, item.name);
2824       }
2825       for(item = preprocessorDefs.first; item; item = item.next)
2826       {
2827          strcat(command, " -D");
2828          strcat(command, item.name);
2829       }
2830
2831       // Execute it
2832       if((dep = DualPipeOpen(PipeOpenMode { output = 1, error = 1, input = 2 }, command)))
2833       {
2834          char line[1024];
2835          bool result = true;
2836          bool firstLine = true;
2837
2838          // To do some time: auto save external dependencies?
2839          while(!dep.Eof())
2840          {
2841             if(dep.GetLine(line, sizeof(line)-1))
2842             {
2843                if(firstLine)
2844                {
2845                   char * colon = strstr(line, ":");
2846                   if(strstr(line, "No such file") || strstr(line, ",") || (colon && strstr(colon+1, ":")))
2847                   {
2848                      result = false;
2849                      break;
2850                   }
2851                   firstLine = false;
2852                }
2853                f.Puts(line);
2854                f.Puts("\n");
2855             }
2856             if(!result) break;
2857          }
2858          delete dep;
2859
2860          // If we failed to generate dependencies...
2861          if(!result)
2862          {
2863 #endif
2864             f.Puts("$(OBJ)$(MODULE).main$(O): $(OBJ)$(MODULE).main.c\n");
2865             f.Printf("\t$(CC) $(CFLAGS) $(PRJ_CFLAGS) $(FVISIBILITY) -c $(OBJ)$(MODULE).main.%s -o $(OBJ)$(MODULE).main$(O)\n", extension);
2866             f.Puts("\n");
2867 #if 0
2868          }
2869       }
2870 #endif
2871    }
2872
2873    void GenMakePrintCustomFlags(File f, String variableName, bool printNonCustom, Map<String, int> cflagsVariations)
2874    {
2875       int c;
2876       for(c = printNonCustom ? 0 : 1; c <= cflagsVariations.count; c++)
2877       {
2878          for(v : cflagsVariations)
2879          {
2880             if(v == c)
2881             {
2882                if(v == 1)
2883                   f.Printf("%s +=", variableName);
2884                else
2885                   f.Printf("CUSTOM%d_%s =", v-1, variableName);
2886                f.Puts(&v ? &v : "");
2887                f.Puts("\n");
2888                f.Puts("\n");
2889                break;
2890             }
2891          }
2892       }
2893       f.Puts("\n");
2894    }
2895
2896    void MatchProjectAndConfigPlatformOptions(ProjectConfig config, Platform platform,
2897          PlatformOptions * projectPlatformOptions, PlatformOptions * configPlatformOptions)
2898    {
2899       *projectPlatformOptions = null;
2900       *configPlatformOptions = null;
2901       if(platforms)
2902       {
2903          for(p : platforms)
2904          {
2905             if(!strcmpi(p.name, platform))
2906             {
2907                *projectPlatformOptions = p;
2908                break;
2909             }
2910          }
2911       }
2912       if(config && config.platforms)
2913       {
2914          for(p : config.platforms)
2915          {
2916             if(!strcmpi(p.name, platform))
2917             {
2918                *configPlatformOptions = p;
2919                break;
2920             }
2921          }
2922       }
2923    }
2924 }
2925
2926 Project LegacyBinaryLoadProject(File f, char * filePath)
2927 {
2928    Project project = null;
2929    char signature[sizeof(epjSignature)];
2930
2931    f.Read(signature, sizeof(signature), 1);
2932    if(!strncmp(signature, (char *)epjSignature, sizeof(epjSignature)))
2933    {
2934       char topNodePath[MAX_LOCATION];
2935       /*ProjectConfig newConfig
2936       {
2937          name = CopyString("Default");
2938          makingModified = true;
2939          compilingModified = true;
2940          linkingModified = true;
2941          options = { };
2942       };*/
2943
2944       project = Project { options = { } };
2945       LegacyBinaryLoadNode(project.topNode, f);
2946       delete project.topNode.path;
2947       GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
2948       MakeSlashPath(topNodePath);
2949
2950       PathCatSlash(topNodePath, filePath);
2951       project.filePath = topNodePath;
2952       
2953       /* THIS IS ALREADY DONE BY filePath property
2954       StripLastDirectory(topNodePath, topNodePath);
2955       project.topNode.path = CopyString(topNodePath);
2956       */
2957       // Shouldn't this be done BEFORE the StripLastDirectory? project.filePath = topNodePath;
2958       
2959       // newConfig.options.defaultNameSpace = "";
2960       /*newConfig.objDir.dir = "obj";
2961       newConfig.targetDir.dir = "";*/
2962
2963       //project.configurations = { [ newConfig ] };
2964       //project.config = newConfig;
2965
2966       // Project Settings
2967       if(!f.Eof())
2968       {
2969          int temp;
2970          int len,c, count;
2971          String targetFileName, targetDirectory, objectsDirectory;
2972
2973          // { executable = 0, sharedLibrary = 1, staticLibrary = 2 };
2974          f.Read(&temp, sizeof(int),1);
2975          switch(temp)
2976          {
2977             case 0: project.options.targetType = executable; break;
2978             case 1: project.options.targetType = sharedLibrary; break;
2979             case 2: project.options.targetType = staticLibrary; break;
2980          }
2981
2982          f.Read(&len, sizeof(int),1);
2983          targetFileName = new char[len+1];
2984          f.Read(targetFileName, sizeof(char), len+1);
2985          project.options.targetFileName = targetFileName;
2986          delete targetFileName;
2987
2988          f.Read(&len, sizeof(int),1);
2989          targetDirectory = new char[len+1];
2990          f.Read(targetDirectory, sizeof(char), len+1);
2991          project.options.targetDirectory = targetDirectory;
2992          delete targetDirectory;
2993
2994          f.Read(&len, sizeof(int),1);
2995          objectsDirectory = new byte[len+1];
2996          f.Read(objectsDirectory, sizeof(char), len+1);
2997          project.options.objectsDirectory = objectsDirectory;
2998          delete objectsDirectory;
2999
3000          f.Read(&temp, sizeof(int),1);
3001          project./*config.*/options.debug = temp ? true : false;
3002          f.Read(&temp, sizeof(int),1);         
3003          project./*config.*/options.optimization = temp ? speed : none;
3004          f.Read(&temp, sizeof(int),1);
3005          project./*config.*/options.profile = temp ? true : false;
3006          f.Read(&temp, sizeof(int),1);
3007          project.options.warnings = temp ? all : unset;
3008
3009          f.Read(&count, sizeof(int),1);
3010          if(count)
3011          {
3012             project.options.includeDirs = { };
3013             for(c = 0; c < count; c++)
3014             {
3015                char * name;
3016                f.Read(&len, sizeof(int),1);
3017                name = new char[len+1];
3018                f.Read(name, sizeof(char), len+1);
3019                project.options.includeDirs.Add(name);
3020             }
3021          }
3022
3023          f.Read(&count, sizeof(int),1);
3024          if(count)
3025          {
3026             project.options.libraryDirs = { };
3027             for(c = 0; c < count; c++)
3028             {
3029                char * name;            
3030                f.Read(&len, sizeof(int),1);
3031                name = new char[len+1];
3032                f.Read(name, sizeof(char), len+1);
3033                project.options.libraryDirs.Add(name);
3034             }
3035          }
3036
3037          f.Read(&count, sizeof(int),1);
3038          if(count)
3039          {
3040             project.options.libraries = { };
3041             for(c = 0; c < count; c++)
3042             {
3043                char * name;
3044                f.Read(&len, sizeof(int),1);
3045                name = new char[len+1];
3046                f.Read(name, sizeof(char), len+1);
3047                project.options.libraries.Add(name);
3048             }
3049          }
3050
3051          f.Read(&count, sizeof(int),1);
3052          if(count)
3053          {
3054             project.options.preprocessorDefinitions = { };
3055             for(c = 0; c < count; c++)
3056             {
3057                char * name;
3058                f.Read(&len, sizeof(int),1);
3059                name = new char[len+1];
3060                f.Read(name, sizeof(char), len+1);
3061                project.options.preprocessorDefinitions.Add(name);
3062             }
3063          }
3064
3065          f.Read(&temp, sizeof(int),1);
3066          project.options.console = temp ? true : false;
3067       }
3068
3069       for(node : project.topNode.files)
3070       {
3071          if(node.type == resources)
3072          {
3073             project.resNode = node;
3074             break;
3075          }
3076       }
3077    }
3078    else
3079       f.Seek(0, start);
3080    return project;
3081 }
3082
3083 void ProjectConfig::LegacyProjectConfigLoad(File f)
3084 {  
3085    delete options;
3086    options = { };
3087    while(!f.Eof())
3088    {
3089       char buffer[65536];
3090       char section[128];
3091       char subSection[128];
3092       char * equal;
3093       int len;
3094       uint pos;
3095       
3096       pos = f.Tell();
3097       f.GetLine(buffer, 65536 - 1);
3098       TrimLSpaces(buffer, buffer);
3099       TrimRSpaces(buffer, buffer);
3100       if(strlen(buffer))
3101       {
3102          if(buffer[0] == '-')
3103          {
3104             equal = &buffer[0];
3105             equal[0] = ' ';
3106             TrimLSpaces(equal, equal);
3107             if(!strcmpi(subSection, "LibraryDirs"))
3108             {
3109                if(!options.libraryDirs)
3110                   options.libraryDirs = { [ CopyString(equal) ] };
3111                else
3112                   options.libraryDirs.Add(CopyString(equal));
3113             }
3114             else if(!strcmpi(subSection, "IncludeDirs"))
3115             {
3116                if(!options.includeDirs)
3117                   options.includeDirs = { [ CopyString(equal) ] };
3118                else
3119                   options.includeDirs.Add(CopyString(equal));
3120             }
3121          }
3122          else if(buffer[0] == '+')
3123          {
3124             if(name)
3125             {
3126                f.Seek(pos, start);
3127                break;
3128             }
3129             else
3130             {
3131                equal = &buffer[0];
3132                equal[0] = ' ';
3133                TrimLSpaces(equal, equal);
3134                delete name; name = CopyString(equal); // property::name = equal;
3135             }
3136          }
3137          else if(!strcmpi(buffer, "Compiler Options"))
3138             strcpy(section, buffer);
3139          else if(!strcmpi(buffer, "IncludeDirs"))
3140             strcpy(subSection, buffer);
3141          else if(!strcmpi(buffer, "Linker Options"))
3142             strcpy(section, buffer);
3143          else if(!strcmpi(buffer, "LibraryDirs"))
3144             strcpy(subSection, buffer);
3145          else if(!strcmpi(buffer, "Files") || !strcmpi(buffer, "Resources"))
3146          {
3147             f.Seek(pos, start);
3148             break;
3149          }
3150          else
3151          {
3152             equal = strstr(buffer, "=");
3153             if(equal)
3154             {
3155                equal[0] = '\0';
3156                TrimRSpaces(buffer, buffer);
3157                equal++;
3158                TrimLSpaces(equal, equal);
3159                if(!strcmpi(buffer, "Target Name"))
3160                   options.targetFileName = /*CopyString(*/equal/*)*/;
3161                else if(!strcmpi(buffer, "Target Type"))
3162                {
3163                   if(!strcmpi(equal, "Executable"))
3164                      options.targetType = executable;
3165                   else if(!strcmpi(equal, "Shared"))
3166                      options.targetType = sharedLibrary;
3167                   else if(!strcmpi(equal, "Static"))
3168                      options.targetType = staticLibrary;
3169                   else
3170                      options.targetType = executable;
3171                }
3172                else if(!strcmpi(buffer, "Target Directory"))
3173                   options.targetDirectory = /*CopyString(*/equal/*)*/;
3174                else if(!strcmpi(buffer, "Console"))
3175                   options.console = ParseTrueFalseValue(equal);
3176                else if(!strcmpi(buffer, "Libraries"))
3177                {
3178                   if(!options.libraries) options.libraries = { };
3179                   ParseArrayValue(options.libraries, equal);
3180                }
3181                else if(!strcmpi(buffer, "Intermediate Directory"))
3182                   options.objectsDirectory = /*CopyString(*/equal/*)*/; //objDir.expression = equal;
3183                else if(!strcmpi(buffer, "Debug"))
3184                   options.debug = ParseTrueFalseValue(equal);
3185                else if(!strcmpi(buffer, "Optimize"))
3186                {
3187                   if(!strcmpi(equal, "None"))
3188                      options.optimization = none;
3189                   else if(!strcmpi(equal, "Speed") || !strcmpi(equal, "True"))
3190                      options.optimization = speed;
3191                   else if(!strcmpi(equal, "Size"))
3192                      options.optimization = size;
3193                   else
3194                      options.optimization = none;
3195                }
3196                else if(!strcmpi(buffer, "Compress"))
3197                   options.compress = ParseTrueFalseValue(equal);
3198                else if(!strcmpi(buffer, "Profile"))
3199                   options.profile = ParseTrueFalseValue(equal);
3200                else if(!strcmpi(buffer, "AllWarnings"))
3201                   options.warnings = ParseTrueFalseValue(equal) ? all : unset;
3202                else if(!strcmpi(buffer, "MemoryGuard"))
3203                   options.memoryGuard = ParseTrueFalseValue(equal);
3204                else if(!strcmpi(buffer, "Default Name Space"))
3205                   options.defaultNameSpace = CopyString(equal);
3206                else if(!strcmpi(buffer, "Strict Name Spaces"))
3207                   options.strictNameSpaces = ParseTrueFalseValue(equal);
3208                else if(!strcmpi(buffer, "Preprocessor Definitions"))
3209                {
3210                   if(!options.preprocessorDefinitions) options.preprocessorDefinitions = { };
3211                   ParseArrayValue(options.preprocessorDefinitions, equal);
3212                }
3213             }
3214          }
3215       }
3216    }
3217    if(!options.targetDirectory && options.objectsDirectory)
3218       options.targetDirectory = /*CopyString(*/options.objectsDirectory/*)*/;
3219    //if(!objDir.dir) objDir.dir = "obj";
3220    //if(!targetDir.dir) targetDir.dir = "";
3221    // if(!targetName) property::targetName = "";   // How can a targetFileName be nothing???
3222    // if(!defaultNameSpace) property::defaultNameSpace = "";
3223    makingModified = true;
3224 }
3225
3226 Project LegacyAsciiLoadProject(File f, char * filePath)
3227 {
3228    Project project = null;
3229    ProjectNode node = null;
3230    int pos;
3231    char parentPath[MAX_LOCATION];
3232    char section[128] = "";
3233    char subSection[128] = "";
3234    ProjectNode parent;
3235    bool configurationsPresent = false;
3236
3237    f.Seek(0, start);
3238    while(!f.Eof())
3239    {
3240       char buffer[65536];
3241       //char version[16];
3242       char * equal;
3243       int len;
3244       pos = f.Tell();
3245       f.GetLine(buffer, 65536 - 1);
3246       TrimLSpaces(buffer, buffer);
3247       TrimRSpaces(buffer, buffer);
3248       if(strlen(buffer))
3249       {
3250          if(buffer[0] == '-' || buffer[0] == '=')
3251          {
3252             bool simple = buffer[0] == '-';
3253             equal = &buffer[0];
3254             equal[0] = ' ';
3255             TrimLSpaces(equal, equal);
3256             if(!strcmpi(section, "Target") && !strcmpi(subSection, "LibraryDirs"))
3257             {
3258                if(!project.config.options.libraryDirs)
3259                   project.config.options.libraryDirs = { [ CopyString(equal) ] };
3260                else
3261                   project.config.options.libraryDirs.Add(CopyString(equal));
3262             }
3263             else if(!strcmpi(section, "Target") && !strcmpi(subSection, "IncludeDirs"))
3264             {
3265                if(!project.config.options.includeDirs)
3266                   project.config.options.includeDirs = { [ CopyString(equal) ] };
3267                else
3268                   project.config.options.includeDirs.Add(CopyString(equal));
3269             }
3270             else if(!strcmpi(section, "Target") && (!strcmpi(subSection, "Files") || !strcmpi(subSection, "Resources")))
3271             {
3272                len = strlen(equal);
3273                if(len)
3274                {
3275                   char temp[MAX_LOCATION];
3276                   ProjectNode child { };
3277                   // We don't need to do this anymore, fileName is just a property that sets name & path
3278                   // child.fileName = CopyString(equal);
3279                   if(simple)
3280                   {
3281                      child.name = CopyString(equal);
3282                      child.path = CopyString(parentPath);
3283                   }
3284                   else
3285                   {
3286                      GetLastDirectory(equal, temp);
3287                      child.name = CopyString(temp);
3288                      StripLastDirectory(equal, temp);
3289                      child.path = CopyString(temp);
3290                   }
3291                   child.nodeType = file;
3292                   child.parent = parent;
3293                   child.indent = parent.indent + 1;
3294                   child.type = file;
3295                   child.icon = NodeIcons::SelectFileIcon(child.name);
3296                   parent.files.Add(child);
3297                   node = child;
3298                   //child = null;
3299                }
3300                else
3301                {
3302                   StripLastDirectory(parentPath, parentPath);
3303                   parent = parent.parent;
3304                }
3305             }
3306          }
3307          else if(buffer[0] == '+')
3308          {
3309             equal = &buffer[0];
3310             equal[0] = ' ';
3311             TrimLSpaces(equal, equal);
3312             if(!strcmpi(section, "Target") && (!strcmpi(subSection, "Files") || !strcmpi(subSection, "Resources")))
3313             {
3314                char temp[MAX_LOCATION];
3315                ProjectNode child { };
3316                // NEW: Folders now have a path set like files
3317                child.name = CopyString(equal);
3318                strcpy(temp, parentPath);
3319                PathCatSlash(temp, child.name);
3320                child.path = CopyString(temp);
3321
3322                child.parent = parent;
3323                child.indent = parent.indent + 1;
3324                child.type = folder;
3325                child.nodeType = folder;
3326                child.files = { };
3327                child.icon = folder;
3328                PathCatSlash(parentPath, child.name);
3329                parent.files.Add(child);
3330                parent = child;
3331                node = child;
3332                //child = null;
3333             }
3334             else if(!strcmpi(section, "Configurations"))
3335             {
3336                ProjectConfig newConfig
3337                {
3338                   makingModified = true;
3339                   options = { };
3340                };
3341                f.Seek(pos, start);
3342                LegacyProjectConfigLoad(newConfig, f);
3343                project.configurations.Add(newConfig);
3344             }
3345          }
3346          else if(!strcmpi(buffer, "ECERE Project File"));
3347          else if(!strcmpi(buffer, "Version 0a"))
3348             ; //strcpy(version, "0a");
3349          else if(!strcmpi(buffer, "Version 0.1a"))
3350             ; //strcpy(version, "0.1a");
3351          else if(!strcmpi(buffer, "Configurations"))
3352          {
3353             project.configurations.Free();
3354             project.config = null;
3355             strcpy(section, buffer);
3356             configurationsPresent = true;
3357          }
3358          else if(!strcmpi(buffer, "Target") || !strnicmp(buffer, "Target \"", strlen("Target \"")))
3359          {
3360             ProjectConfig newConfig { name = CopyString("Default"), options = { } };
3361             char topNodePath[MAX_LOCATION];
3362             // newConfig.defaultNameSpace = "";
3363             //newConfig.objDir.dir = "obj";
3364             //newConfig.targetDir.dir = "";
3365             project = Project { /*options = { }*/ };
3366             project.configurations = { [ newConfig ] };
3367             project.config = newConfig;
3368             // if(project.topNode.path) delete project.topNode.path;
3369             GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3370             MakeSlashPath(topNodePath);
3371             PathCatSlash(topNodePath, filePath);
3372             project.filePath = topNodePath;
3373             parentPath[0] = '\0';
3374             parent = project.topNode;
3375             node = parent;
3376             strcpy(section, "Target");
3377             equal = &buffer[6];
3378             if(equal[0] == ' ')
3379             {
3380                equal++;
3381                if(equal[0] == '\"')
3382                {
3383                   StripQuotes(equal, equal);
3384                   delete project.moduleName; project.moduleName = CopyString(equal);
3385                }
3386             }
3387          }
3388          else if(!strcmpi(buffer, "Compiler Options"));
3389          else if(!strcmpi(buffer, "IncludeDirs"))
3390             strcpy(subSection, buffer);
3391          else if(!strcmpi(buffer, "Linker Options"));
3392          else if(!strcmpi(buffer, "LibraryDirs"))
3393             strcpy(subSection, buffer);
3394          else if(!strcmpi(buffer, "Files"))
3395          {
3396             strcpy(section, "Target");
3397             strcpy(subSection, buffer);
3398          }
3399          else if(!strcmpi(buffer, "Resources"))
3400          {
3401             ProjectNode child { };
3402             parent.files.Add(child);
3403             child.parent = parent;
3404             child.indent = parent.indent + 1;
3405             child.name = CopyString(buffer);
3406             child.path = CopyString("");
3407             child.type = resources;
3408             child.files = { };
3409             child.icon = archiveFile;
3410             project.resNode = child;
3411             parent = child;
3412             node = child;
3413             strcpy(subSection, buffer);
3414          }
3415          else
3416          {
3417             equal = strstr(buffer, "=");
3418             if(equal)
3419             {
3420                equal[0] = '\0';
3421                TrimRSpaces(buffer, buffer);
3422                equal++;
3423                TrimLSpaces(equal, equal);
3424
3425                if(!strcmpi(section, "Target"))
3426                {
3427                   if(!strcmpi(buffer, "Build Exclusions"))
3428                   {
3429                      if(!strcmpi(section, "Target") && !strcmpi(subSection, "Files"))
3430                      {
3431                         /*if(node && node.type != NodeTypes::project)
3432                            ParseListValue(node.buildExclusions, equal);*/
3433                      }
3434                   }
3435                   else if(!strcmpi(buffer, "Path") && !strcmpi(subSection, "Resources"))
3436                   {
3437                      delete project.resNode.path;
3438                      project.resNode.path = CopyString(equal);
3439                      PathCatSlash(parentPath, equal);
3440                   }
3441
3442                   // Config Settings
3443                   else if(!strcmpi(buffer, "Intermediate Directory"))
3444                      project.config.options.objectsDirectory = /*CopyString(*/equal/*)*/; //objDir.expression = equal;
3445                   else if(!strcmpi(buffer, "Debug"))
3446                      project.config.options.debug = ParseTrueFalseValue(equal);
3447                   else if(!strcmpi(buffer, "Optimize"))
3448                   {
3449                      if(!strcmpi(equal, "None"))
3450                         project.config.options.optimization = none;
3451                      else if(!strcmpi(equal, "Speed") || !strcmpi(equal, "True"))
3452                         project.config.options.optimization = speed;
3453                      else if(!strcmpi(equal, "Size"))
3454                         project.config.options.optimization = size;
3455                      else
3456                         project.config.options.optimization = none;
3457                   }
3458                   else if(!strcmpi(buffer, "Profile"))
3459                      project.config.options.profile = ParseTrueFalseValue(equal);
3460                   else if(!strcmpi(buffer, "MemoryGuard"))
3461                      project.config.options.memoryGuard = ParseTrueFalseValue(equal);
3462                   else
3463                   {
3464                      if(!project.options) project.options = { };
3465
3466                      // Project Wide Settings (All configs)
3467                      if(!strcmpi(buffer, "Target Name"))
3468                         project.options.targetFileName = /*CopyString(*/equal/*)*/;
3469                      else if(!strcmpi(buffer, "Target Type"))
3470                      {
3471                         if(!strcmpi(equal, "Executable"))
3472                            project.options.targetType = executable;
3473                         else if(!strcmpi(equal, "Shared"))
3474                            project.options.targetType = sharedLibrary;
3475                         else if(!strcmpi(equal, "Static"))
3476                            project.options.targetType = staticLibrary;
3477                         else
3478                            project.options.targetType = executable;
3479                      }
3480                      else if(!strcmpi(buffer, "Target Directory"))
3481                         project.options.targetDirectory = /*CopyString(*/equal/*)*/;
3482                      else if(!strcmpi(buffer, "Console"))
3483                         project.options.console = ParseTrueFalseValue(equal);
3484                      else if(!strcmpi(buffer, "Libraries"))
3485                      {
3486                         if(!project.options.libraries) project.options.libraries = { };
3487                         ParseArrayValue(project.options.libraries, equal);
3488                      }
3489                      else if(!strcmpi(buffer, "AllWarnings"))
3490                         project.options.warnings = ParseTrueFalseValue(equal) ? all : unset;
3491                      else if(!strcmpi(buffer, "Preprocessor Definitions"))
3492                      {
3493                         if(!strcmpi(section, "Target") && !strcmpi(subSection, "Files"))
3494                         {
3495                            /*if(node && (node.type == NodeTypes::project || (node.type == file && !node.isInResources) || node.type == folder))
3496                               ParseListValue(node.preprocessorDefs, equal);*/
3497                         }
3498                         else
3499                         {
3500                            if(!project.options.preprocessorDefinitions) project.options.preprocessorDefinitions = { };
3501                            ParseArrayValue(project.options.preprocessorDefinitions, equal);
3502                         }
3503                      }
3504                   }
3505                }
3506             }
3507          }
3508       }
3509    }
3510    parent = null;
3511
3512    SplitPlatformLibraries(project);
3513
3514    if(configurationsPresent)
3515       CombineIdenticalConfigOptions(project);
3516    return project;
3517 }
3518
3519 void SplitPlatformLibraries(Project project)
3520 {
3521    if(project && project.configurations)
3522    {
3523       for(cfg : project.configurations)
3524       {
3525          if(cfg.options.libraries && cfg.options.libraries.count)
3526          {
3527             Iterator<String> it { cfg.options.libraries };
3528             while(it.Next())
3529             {
3530                String l = it.data;
3531                char * platformName = strstr(l, ":");
3532                if(platformName)
3533                {
3534                   PlatformOptions platform = null;
3535                   platformName++;
3536                   if(!cfg.platforms) cfg.platforms = { };
3537                   for(p : cfg.platforms)
3538                   {
3539                      if(!strcmpi(platformName, p.name))
3540                      {
3541                         platform = p;
3542                         break;
3543                      }
3544                   }
3545                   if(!platform)
3546                   {
3547                      platform = { name = CopyString(platformName), options = { libraries = { } } };
3548                      cfg.platforms.Add(platform);
3549                   }
3550                   *(platformName-1) = 0;
3551                   platform.options.libraries.Add(CopyString(l));
3552
3553                   cfg.options.libraries.Delete(it.pointer);
3554                   it.pointer = null;
3555                }
3556             }
3557          }
3558       }      
3559    }
3560 }
3561
3562 void CombineIdenticalConfigOptions(Project project)
3563 {
3564    if(project && project.configurations && project.configurations.count)
3565    {
3566       DataMember member;
3567       ProjectOptions nullOptions { };
3568       ProjectConfig firstConfig = null;
3569       for(cfg : project.configurations)
3570       {
3571          if(cfg.options.targetType != staticLibrary)
3572          {
3573             firstConfig = cfg;
3574             break;
3575          }
3576       }
3577       if(!firstConfig)
3578          firstConfig = project.configurations.firstIterator.data;
3579
3580       for(member = class(ProjectOptions).membersAndProperties.first; member; member = member.next)
3581       {
3582          if(!member.isProperty)
3583          {
3584             Class type = eSystem_FindClass(__thisModule, member.dataTypeString);
3585             if(type)
3586             {
3587                bool same = true;
3588
3589                for(cfg : project.configurations)
3590                {
3591                   if(cfg != firstConfig)
3592                   {
3593                      if(cfg.options.targetType != staticLibrary)
3594                      {
3595                         int result;
3596                         
3597                         if(type.type == noHeadClass || type.type == normalClass)
3598                         {
3599                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3600                               *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3601                               *(void **)((byte *)cfg.options         + member.offset + member._class.offset));
3602                         }
3603                         else
3604                         {
3605                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3606                               (byte *)firstConfig.options + member.offset + member._class.offset,
3607                               (byte *)cfg.options         + member.offset + member._class.offset);
3608                         }
3609                         if(result)
3610                         {
3611                            same = false;
3612                            break;
3613                         }
3614                      }
3615                   }                  
3616                }
3617                if(same)
3618                {
3619                   if(type.type == noHeadClass || type.type == normalClass)
3620                   {
3621                      if(!type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3622                         *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3623                         *(void **)((byte *)nullOptions         + member.offset + member._class.offset)))
3624                         continue;
3625                   }
3626                   else
3627                   {
3628                      if(!type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3629                         (byte *)firstConfig.options + member.offset + member._class.offset,
3630                         (byte *)nullOptions         + member.offset + member._class.offset))
3631                         continue;
3632                   }
3633
3634                   if(!project.options) project.options = { };
3635                   
3636                   /*if(type.type == noHeadClass || type.type == normalClass)
3637                   {
3638                      type._vTbl[__ecereVMethodID_class_OnCopy](type, 
3639                         (byte *)project.options + member.offset + member._class.offset,
3640                         *(void **)((byte *)firstConfig.options + member.offset + member._class.offset));
3641                   }
3642                   else
3643                   {
3644                      void * address = (byte *)firstConfig.options + member.offset + member._class.offset;
3645                      // TOFIX: ListBox::SetData / OnCopy mess
3646                      type._vTbl[__ecereVMethodID_class_OnCopy](type, 
3647                         (byte *)project.options + member.offset + member._class.offset,
3648                         (type.typeSize > 4) ? address : 
3649                            ((type.typeSize == 4) ? (void *)*(uint32 *)address : 
3650                               ((type.typeSize == 2) ? (void *)*(uint16*)address : 
3651                                  (void *)*(byte *)address )));                              
3652                   }*/
3653                   memcpy(
3654                      (byte *)project.options + member.offset + member._class.offset,
3655                      (byte *)firstConfig.options + member.offset + member._class.offset, type.typeSize);
3656
3657                   for(cfg : project.configurations)
3658                   {
3659                      if(cfg.options.targetType == staticLibrary)
3660                      {
3661                         int result;
3662                         
3663                         if(type.type == noHeadClass || type.type == normalClass)
3664                         {
3665                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3666                               *(void **)((byte *)firstConfig.options + member.offset + member._class.offset),
3667                               *(void **)((byte *)cfg.options         + member.offset + member._class.offset));
3668                         }
3669                         else
3670                         {
3671                            result = type._vTbl[__ecereVMethodID_class_OnCompare](type, 
3672                               (byte *)firstConfig.options + member.offset + member._class.offset,
3673                               (byte *)cfg.options         + member.offset + member._class.offset);
3674                         }
3675                         if(result)
3676                            continue;
3677                      }
3678                      if(cfg != firstConfig)
3679                      {
3680                         if(type.type == noHeadClass || type.type == normalClass)
3681                         {
3682                            type._vTbl[__ecereVMethodID_class_OnFree](type, 
3683                               *(void **)((byte *)cfg.options + member.offset + member._class.offset));
3684                         }
3685                         else
3686                         {
3687                            type._vTbl[__ecereVMethodID_class_OnFree](type, 
3688                               (byte *)cfg.options + member.offset + member._class.offset);
3689                         }
3690                         memset((byte *)cfg.options + member.offset + member._class.offset, 0, type.typeSize);
3691                      }                     
3692                   }
3693                   memset((byte *)firstConfig.options + member.offset + member._class.offset, 0, type.typeSize);
3694                }
3695             }
3696          }
3697       }
3698       delete nullOptions;
3699
3700       // Compare Platform Specific Settings
3701       {
3702          bool same = true;
3703          for(cfg : project.configurations)
3704          {
3705             if(cfg != firstConfig && cfg.options.targetType != staticLibrary && (firstConfig.platforms || cfg.platforms) &&
3706                ((!firstConfig.platforms && cfg.platforms) || firstConfig.platforms.OnCompare(cfg.platforms)))
3707             {
3708                same = false;
3709                break;
3710             }
3711          }
3712          if(same && firstConfig.platforms)
3713          {
3714             for(cfg : project.configurations)
3715             {
3716                if(cfg.options.targetType == staticLibrary && firstConfig.platforms.OnCompare(cfg.platforms))
3717                   continue;
3718                if(cfg != firstConfig)
3719                {
3720                   cfg.platforms.Free();
3721                   delete cfg.platforms;
3722                }
3723             }
3724             project.platforms = firstConfig.platforms;
3725             firstConfig.platforms = null;
3726          }
3727       }
3728
3729       // Static libraries can't contain libraries
3730       for(cfg : project.configurations)
3731       {
3732          if(cfg.options.targetType == staticLibrary)
3733          {
3734             if(!cfg.options.libraries) cfg.options.libraries = { };
3735             cfg.options.libraries.Free();
3736          }
3737       }
3738    }
3739 }
3740
3741 Project LoadProject(char * filePath, char * activeConfigName)
3742 {
3743    Project project = null;
3744    File f = FileOpen(filePath, read);
3745    if(f)
3746    {
3747       project = LegacyBinaryLoadProject(f, filePath);
3748       if(!project)
3749       {
3750          JSONParser parser { f = f };
3751          JSONResult result = parser.GetObject(class(Project), &project);
3752          if(project)
3753          {
3754             char insidePath[MAX_LOCATION];
3755
3756             delete project.topNode.files;
3757             if(!project.files) project.files = { };
3758             project.topNode.files = project.files;
3759             project.resNode = project.topNode.Add(project, "Resources", project.topNode.files.last, resources, archiveFile, false);
3760             delete project.resNode.path;
3761             project.resNode.path = project.resourcesPath;
3762             project.resourcesPath = null;
3763             project.resNode.nodeType = (ProjectNodeType)-1;
3764             delete project.resNode.files;
3765             project.resNode.files = project.resources;
3766             project.files = null;
3767             project.resources = null;
3768             if(!project.configurations) project.configurations = { };
3769
3770             {
3771                char topNodePath[MAX_LOCATION];
3772                GetWorkingDir(topNodePath, sizeof(topNodePath)-1);
3773                MakeSlashPath(topNodePath);
3774                PathCatSlash(topNodePath, filePath);
3775                project.filePath = topNodePath;//filePath;
3776             }
3777
3778             project.topNode.FixupNode(insidePath);
3779          }
3780          delete parser;
3781       }
3782       if(!project)
3783          project = LegacyAsciiLoadProject(f, filePath);
3784
3785       delete f;
3786
3787       if(project)
3788       {
3789          if(!project.options) project.options = { };
3790          if(activeConfigName && activeConfigName[0] && project.configurations)
3791          {
3792             for(cfg : project.configurations)
3793             {
3794                if(!strcmpi(cfg.name, activeConfigName))
3795                {
3796                   project.config = cfg;
3797                   break;
3798                }
3799             }
3800          }
3801          if(!project.config && project.configurations)
3802             project.config = project.configurations.firstIterator.data;
3803
3804          if(!project.resNode)
3805          {
3806             project.resNode = project.topNode.Add(project, "Resources", project.topNode.files.last, resources, archiveFile, false);
3807          }
3808          
3809          if(!project.moduleName)
3810             project.moduleName = CopyString(project.name);
3811          if(project.config && 
3812             (!project.options || !project.options.targetFileName || !project.options.targetFileName[0]) &&
3813             (!project.config.options.targetFileName || !project.config.options.targetFileName[0]))
3814          {
3815             //delete project.config.options.targetFileName;
3816             
3817             project.options.targetFileName = /*CopyString(*/project.moduleName/*)*/;
3818             project.config.options.optimization = none;
3819             project.config.options.debug = true;
3820             //project.config.options.warnings = unset;
3821             project.config.options.memoryGuard = false;
3822             project.config.compilingModified = true;
3823             project.config.linkingModified = true;
3824          }
3825          else if(!project.topNode.name && project.config)
3826          {
3827             project.topNode.name = CopyString(project.config.options.targetFileName);
3828          }
3829
3830          /* // THIS IS NOW AUTOMATED WITH A project CHECK IN ProjectNode
3831          project.topNode.configurations = project.configurations;
3832          project.topNode.platforms = project.platforms;
3833          project.topNode.options = project.options;*/
3834       }
3835    }
3836    return project;
3837 }