build.bat 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. set input_dir=%1
  2. set output_dir=%2
  3. set prj_name=%3
  4. set lua_prefix=%4
  5. set csharp_filter=%5
  6. set csc_dir="C:\Windows\Microsoft.NET\Framework64\v3.5"
  7. set mono_dir="%~dp0\protoc\mono"
  8. echo ---------------------------------------------------------------------------
  9. echo - Init
  10. echo ---------------------------------------------------------------------------
  11. set csharp_gen_dir=%~dp0\protoc\protoc-gen-cs
  12. set csharp_dll_dir=%~dp0\protoc\protoc-gen-cs\library
  13. set lua_gen_dir=%~dp0\protoc\protoc-gen-lua
  14. set lua_plugin_dir=%~dp0\protoc\protoc-gen-lua\protoc-gen-lua\plugin\build.bat
  15. set java_tools_dir=%~dp0\..\..\Tools\lib
  16. echo input dir at : %input_dir%
  17. echo output dir at : %output_dir%
  18. echo project name : %prj_name%
  19. echo lua prefix : %lua_prefix%
  20. echo csharp filter : %csharp_filter%
  21. echo ---------------------------------------------------------------------------
  22. echo - Make Dir
  23. echo ---------------------------------------------------------------------------
  24. set proto_out=%output_dir%\proto
  25. if exist %proto_out% (
  26. if exist %proto_out%\lua rmdir /S/Q %proto_out%\lua
  27. if exist %proto_out%\csharp rmdir /S/Q %proto_out%\csharp
  28. if exist %proto_out%\csharp_all rmdir /S/Q %proto_out%\csharp_all
  29. if exist %proto_out%\js rmdir /S/Q %proto_out%\js
  30. ) else (
  31. mkdir %proto_out%
  32. )
  33. echo proto output at : %proto_out%
  34. mkdir %proto_out%\lua
  35. mkdir %proto_out%\csharp
  36. mkdir %proto_out%\csharp_all
  37. mkdir %proto_out%\js
  38. set handlers_out=%output_dir%\handlers
  39. if exist %handlers_out% (
  40. if exist %handlers_out%\lua rmdir /S/Q %handlers_out%\lua
  41. if exist %handlers_out%\csharp rmdir /S/Q %handlers_out%\csharp
  42. if exist %handlers_out%\csharp_all rmdir /S/Q %handlers_out%\csharp_all
  43. if exist %handlers_out%\js rmdir /S/Q %handlers_out%\js
  44. if exist %handlers_out%\temp rmdir /S/Q %handlers_out%\temp
  45. ) else (
  46. mkdir %handlers_out%
  47. )
  48. echo handlers output at : %handlers_out%
  49. mkdir %handlers_out%\lua
  50. mkdir %handlers_out%\csharp
  51. mkdir %handlers_out%\csharp_all
  52. mkdir %handlers_out%\js
  53. mkdir %handlers_out%\temp
  54. set input_cs_dir=%input_dir%
  55. echo ---------------------------------------------------------------------------
  56. echo - Filter CS files
  57. echo ---------------------------------------------------------------------------
  58. if exist %csharp_filter% (
  59. set input_cs_dir=%output_dir%\temp
  60. mkdir %output_dir%\temp
  61. echo CopyResource %input_dir% %output_dir%\temp %csharp_filter%
  62. java -classpath %java_tools_dir%/g2d_studio.jar CopyResource %input_dir% %output_dir%\temp %csharp_filter%
  63. )
  64. echo input cs dir at : %input_cs_dir%
  65. echo ---------------------------------------------------------------------------
  66. echo - Gen proto files
  67. echo ---------------------------------------------------------------------------
  68. echo ---- gen unity cs files ----
  69. for /f "delims=" %%i in ('dir /b/a "%input_cs_dir%\*.proto"') do (
  70. %csharp_gen_dir%\protogen.exe -t:csharp-tiny -w:%input_cs_dir% -i:%input_cs_dir%\%%i -o:%proto_out%\csharp\_%%~ni.cs
  71. )
  72. echo ---- gen bot cs files ----
  73. for /f "delims=" %%i in ('dir /b/a "%input_dir%\*.proto"') do (
  74. %csharp_gen_dir%\protogen.exe -t:csharp-tiny -w:%input_dir% -i:%input_dir%\%%i -o:%proto_out%\csharp_all\_%%~ni.cs
  75. )
  76. echo ---- gen lua files ----
  77. for /f "delims=" %%i in ('dir /b/a "%input_dir%\*.proto"') do (
  78. %lua_gen_dir%\protoc.exe --proto_path=%input_dir% --lua_out=%proto_out%\lua --plugin=protoc-gen-lua="%lua_plugin_dir%" %input_dir%\%%i
  79. )
  80. echo ---------------------------------------------------------------------------
  81. echo - Gen handlers files
  82. echo ---------------------------------------------------------------------------
  83. node "%~dp0\pomelo-gen\genPomeloProtoNew.js" input=%input_dir% output=%handlers_out%\csharp_all outputLua=%handlers_out%\lua pathLua=%lua_prefix% outputJs=%handlers_out%\js
  84. if errorlevel 1 (
  85. echo Failure Reason Given is %errorlevel%
  86. pause
  87. goto END
  88. )
  89. echo ---- gen unity handlers files ----
  90. node "%~dp0\pomelo-gen\genPomeloProtoNew.js" input=%input_cs_dir% output=%handlers_out%\csharp outputLua=%handlers_out%\temp pathLua=%lua_prefix% outputJs=%handlers_out%\temp
  91. if errorlevel 1 (
  92. echo Failure Reason Given is %errorlevel%
  93. pause
  94. goto END
  95. )
  96. echo ---------------------------------------------------------------------------
  97. echo - Build : %prj_name%-proto.dll
  98. echo ---------------------------------------------------------------------------
  99. copy %csharp_dll_dir%\protobuf-net.dll %output_dir%\
  100. copy %csharp_dll_dir%\pomelo-dotnetClient.dll %output_dir%\
  101. %csc_dir%\csc /target:library /out:%output_dir%\%prj_name%-proto.dll %proto_out%\csharp\*.cs /r:System.Data.dll;System.dll;%csharp_dll_dir%/protobuf-net.dll
  102. if errorlevel 1 (
  103. echo Failure Reason Given is %errorlevel%
  104. pause
  105. goto END
  106. )
  107. echo ---------------------------------------------------------------------------
  108. echo - Build : %prj_name%-handlers.dll
  109. echo ---------------------------------------------------------------------------
  110. %mono_dir%\mcs /target:library /out:%output_dir%\%prj_name%-handlers.dll %handlers_out%\csharp\*.cs /r:%mono_dir%\System.Core.dll;%output_dir%\protobuf-net.dll;%output_dir%\pomelo-dotnetClient.dll;%output_dir%\%prj_name%-proto.dll
  111. if errorlevel 1 (
  112. echo Failure Reason Given is %errorlevel%
  113. pause
  114. goto END
  115. )
  116. echo ---------------------------------------------------------------------------
  117. echo - Precompile : ProtobufSerializer.dll
  118. echo ---------------------------------------------------------------------------
  119. %csharp_dll_dir%\Precompile\precompile.exe %output_dir%\%prj_name%-proto.dll -o:%output_dir%\ProtobufSerializer.dll -t:ProtobufSerializer
  120. if errorlevel 1 (
  121. echo Failure Reason Given is %errorlevel%
  122. pause
  123. goto END
  124. )
  125. echo ---------------------------------------------------------------------------
  126. echo - Done
  127. echo ---------------------------------------------------------------------------
  128. :END
  129. if exist %output_dir%\temp rmdir /S/Q %output_dir%\temp