Skip to content

Commit 1beb38b

Browse files
committed
update builtins_txt [ci skip]
1 parent 4e9c965 commit 1beb38b

File tree

3 files changed

+63
-3
lines changed

3 files changed

+63
-3
lines changed

builtins.txt

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated by LSL2 Derived Files Generator. Database version: 0.0.20230203000; output module version: 0.0.20140731000
1+
// Generated by LSL2 Derived Files Generator. Database version: 0.0.20230409000; output module version: 0.0.20140731000
22
integer llAbs( integer val )
33
float llAcos( float val )
44
void llAddToLandBanList( key avatar, float hours )
@@ -216,6 +216,7 @@ vector llGroundContour( vector offset )
216216
vector llGroundNormal( vector offset )
217217
void llGroundRepel( float height, integer water, float tau )
218218
vector llGroundSlope( vector offset )
219+
string llHMAC( string authkey, string message, string hashalg )
219220
key llHTTPRequest( string url, list parameters, string body )
220221
void llHTTPResponse( key request_id, integer status, string body )
221222
integer llHash( string val )
@@ -326,6 +327,7 @@ void llRemoveInventory( string item )
326327
void llRemoveVehicleFlags( integer flags )
327328
integer llReplaceAgentEnvironment( key agent_id, float transition, string environment )
328329
integer llReplaceEnvironment( vector position, string environment, integer track_no, integer day_length, integer day_offset )
330+
string llReplaceSubString( string source, string search, string replace, integer count )
329331
key llRequestAgentData( key id, integer data )
330332
key llRequestDisplayName( key id )
331333
void llRequestExperiencePermissions( key agent, string name )
@@ -430,6 +432,7 @@ void llSetVehicleType( integer type )
430432
void llSetVehicleVectorParam( integer param, vector vec )
431433
void llSetVelocity( vector velocity, integer local )
432434
void llShout( integer channel, string msg )
435+
string llSignRSA( string privkey, string message, string hashalg )
433436
float llSin( float theta )
434437
integer llSitOnLink( key agent_id, integer link )
435438
void llSitTarget( vector offset, rotation rot )
@@ -473,6 +476,7 @@ key llUpdateKeyValue( string k, string v, integer checked, string original_value
473476
float llVecDist( vector v1, vector v2 )
474477
float llVecMag( vector v )
475478
vector llVecNorm( vector v )
479+
integer llVerifyRSA( string pubkey, string message, string signature, string hashalg )
476480
void llVolumeDetect( integer detect )
477481
void llWanderWithin( vector center, vector radius, list options )
478482
float llWater( vector offset )
@@ -1144,7 +1148,33 @@ const integer REVERSE = 0x4
11441148
const integer ROTATE = 0x20
11451149
const integer SCALE = 0x40
11461150
const integer SCRIPTED = 0x8
1151+
const integer SIM_STAT_ACTIVE_SCRIPT_COUNT = 12
1152+
const integer SIM_STAT_AGENT_COUNT = 10
1153+
const integer SIM_STAT_AGENT_MS = 7
1154+
const integer SIM_STAT_AGENT_UPDATES = 2
1155+
const integer SIM_STAT_AI_MS = 26
1156+
const integer SIM_STAT_ASSET_DOWNLOADS = 15
1157+
const integer SIM_STAT_ASSET_UPLOADS = 16
1158+
const integer SIM_STAT_CHILD_AGENT_COUNT = 11
1159+
const integer SIM_STAT_FRAME_MS = 3
1160+
const integer SIM_STAT_IMAGE_MS = 8
1161+
const integer SIM_STAT_IO_PUMP_MS = 24
1162+
const integer SIM_STAT_NET_MS = 4
1163+
const integer SIM_STAT_OTHER_MS = 5
1164+
const integer SIM_STAT_PACKETS_IN = 13
1165+
const integer SIM_STAT_PACKETS_OUT = 14
11471166
const integer SIM_STAT_PCT_CHARS_STEPPED = 0
1167+
const integer SIM_STAT_PHYSICS_FPS = 1
1168+
const integer SIM_STAT_PHYSICS_MS = 6
1169+
const integer SIM_STAT_PHYSICS_OTHER_MS = 20
1170+
const integer SIM_STAT_PHYSICS_SHAPE_MS = 19
1171+
const integer SIM_STAT_PHYSICS_STEP_MS = 18
1172+
const integer SIM_STAT_SCRIPT_EPS = 21
1173+
const integer SIM_STAT_SCRIPT_MS = 9
1174+
const integer SIM_STAT_SCRIPT_RUN_PCT = 25
1175+
const integer SIM_STAT_SLEEP_MS = 23
1176+
const integer SIM_STAT_SPARE_MS = 22
1177+
const integer SIM_STAT_UNACKED_BYTES = 17
11481178
const integer SIT_INVALID_AGENT = -4
11491179
const integer SIT_INVALID_LINK = -5
11501180
const integer SIT_INVALID_OBJECT = -7

builtins_txt.cc

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,7 @@ const char *builtins_txt[] = {
219219
"vector llGroundNormal( vector offset )",
220220
"void llGroundRepel( float height, integer water, float tau )",
221221
"vector llGroundSlope( vector offset )",
222+
"string llHMAC( string authkey, string message, string hashalg )",
222223
"key llHTTPRequest( string url, list parameters, string body )",
223224
"void llHTTPResponse( key request_id, integer status, string body )",
224225
"integer llHash( string val )",
@@ -329,6 +330,7 @@ const char *builtins_txt[] = {
329330
"void llRemoveVehicleFlags( integer flags )",
330331
"integer llReplaceAgentEnvironment( key agent_id, float transition, string environment )",
331332
"integer llReplaceEnvironment( vector position, string environment, integer track_no, integer day_length, integer day_offset )",
333+
"string llReplaceSubString( string source, string search, string replace, integer count )",
332334
"key llRequestAgentData( key id, integer data )",
333335
"key llRequestDisplayName( key id )",
334336
"void llRequestExperiencePermissions( key agent, string name )",
@@ -433,6 +435,7 @@ const char *builtins_txt[] = {
433435
"void llSetVehicleVectorParam( integer param, vector vec )",
434436
"void llSetVelocity( vector velocity, integer local )",
435437
"void llShout( integer channel, string msg )",
438+
"string llSignRSA( string privkey, string message, string hashalg )",
436439
"float llSin( float theta )",
437440
"integer llSitOnLink( key agent_id, integer link )",
438441
"void llSitTarget( vector offset, rotation rot )",
@@ -476,6 +479,7 @@ const char *builtins_txt[] = {
476479
"float llVecDist( vector v1, vector v2 )",
477480
"float llVecMag( vector v )",
478481
"vector llVecNorm( vector v )",
482+
"integer llVerifyRSA( string pubkey, string message, string signature, string hashalg )",
479483
"void llVolumeDetect( integer detect )",
480484
"void llWanderWithin( vector center, vector radius, list options )",
481485
"float llWater( vector offset )",
@@ -1147,7 +1151,33 @@ const char *builtins_txt[] = {
11471151
"const integer ROTATE = 0x20",
11481152
"const integer SCALE = 0x40",
11491153
"const integer SCRIPTED = 0x8",
1154+
"const integer SIM_STAT_ACTIVE_SCRIPT_COUNT = 12",
1155+
"const integer SIM_STAT_AGENT_COUNT = 10",
1156+
"const integer SIM_STAT_AGENT_MS = 7",
1157+
"const integer SIM_STAT_AGENT_UPDATES = 2",
1158+
"const integer SIM_STAT_AI_MS = 26",
1159+
"const integer SIM_STAT_ASSET_DOWNLOADS = 15",
1160+
"const integer SIM_STAT_ASSET_UPLOADS = 16",
1161+
"const integer SIM_STAT_CHILD_AGENT_COUNT = 11",
1162+
"const integer SIM_STAT_FRAME_MS = 3",
1163+
"const integer SIM_STAT_IMAGE_MS = 8",
1164+
"const integer SIM_STAT_IO_PUMP_MS = 24",
1165+
"const integer SIM_STAT_NET_MS = 4",
1166+
"const integer SIM_STAT_OTHER_MS = 5",
1167+
"const integer SIM_STAT_PACKETS_IN = 13",
1168+
"const integer SIM_STAT_PACKETS_OUT = 14",
11501169
"const integer SIM_STAT_PCT_CHARS_STEPPED = 0",
1170+
"const integer SIM_STAT_PHYSICS_FPS = 1",
1171+
"const integer SIM_STAT_PHYSICS_MS = 6",
1172+
"const integer SIM_STAT_PHYSICS_OTHER_MS = 20",
1173+
"const integer SIM_STAT_PHYSICS_SHAPE_MS = 19",
1174+
"const integer SIM_STAT_PHYSICS_STEP_MS = 18",
1175+
"const integer SIM_STAT_SCRIPT_EPS = 21",
1176+
"const integer SIM_STAT_SCRIPT_MS = 9",
1177+
"const integer SIM_STAT_SCRIPT_RUN_PCT = 25",
1178+
"const integer SIM_STAT_SLEEP_MS = 23",
1179+
"const integer SIM_STAT_SPARE_MS = 22",
1180+
"const integer SIM_STAT_UNACKED_BYTES = 17",
11511181
"const integer SIT_INVALID_AGENT = -4",
11521182
"const integer SIT_INVALID_LINK = -5",
11531183
"const integer SIT_INVALID_OBJECT = -7",

kwdb_version.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
LSL2 Derived Files Generator version: 0.0.20140116001
2-
Database version: 0.0.20230304000
2+
Database version: 0.0.20230409000
33
Based on the following grid versions:
4-
sl (Second Life): 2023-01-11.577595
4+
sl (Second Life): 2023-03-24.579022
55
os (OpenSimulator): v0.9.2.1

0 commit comments

Comments
 (0)