Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[split] rcore, web, desktop, android changes (batch 5) #3345

Merged
merged 8 commits into from Sep 24, 2023
Merged

[split] rcore, web, desktop, android changes (batch 5) #3345

merged 8 commits into from Sep 24, 2023

Conversation

ghost
Copy link

@ghost ghost commented Sep 23, 2023

PR changes

  1. Moves SetExitKey from rcore.c (R1940-R1947) to rcore_android.c (R1052-R1057), rcore_desktop.c (R1515-R1520), rcore_web.c (R1044-R1049). Note: instead of deleting it from rcore.c just commented it to keep as reference. Will clean up later.

  2. Moves the following callback functions from rcore.c to rcore_desktop.c and rcore_web.c (Note: instead of deleting them from rcore.c just commented it to keep as reference. Will clean up later.):

function from to and
WindowSizeCallback L2453-L2484 R1764-R1795 R1278-R1304
WindowIconifyCallback L2487-L2491 R1798-R1802 R1307-R1311
WindowFocusCallback L2494-L2498 R1805-R1809 R1314-R1318
KeyCallback L2501-L2588 R1812-R1891 R1321-R1400
CharCallback L2591-L2607 R1894-R1910 R1403-R1419
MouseButtonCallback L2610-L2648 R1913-R1946) R1422-R1456
MouseCursorPosCallback L2651-L2679 R1949-R1977 R1459-R1487
MouseScrollCallback L2682-L2685 R1980-R1983 R1490-R1493
CursorEnterCallback L2688-L2692 R1986-R1990 R1496-R1500
WindowDropCallback L2695-L2720 R1993-R2018 R1503-R1528

  1. Relocates the following emscripten callback functions inside rcore_web.c to their previous position on rcore.c to more easily track the split:
function from to
EmscriptenFullscreenChangeCallback L190-L195 R1386-R1391
EmscriptenWindowResizedCallback L198-L203 R1394-R1399
EmscriptenResizeCallback L205-L242 R1401-R1438
EmscriptenMouseCallback L245-L250 R1441-R1446
EmscriptenGamepadCallback L253-L272 R1449-R1468
EmscriptenTouchCallback L275-L332) R1471-R1528

  1. The bbdbecc commit relocates some android callback functions from the middle of the rcore_android.c file to the end of the same file. That was done to more easily compare it to the original rcore.c which had them in the end of the file. However, Github is having trouble displaying the diff cleaning (I think it's because this PR already added a new function in the middle of rcore_android.c and that's making the diff display getting lost). Either way, I'd like to keep a clean log to make it easier to track and follow all changes, so I reverted this commit on this PR. I will commit it again on a future batch.

  2. See item 4 above.

  3. Update UnloadVrStereoConfig to log an error.
    On rcore.c: R831.

  4. Update SetClipboardText to log an error.
    On rcore_android.c: R931.

  5. Fix screenMin and screenMax var names to set the default values.
    On rcore_android.c: R139-R143.

Status

Environment

  • Compiled with emscripten/emsdk on Linux (Mint 21.1 64-bit).
  • Tested on Firefox (115.1.0esr 64-bit) and Chromium (115.0.5790.170 64-bit) both running on Linux Mint (21.1 64-bit).

Edits

1: added line marks.
2: added moved callbacks.
3: added relocated callbacks.
4: added and reverted android relocated callbacks.
5: added update to UnloadVrStereoConfig.
6: added update do SetClipboardText.
7: added fix for screenMin/Max.

@raysan5 raysan5 merged commit 4093775 into raysan5:rcore_platform_split Sep 24, 2023
10 checks passed
@raysan5
Copy link
Owner

raysan5 commented Sep 24, 2023

@ubkp Thank you very much for the review! Merged!

