forked from Foundation-19/Foundation-19
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Major codebase improvements + widescreen" (Foundation-19#1771)
Revert "Major codebase improvements + widescreen (Foundation-19#1745)" This reverts commit 7309155.
- Loading branch information
Showing
3,792 changed files
with
4,574 additions
and
2,465 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,9 @@ | ||
//Defines file for byond click related parameters | ||
//this is mostly for ease of use and for finding all the things that use say RIGHT_CLICK rather then just searching "right" | ||
|
||
//Mouse buttons held | ||
//Mouse buttons pressed/held/released | ||
#define RIGHT_CLICK "right" | ||
#define MIDDLE_CLICK "middle" | ||
#define LEFT_CLICK "left" | ||
|
||
///Mouse button that was just clicked/released | ||
///if(modifiers[BUTTON] == LEFT_CLICK) | ||
#define BUTTON "button" | ||
|
||
//Keys held down during the mouse action | ||
#define CTRL_CLICK "ctrl" | ||
#define ALT_CLICK "alt" | ||
#define SHIFT_CLICK "shift" | ||
|
||
//Cells involved if using a Grid control | ||
#define DRAG_CELL "drag-cell" | ||
#define DROP_CELL "drop-cell" | ||
|
||
//The button used for dragging (only sent for unrelated mouse up/down messages during a drag) | ||
#define DRAG "drag" | ||
|
||
//If the mouse is over a link in maptext, or this event is related to clicking such a link | ||
#define LINK "link" | ||
|
||
//Pixel coordinates relative to the icon's position on screen | ||
#define VIS_X "vis-x" | ||
#define VIS_Y "vis-y" | ||
|
||
//Pixel coordinates within the icon, in the icon's coordinate space | ||
#define ICON_X "icon-x" | ||
#define ICON_Y "icon-y" | ||
|
||
//Pixel coordinates in screen_loc format ("[tile_x]:[pixel_x],[tile_y]:[pixel_y]") | ||
#define SCREEN_LOC "screen-loc" | ||
|
||
//https://secure.byond.com/docs/ref/info.html#/atom/var/mouse_opacity | ||
/// Objects will ignore being clicked on regardless of their transparency (used in parallax, lighting effects, holograms, lasers, etc.) | ||
#define MOUSE_OPACITY_TRANSPARENT 0 | ||
/// Objects will be clicked on if it is the topmost object and the pixel isn't transparent at the position of the mouse (default behavior for 99.99% of game objects) | ||
#define MOUSE_OPACITY_ICON 1 | ||
/// Objects will be always be clicked on regardless of pixel transparency or other objects at that location (used in space vines, megafauna, storage containers) | ||
#define MOUSE_OPACITY_OPAQUE 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#define CLIENT_MIN_FPS 0 | ||
#define CLIENT_MAX_FPS 360 | ||
#define CLIENT_MAX_FPS 1000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.