mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-27 16:54:52 +01:00
Merge branch 'master' into update_objective
Conflicts: src/window_game_bottom_toolbar.c
This commit is contained in:
6260
lodepng/lodepng.c
Normal file
6260
lodepng/lodepng.c
Normal file
File diff suppressed because it is too large
Load Diff
1716
lodepng/lodepng.h
Normal file
1716
lodepng/lodepng.h
Normal file
File diff suppressed because it is too large
Load Diff
@@ -51,6 +51,7 @@
|
||||
<ClInclude Include="resource.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\lodepng\lodepng.c" />
|
||||
<ClCompile Include="..\src\audio.c" />
|
||||
<ClCompile Include="..\src\climate.c" />
|
||||
<ClCompile Include="..\src\config.c" />
|
||||
@@ -129,13 +130,13 @@
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<IncludePath>$(SolutionDir)..\sdl\include;$(IncludePath)</IncludePath>
|
||||
<IncludePath>$(SolutionDir)..\lodepng;$(SolutionDir)..\sdl\include;$(IncludePath)</IncludePath>
|
||||
<LibraryPath>$(SolutionDir)..\sdl\lib\x86;$(LibraryPath)</LibraryPath>
|
||||
<OutDir>$(SolutionDir)..\build\$(Configuration)\</OutDir>
|
||||
<IntDir>$(SolutionDir)..\obj\$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<IncludePath>$(SolutionDir)..\sdl\include;$(IncludePath)</IncludePath>
|
||||
<IncludePath>$(SolutionDir)..\lodepng;$(SolutionDir)..\sdl\include;$(IncludePath)</IncludePath>
|
||||
<LibraryPath>$(SolutionDir)..\sdl\lib\x86;$(LibraryPath)</LibraryPath>
|
||||
<OutDir>$(SolutionDir)..\build\$(Configuration)\</OutDir>
|
||||
<IntDir>$(SolutionDir)..\obj\$(Configuration)\</IntDir>
|
||||
|
||||
@@ -254,6 +254,9 @@
|
||||
<ClCompile Include="..\src\window_about.c">
|
||||
<Filter>Windows</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\lodepng\lodepng.c">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="..\openrct2.exe">
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ShowAllFiles>false</ShowAllFiles>
|
||||
<ShowAllFiles>true</ShowAllFiles>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LocalDebuggerCommand>$(TargetDir)\openrct2.exe</LocalDebuggerCommand>
|
||||
|
||||
@@ -136,6 +136,7 @@
|
||||
#define RCT2_ADDRESS_GAME_FLAGS 0x013573E4
|
||||
#define RCT2_ADDRESS_PARK_ENTRANCE_FEE 0x013573E8
|
||||
#define RCT2_ADDRESS_GUESTS_IN_PARK 0x01357844
|
||||
#define RCT2_ADDRESS_MONTHLY_RIDE_INCOME 0x01357894
|
||||
#define RCT2_ADDRESS_CURRENT_PARK_RATING 0x01357CB0
|
||||
#define RCT2_ADDRESS_PARK_RATING_HISTORY 0x01357CB2
|
||||
#define RCT2_ADDRESS_GUESTS_IN_PARK_HISTORY 0x01357CD2
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include "date.h"
|
||||
#include "rct2.h"
|
||||
|
||||
// rtc2: 0x00993988
|
||||
// rct2: 0x00993988
|
||||
const sint16 days_in_month[MONTH_COUNT] = { 31, 30, 31, 30, 31, 31, 30, 31 };
|
||||
|
||||
|
||||
|
||||
32
src/park.c
32
src/park.c
@@ -19,10 +19,12 @@
|
||||
*****************************************************************************/
|
||||
|
||||
#include "addresses.h"
|
||||
#include "map.h"
|
||||
#include "park.h"
|
||||
#include "peep.h"
|
||||
#include "ride.h"
|
||||
#include "sprite.h"
|
||||
#include "window.h"
|
||||
|
||||
int park_is_open()
|
||||
{
|
||||
@@ -38,6 +40,36 @@ void park_init()
|
||||
RCT2_CALLPROC_EBPSAFE(0x00667132);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* rct2: 0x0066A348
|
||||
*/
|
||||
int park_calculate_size()
|
||||
{
|
||||
int tiles, x, y;
|
||||
rct_map_element *mapElement;
|
||||
|
||||
tiles = 0;
|
||||
for (y = 0; y < 256; y++) {
|
||||
for (x = 0; x < 256; x++) {
|
||||
mapElement = RCT2_ADDRESS(RCT2_ADDRESS_TILE_MAP_ELEMENT_POINTERS, rct_map_element*)[y * 256 + x];
|
||||
while (mapElement->type & MAP_ELEMENT_TYPE_MASK) {
|
||||
mapElement++;
|
||||
}
|
||||
|
||||
if (mapElement->properties.surface.ownership & 0x30)
|
||||
tiles++;
|
||||
}
|
||||
}
|
||||
|
||||
if (tiles != RCT2_GLOBAL(0x013580EA, sint16)) {
|
||||
RCT2_GLOBAL(0x013580EA, sint16) = tiles;
|
||||
window_invalidate_by_id(WC_PARK_INFORMATION, 0);
|
||||
}
|
||||
|
||||
return tiles;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* rct2: 0x00669EAA
|
||||
|
||||
@@ -53,6 +53,7 @@ enum {
|
||||
|
||||
int park_is_open();
|
||||
void park_init();
|
||||
int park_calculate_size();
|
||||
|
||||
int calculate_park_rating();
|
||||
int calculate_park_value();
|
||||
|
||||
@@ -80,7 +80,9 @@ typedef struct {
|
||||
uint8 var_31;
|
||||
uint8 pad_32[0x08];
|
||||
uint8 happiness; // 0x3A
|
||||
uint8 pad_03B[0x2D];
|
||||
uint8 var_03B;
|
||||
uint8 nausea; // 0x3C
|
||||
uint8 pad_03D[0x2B];
|
||||
uint8 current_ride; // 0x68
|
||||
uint8 pad_6a; // 0x6A Part of current_ride?
|
||||
uint8 current_train; // 0x6B
|
||||
|
||||
@@ -122,9 +122,10 @@ enum {
|
||||
|
||||
enum {
|
||||
GAME_FLAGS_PARK_OPEN = (1 << 0),
|
||||
GAME_FLAGS_BELOW_TREE_HEIGHT_ONLY = (1 << 5),
|
||||
GAME_FLAGS_BELOW_TREE_HEIGHT_ONLY = (1 << 5),
|
||||
GAME_FLAGS_NO_MONEY = (1 << 11),
|
||||
GAME_FLAGS_PARK_FREE_ENTRY = (1 << 13)
|
||||
GAME_FLAGS_PARK_FREE_ENTRY = (1 << 13),
|
||||
GAME_FLAGS_18 = (1 << 18)
|
||||
};
|
||||
|
||||
void rct2_endupdate();
|
||||
|
||||
@@ -465,7 +465,56 @@ void scenario_load_and_play(rct_scenario_basic *scenario)
|
||||
strcpy(0x0135924A, s6Info->details);
|
||||
strcpy(0x0135920A, s6Info->name);
|
||||
|
||||
RCT2_CALLPROC_EBPSAFE(0x00678461);
|
||||
// RCT2_CALLPROC_EBPSAFE(0x00678461);
|
||||
|
||||
if (RCT2_GLOBAL(0x009ADAE4, sint32) != -1) {
|
||||
char *ebp = RCT2_GLOBAL(0x009ADAE4, char*);
|
||||
|
||||
format_string(0x0141ED68, RCT2_GLOBAL(ebp + 2, uint16), 0);
|
||||
RCT2_GLOBAL(0x0141E9AE, uint16) = STR_CANT_RENAME_PARK;
|
||||
|
||||
RCT2_CALLPROC_X(0x006677F2, 1, 1, 0, *((int*)(0x0141ED68 + 0)), 33, *((int*)(0x0141ED68 + 8)), *((int*)(0x0141ED68 + 4)));
|
||||
RCT2_CALLPROC_X(0x006677F2, 2, 1, 0, *((int*)(0x0141ED68 + 12)), 33, *((int*)(0x0141ED68 + 20)), *((int*)(0x0141ED68 + 16)));
|
||||
RCT2_CALLPROC_X(0x006677F2, 0, 1, 0, *((int*)(0x0141ED68 + 24)), 33, *((int*)(0x0141ED68 + 32)), *((int*)(0x0141ED68 + 28)));
|
||||
|
||||
format_string(0x0141ED68, RCT2_GLOBAL(ebp + 0, uint16), 0);
|
||||
strcpy_s(0x0135920A, 32, 0x0141ED68);
|
||||
|
||||
format_string(0x0141ED68, RCT2_GLOBAL(ebp + 4, uint16), 0);
|
||||
strcpy_s(RCT2_ADDRESS_SCENARIO_DETAILS, 256, 0x0141ED68);
|
||||
}
|
||||
|
||||
strcpy(0x009ABB37, 0x009AB5DA);
|
||||
format_string(0x009ABB37 + strlen(0x009ABB37), RCT2_GLOBAL(0x0013573D4, uint16), 0x0013573D8);
|
||||
strcat(0x009ABB37, ".SV6");
|
||||
memset(0x001357848, 0, 56);
|
||||
RCT2_GLOBAL(0x0135832C, uint32) = 0;
|
||||
RCT2_GLOBAL(RCT2_ADDRESS_CURRENT_PROFIT, sint32) = 0;
|
||||
RCT2_GLOBAL(0x01358334, uint32) = 0;
|
||||
RCT2_GLOBAL(0x01358338, uint16) = 0;
|
||||
RCT2_GLOBAL(RCT2_ADDRESS_COMPLETED_COMPANY_VALUE, uint32) = 0x80000000;
|
||||
RCT2_GLOBAL(RCT2_ADDRESS_TOTAL_ADMISSIONS, uint32) = 0;
|
||||
RCT2_GLOBAL(RCT2_ADDRESS_INCOME_FROM_ADMISSIONS, uint32) = 0;
|
||||
RCT2_GLOBAL(0x013587D8, uint16) = 63;
|
||||
RCT2_CALLPROC_EBPSAFE(0x0069E869);
|
||||
RCT2_CALLPROC_EBPSAFE(0x0066729F);
|
||||
RCT2_CALLPROC_EBPSAFE(0x006B7A38);
|
||||
date_reset();
|
||||
RCT2_CALLPROC_EBPSAFE(0x00674576);
|
||||
park_calculate_size();
|
||||
RCT2_CALLPROC_EBPSAFE(0x006C1955);
|
||||
RCT2_GLOBAL(0x01358840, uint8) = 0;
|
||||
memset(0x001358102, 0, 20);
|
||||
RCT2_GLOBAL(0x00135882E, uint16) = 0;
|
||||
if (RCT2_GLOBAL(RCT2_ADDRESS_GAME_FLAGS, uint32) & GAME_FLAGS_NO_MONEY) {
|
||||
RCT2_GLOBAL(RCT2_ADDRESS_GAME_FLAGS, uint32) |= GAME_FLAGS_PARK_OPEN;
|
||||
RCT2_GLOBAL(RCT2_ADDRESS_PARK_ENTRANCE_FEE, uint16) = 0;
|
||||
}
|
||||
RCT2_GLOBAL(RCT2_ADDRESS_GAME_FLAGS, uint32) |= GAME_FLAGS_18;
|
||||
RCT2_CALLPROC_EBPSAFE(0x006837E3);
|
||||
gfx_invalidate_screen();
|
||||
RCT2_GLOBAL(0x009DEA66, uint16) = 0;
|
||||
RCT2_GLOBAL(0x009DEA5C, uint16) = 62000;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -18,6 +18,8 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*****************************************************************************/
|
||||
|
||||
#include <lodepng.h>
|
||||
#include <stdio.h>
|
||||
#include <windows.h>
|
||||
#include "addresses.h"
|
||||
#include "gfx.h"
|
||||
@@ -26,6 +28,16 @@
|
||||
#include "strings.h"
|
||||
#include "window_error.h"
|
||||
|
||||
enum {
|
||||
SCREENSHOT_FORMAT_BMP,
|
||||
SCREENSHOT_FORMAT_PNG
|
||||
};
|
||||
|
||||
int gScreenshotFormat = SCREENSHOT_FORMAT_BMP;
|
||||
|
||||
static int screenshot_dump_bmp();
|
||||
static int screenshot_dump_png();
|
||||
|
||||
/**
|
||||
*
|
||||
* rct2: 0x006E3AEC
|
||||
@@ -50,17 +62,14 @@ void screenshot_check()
|
||||
}
|
||||
}
|
||||
|
||||
static int screenshot_get_next_path(char *path)
|
||||
static int screenshot_get_next_path(char *path, char *extension)
|
||||
{
|
||||
char *placeHolder;
|
||||
|
||||
strcpy(path, RCT2_ADDRESS(RCT2_ADDRESS_APP_PATH_SLASH, char));
|
||||
placeHolder = path + strlen(path);
|
||||
|
||||
int i;
|
||||
for (i = 1; i < 1000; i++) {
|
||||
RCT2_GLOBAL(0x013CE952, uint16) = i;
|
||||
format_string(placeHolder, STR_SCR_BMP, 0x013CE952);
|
||||
|
||||
// Glue together path and filename
|
||||
sprintf(path, "%sSCR%d%s", RCT2_ADDRESS(RCT2_ADDRESS_APP_PATH_SLASH, char), i, extension);
|
||||
|
||||
if (GetFileAttributes(path) == INVALID_FILE_ATTRIBUTES && GetLastError() == ERROR_FILE_NOT_FOUND)
|
||||
return i;
|
||||
@@ -69,6 +78,18 @@ static int screenshot_get_next_path(char *path)
|
||||
return -1;
|
||||
}
|
||||
|
||||
int screenshot_dump()
|
||||
{
|
||||
switch (gScreenshotFormat) {
|
||||
case SCREENSHOT_FORMAT_BMP:
|
||||
return screenshot_dump_bmp();
|
||||
case SCREENSHOT_FORMAT_PNG:
|
||||
return screenshot_dump_png();
|
||||
default:
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
// Bitmap header structs, for cross platform purposes
|
||||
typedef struct {
|
||||
uint16 bfType;
|
||||
@@ -96,7 +117,7 @@ typedef struct {
|
||||
*
|
||||
* rct2: 0x00683D20
|
||||
*/
|
||||
int screenshot_dump()
|
||||
int screenshot_dump_bmp()
|
||||
{
|
||||
BitmapFileHeader header;
|
||||
BitmapInfoHeader info;
|
||||
@@ -107,7 +128,7 @@ int screenshot_dump()
|
||||
DWORD bytesWritten;
|
||||
|
||||
// Get a free screenshot path
|
||||
if ((index = screenshot_get_next_path(path)) == -1)
|
||||
if ((index = screenshot_get_next_path(path, ".bmp")) == -1)
|
||||
return -1;
|
||||
|
||||
// Open file for writing
|
||||
@@ -188,5 +209,48 @@ int screenshot_dump()
|
||||
CloseHandle(hFile);
|
||||
free(buffer);
|
||||
|
||||
return index;
|
||||
}
|
||||
|
||||
int screenshot_dump_png()
|
||||
{
|
||||
int i, index, width, height, stride;
|
||||
char path[MAX_PATH] = "";
|
||||
|
||||
unsigned char r, g, b, a = 255;
|
||||
|
||||
unsigned char* png;
|
||||
size_t pngSize;
|
||||
LodePNGState state;
|
||||
|
||||
// Get a free screenshot path
|
||||
if ((index = screenshot_get_next_path(path, ".png")) == -1)
|
||||
return -1;
|
||||
|
||||
|
||||
lodepng_state_init(&state);
|
||||
state.info_raw.colortype = LCT_PALETTE;
|
||||
|
||||
// Get image size
|
||||
width = RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_WIDTH, uint16);
|
||||
height = RCT2_GLOBAL(RCT2_ADDRESS_SCREEN_HEIGHT, uint16);
|
||||
stride = (width + 3) & 0xFFFFFFFC;
|
||||
|
||||
for (i = 0; i < 246; i++) {
|
||||
b = RCT2_ADDRESS(0x01424680, uint8)[i * 4 + 0];
|
||||
g = RCT2_ADDRESS(0x01424680, uint8)[i * 4 + 1];
|
||||
r = RCT2_ADDRESS(0x01424680, uint8)[i * 4 + 2];
|
||||
|
||||
lodepng_palette_add(&state.info_raw, r, g, b, a);
|
||||
}
|
||||
|
||||
rct_drawpixelinfo *dpi = RCT2_ADDRESS(RCT2_ADDRESS_SCREEN_DPI, rct_drawpixelinfo);
|
||||
|
||||
unsigned int error = lodepng_encode(&png, &pngSize, dpi->bits, stride, dpi->height, &state);
|
||||
if (!error) lodepng_save_file(png, pngSize, path);
|
||||
|
||||
if (error) fprintf(stderr, "error: %u: %s\n", error, lodepng_error_text(error));
|
||||
|
||||
free(png);
|
||||
return index;
|
||||
}
|
||||
@@ -21,6 +21,8 @@
|
||||
#ifndef _SCREENSHOT_H_
|
||||
#define _SCREENSHOT_H_
|
||||
|
||||
extern int gScreenshotFormat;
|
||||
|
||||
void screenshot_check();
|
||||
int screenshot_dump();
|
||||
|
||||
|
||||
@@ -221,7 +221,8 @@ static void window_game_bottom_toolbar_tooltip()
|
||||
break;
|
||||
case WIDX_DATE:
|
||||
month = RCT2_GLOBAL(RCT2_ADDRESS_CURRENT_MONTH_YEAR, sint16) & 7;
|
||||
day = ((RCT2_GLOBAL(RCT2_ADDRESS_CURRENT_MONTH_TICKS, sint16) * ((short*)0x00993988)[month]) >> 16) & 0xFF;
|
||||
day = ((RCT2_GLOBAL(RCT2_ADDRESS_CURRENT_MONTH_TICKS, sint16) * days_in_month[month]) >> 16) & 0xFF;
|
||||
|
||||
*((short*)0x013CE952) = STR_DATE_DAY_1 + day;
|
||||
*((short*)0x013CE954) = STR_MONTH_MARCH + month;
|
||||
widgetIndex = 0;
|
||||
|
||||
Reference in New Issue
Block a user