@ghost ghost deleted the rcore_platform_split_web5 branch September 24, 2023 13:01
raysan5 added a commit that referenced this pull request Oct 8, 2023
* Submodules (#3311)

* Check in current state

* Add submodules to Makefile and clean up some imports

* Start moving InitGraphicsDeivce

* Move android_main and CloseWindow() out of rcore

* Move WindowShouldClose out of rcore

* Move IsWindowHidden out of rcore

* Move IsWindowMinimized out of rcore

* Move IsWindowMaximized, IsWindowFocused and IsWindowResized out of rcore

* Move ToggleFullscreen out of rcore

* Move MaximizeWindow, MinimizeWindow and RestoreWindow out of rcore

* Move 13 functions out of rcore:
ToggleBorderlessWindowed
SetWindowState
ClearWindowState
SetWindowIcon
SetWindowIcons
SetWindowTitle
SetWindowPosition
SetWindowMonitor
SetWindowMinSize
SetWindowMaxSize
SetWindowSize
SetWindowOpacity
SetWindowFocused

* Minor clean up, revert makefile change, include submodules directly in rcore

* Fix makefile comment

* Remove rcore.h from Makefile

* Remove debug include

* Move 18 functions from rcore to submodules
GetWindowHandle
GetMonitorCount
GetCurrentMonitor
GetMonitorPosition
GetMonitorWidth
GetMonitorHeight
GetMonitorPhysicalHeight
GetMonitorRefreshRate
GetWindowPosition
GetWindowScaleDPI
GetMonitorName
SetClipboardText
GetClipboardText
ShowCursor
HideCursor
EnableCursor
DisableCursor
GetTime

* Move TakeScreenshot, OpenURL, GetGamepadName out of rcore into submodules

* remove debugging #defines

* Move GetMonitorPhysicalWidth from rcore to submodule

* Move GetGamepadAxisCount from rcore

* Move SetGamepadMappings out of rcore

* Move GetMouseX, GetMouseY, GetMousePosition out of rcore

* Move SetMousePosition out of rcore

* Move GetMouseWheelMove out of rcore

* Move the last functions out of rcore

* Move shared function defs and some global var to rcore.h

* Clean up rcore.c and rcore.h a little more

* Remove unnecessary #define

---------

Co-authored-by: MichaelFiber <[email protected]>

* REVIEWED: `PLATFORM_DESKTOP` Windows building

* Revert "REVIEWED: `PLATFORM_DESKTOP` Windows building"

This reverts commit 71a1217.

* Reviewed Windows building

* [split] Fix compilation for web (and desktop) (#3329)

* Fix compilation for web

* Remove EM_ASM_INT from core_input_gestures_web example

* Fix raymath undefined symbols for desktop and web

* Remove raylib_opengl_interop from examples Makefile

* Revert previous commit (8651c78)

* Fix TraceLog for web and desktop

* [split] `rcore`, `rcore_web` and `rcore_desktop` changes (batch 2) (#3334)

* Fix formatting

* Reapply commit 9d230d7 (#3305) that was missing

* Reapplies commits 719365f (#3309) and 8a1779b (#3312) that were missing

* Reapply commit 5c9cc3f (#3323) that was missing

* Reapply commit a2b3b1e that was missing

* Revert commit cef25c6 to fix macro redefined warning

* Move rcore.h #include to after config.h to fix macro redefinitions warnings

* [split] `rcore`, `web`, `desktop`, `android` changes (batch 3) (#3338)

* First pass to remove unneeded platform macros for web

* Second pass to remove unneeded platform macros for web

* Move GetTouchX, GetTouchY, GetTouchPosition from rcore to web, desktop, android

* Move SetMouseCursor from rcore to android, desktop, web

* [split] `rcore`, `web`, `desktop`, `android` changes (batch 4) (#3343)

* Fix ToggleBorderlessWindowed duplicated glfwSetWindowSize calls

* First pass to remove unneeded platform macros for android

* Second pass to remove unneeded platform macros for android

* Remove unneeded platform macros for desktop

* Relocate GetGamepadName and update SetGamepadMappings on android, desktop, web

* Add missing comment to web

* [split] `rcore`, `web`, `desktop`, `android` changes (batch 5) (#3345)

* Move SetExitKey from core to android, desktop, web

* Move some callbacks from core to desktop and web

* Relocate emscripten callbacks on web

* Relocate android callbacks on android

* Revert "Relocate android callbacks on android"

This reverts commit bbdbecc.

* Updates UnloadVrStereoConfig on rcore

* Update SetClipboardText on android

* Fix screenMin/Max default values for android

* [split] `rcore`, `drm` changes (#3347)

* Tweak makefiles for PLATFORM_DRM and move rcore_drm's dependencies to rcore.h

* Move drm functions to rcore_drm.c

* Fix a typo in rcore.c

* Add SetExitKey to rcore_drm.c

---------

Co-authored-by: MichaelFiber <[email protected]>

* Fix compilation for android (#3360)

* Fix android include (#3364)

* Reviewed platform split #3313

 - Added file headers info
 - Added TRACELOG message for unimplemented functions
 - Reviewed code formatting and organization
 - Several code tweaks

* REVIEWED: `GetDirectoryPath()`

---------

Co-authored-by: MichaelFiber <[email protected]>
Co-authored-by: MichaelFiber <[email protected]>
Co-authored-by: ubkp <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant