main.cpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #include <flutter/dart_project.h>
  2. #include <flutter/flutter_view_controller.h>
  3. #include <windows.h>
  4. #include <flutter/method_channel.h>
  5. #include <flutter/plugin_registrar_windows.h>
  6. #include "flutter_window.h"
  7. #include "utils.h"
  8. #include <protocol_handler/protocol_handler_plugin.h>
  9. #include <flutter/standard_method_codec.h>
  10. // 展示控制台
  11. void ShowConsole() {
  12. HWND hWnd = ::GetConsoleWindow();
  13. if (hWnd != NULL) {
  14. ::ShowWindow(hWnd, SW_SHOW);
  15. }
  16. }
  17. // 隐藏控制台
  18. void HideConsole() {
  19. HWND hWnd = ::GetConsoleWindow();
  20. if (hWnd != NULL) {
  21. ::ShowWindow(hWnd, SW_HIDE);
  22. }
  23. }
  24. // 一个例子:展示如何注册处理函数来响应Dart的调用。
  25. void RegisterWithFlutter(flutter::PluginRegistrarWindows *registrar) {
  26. auto channel =
  27. std::make_unique<flutter::MethodChannel<flutter::EncodableValue>>(
  28. registrar->messenger(), "com.naiyouwl.native_code",
  29. &flutter::StandardMethodCodec::GetInstance());
  30. channel->SetMethodCallHandler(
  31. [](const flutter::MethodCall<flutter::EncodableValue>& call,
  32. std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result) {
  33. if (call.method_name().compare("showConsole") == 0) {
  34. ShowConsole();
  35. result->Success(flutter::EncodableValue(true));
  36. } else if (call.method_name().compare("hideConsole") == 0) {
  37. HideConsole();
  38. result->Success(flutter::EncodableValue(true));
  39. } else {
  40. result->NotImplemented();
  41. }
  42. });
  43. }
  44. int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,
  45. _In_ wchar_t *command_line, _In_ int show_command) {
  46. // 注册Flutter插件
  47. RegisterPlugins(&flutter_controller->engine());
  48. HWND hwnd = ::FindWindow(L"FLUTTER_RUNNER_WIN32_WINDOW", L"naiyouwl");
  49. if (hwnd != NULL) {
  50. DispatchToProtocolHandler(hwnd);
  51. ::ShowWindow(hwnd, SW_NORMAL);
  52. ::SetForegroundWindow(hwnd);
  53. return EXIT_FAILURE;
  54. }
  55. /*
  56. *
  57. else {
  58. AllocConsole();
  59. ShowWindow(GetConsoleWindow(), SW_HIDE);
  60. }
  61. * */
  62. // https://github.com/flutter/flutter/issues/47891#issuecomment-708850435
  63. // https://github.com/flutter/flutter/issues/47891#issuecomment-869729956
  64. // https://github.com/dart-lang/sdk/issues/39945#issuecomment-870428151
  65. if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) {
  66. CreateAndAttachConsole();
  67. } else {
  68. AllocConsole();
  69. ShowWindow(GetConsoleWindow(), SW_HIDE);
  70. }
  71. // Initialize COM, so that it is available for use in the library and/or
  72. // plugins.
  73. ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED);
  74. flutter::DartProject project(L"data");
  75. std::vector<std::string> command_line_arguments =
  76. GetCommandLineArguments();
  77. project.set_dart_entrypoint_arguments(std::move(command_line_arguments));
  78. FlutterWindow window(project);
  79. Win32Window::Point origin(10, 10);
  80. Win32Window::Size size(1280, 720);
  81. if (!window.Create(L"naiyouwl", origin, size)) {
  82. return EXIT_FAILURE;
  83. }
  84. window.SetQuitOnClose(true);
  85. ::MSG msg;
  86. while (::GetMessage(&msg, nullptr, 0, 0)) {
  87. ::TranslateMessage(&msg);
  88. ::DispatchMessage(&msg);
  89. }
  90. ::CoUninitialize();
  91. return EXIT_SUCCESS;
  92. }