Rules
FAQ
Members List
Search
Register
Login
Raised This Month: $143
Target: $400
35%
Showing results 1 to 18 of 18
Search took
0.00
seconds.
Search:
Posts Made By:
commonbullet
Forum:
Module Coding
11-27-2010, 16:59
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf (key/value trees) - 1.07
This module needed an update, so here’s version 1.07; many parts have been rewritten from scratch. These are the most relevant changes:
Cleaner data structure, no more useless indexing and better...
Forum:
Module Coding
10-28-2010, 23:00
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf (key/value trees) - 1.06
Binary - linux/windows, source packages have been updated.
Forum:
Module Coding
10-28-2010, 19:30
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf (key/value trees) - 1.05a
I found a bug in the node removal method. I believe it's fixed, I'm attaching the windows binary and I'll compile for linux and update pack when I get time.
Forum:
Module Coding
10-27-2010, 17:01
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf (key/value trees) - 1.05a
Linux or Windows?
Also it would be easier to track the problem if you could provide more details, files used by the plugin etc.
Forum:
Module Coding
07-27-2010, 23:28
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf (key/value trees) - 1.05a
Sorry, I didn't read your post carefully before, it's about your plugin. Actually I can't tell you what's going on without reading the code - there are several ways you can cause a crash since...
Forum:
Module Coding
07-21-2007, 03:10
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf (key/value trees) - 1.05a
1.05a (small but important update)
- Fixed some mishandled destructors that could cause memory leaks
Big thanks to Bail for including it in the web compiler.
Forum:
Module Coding
07-10-2007, 14:53
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees - 1.05
1.05 Update
- Fixed parser forwards - sometimes the last node would be omitted
- Fixed root node removal would cause a tree to become unusable
- Fixed vdf_find_in_branch could cause crash
-...
Forum:
Module Coding
06-06-2007, 20:24
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees - 1.04
1.04 Update
- Implemented a simple event based parsing model – vdf_parse, to be used when no tree object creation is needed. It’s documented in inc file, see also vdf_parse.sma example.
- Added...
Forum:
Module Coding
06-03-2007, 01:24
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees - 1.03a
There's a bug in the linux version. Since I'm planning to release a new version soon, I'm posting a fix here.
Thanks to Zenith77 for reporting that and sawce for telling me how to debug it in...
Forum:
Module Coding
04-16-2007, 00:30
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees - 1.03a
Update 1.03a
- fixed find_in_branch - didn't work, I'd forgotten to include in table
- fixed vdf_save, vdf_create wouldn't get the correct path from mod directory
I saw a "daily mapcycle"...
Forum:
Module Coding
04-07-2007, 15:09
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees - 1.03
1.03 Update
Lots of new stuff + fixes:
- It now requires tags for trees, nodes, and search. It tends to get safer from mistakes that could cause crashes, and it makes the source in pawn more...
Forum:
Module Coding
03-01-2007, 19:16
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees - 1.02
Update 1.02
- Included new search natives:
// creates a new search
vdf_create_search();
// sets up search
vdf_set_search(search, tree, const searchstr[], searchtype = 0, level =-1,...
Forum:
Module Coding
02-25-2007, 14:04
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees - 1.01
Update:
- updated sdk files and included auto load feature.
- nodes and trees are now pointers (thus should be used carefully)
- included the following natives.
vdf_set_node_key(node, const...
Forum:
Module Coding
02-24-2007, 18:51
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees
I guess I'll include this form:
vdf_is_first_node(node);
vdf_is_last_node(node); actually, they could be easily replaced with these existent functions
!vdf_get_previous_node(node) // if true...
Forum:
Module Coding
02-24-2007, 15:17
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees
Cool ideas.
You could check if it's the last or first node with "vdf_get_first_node" or vdf_get_last_node", but I see the advantages of using your model in a loop.
The new version is going to...
Forum:
Module Coding
02-23-2007, 11:51
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees
Thank you sawce for that linux build, I'll check how to do the auto load thing and update my source files (I was using sdk from amxx 1.75).
Very cool reading - thanks Bail, maybe in future it...
Forum:
Module Coding
02-22-2007, 16:18
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Re: Module: Vdf trees
Yep, Zenith that's what it's supposed to be ;).
Thanks Rukia.
EDIT: I am working on that.
Forum:
Module Coding
02-22-2007, 00:19
Replies:
36
Sticky:
Module: Vdf (key/value trees) - 1.07
Views:
108,523
Posted By
commonbullet
Module: Vdf (key/value trees) - 1.07
This is a simple module to handle vdf (valve data files) trees. It makes very easy to read, create and write node structures.
A vdf tree is composed by nodes of key/value string pairs in quotation...
Showing results 1 to 18 of 18
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
Server Discussion
Source Servers (SRCDS)
HL1 Servers (HLDS)
AMX Mod X
News
Bug Reports
General
Off-Topic
Plugins
Suggestions / Requests
Approved Plugins
New Plugin Submissions
Unapproved/Old Plugins
Translation Request
High-Traffic Plugins
GunGame
UAIO (Ultimate All-In-One Plugin)
xREDIRECT
CSDM
AMX Super
RuneMod
Zombie Plague Mod
SuperHero Mod
News
Tech Support
Scripting Help
Off-Topic / General Chat
Heroes
Suggestions / Requests
Approved Heroes
New Submissions
Unapproved/Old Heroes
Module Heroes
SuperHero Mod Stats - By 123
(OLD) Bug Reports
Scripting
Scripting Help
Code Snippets/Tutorials
Module Coding
Donor Access
SourceMod
News
General
Plugins
Plugins
Unapproved Plugins
Plugin/Gameplay Ideas and Requests
High-Traffic Plugins
SourceMod Anti-Cheat
Zombie:Reloaded
SourceBans / SourceBans++
VSH / Freak Fortress
Store
SM_Hosties
HLstatsX:CE
Scripting
Extensions
Snippets and Tutorials
Donor Access
Metamod: Source
Metamod:Source Plugins
Metamod:Source Questions
Coding MM:S Plugins & SM Extensions
Hosted Stuff
Asherkin's Plugins
TFDodgeball
TF2Items
SteamTools
Bail's Plugins
CSDM
CS:S DM
Off-Topic & Trash
Off-Topic
Trash
All times are GMT -4. The time now is
13:41
.
DMCA
-
Archive
-
Top
Powered by vBulletin®
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Theme made by Freecode