psu_characters: Remove validate_name as it's not doing anything yet.
This commit is contained in:
parent
6466f05728
commit
d2f7c9e83f
@ -48,13 +48,14 @@ event(char_select_request, Client=#client{gid=GID}) ->
|
||||
|
||||
%% @doc The options default to 0 for everything except brightness to 4.
|
||||
%% @todo Don't forget to check for the character's name.
|
||||
%% 00F7 is the RGBA color control character.
|
||||
%% 03F7 is the RGB color control character.
|
||||
event({char_select_create, Slot, CharBin}, #client{gid=GID}) ->
|
||||
%% check for valid character appearance
|
||||
%~ << _Name:512, RaceID:8, GenderID:8, _TypeID:8, AppearanceBin:776/bits, _/bits >> = CharBin,
|
||||
%~ Race = proplists:get_value(RaceID, [{0, human}, {1, newman}, {2, cast}, {3, beast}]),
|
||||
%~ Gender = proplists:get_value(GenderID, [{0, male}, {1, female}]),
|
||||
%~ Appearance = psu_appearance:binary_to_tuple(Race, AppearanceBin),
|
||||
%~ psu_characters:validate_name(Name),
|
||||
%~ psu_appearance:validate_char_create(Race, Gender, Appearance),
|
||||
%% end of check, continue doing it wrong past that point for now
|
||||
Folder = egs_accounts:get_folder(GID),
|
||||
|
@ -21,7 +21,7 @@
|
||||
-export([
|
||||
character_tuple_to_binary/1, character_user_to_binary/1, class_atom_to_binary/1, class_binary_to_atom/1,
|
||||
gender_atom_to_binary/1, gender_binary_to_atom/1, options_binary_to_tuple/1, options_tuple_to_binary/1,
|
||||
race_atom_to_binary/1, race_binary_to_atom/1, stats_tuple_to_binary/1, validate_name/1
|
||||
race_atom_to_binary/1, race_binary_to_atom/1, stats_tuple_to_binary/1
|
||||
]).
|
||||
|
||||
-include("include/records.hrl").
|
||||
@ -171,12 +171,3 @@ stats_tuple_to_binary(Tuple) ->
|
||||
{stats, ATP, ATA, TP, DFP, EVP, MST, STA} = Tuple,
|
||||
<< ATP:16/little, DFP:16/little, ATA:16/little, EVP:16/little,
|
||||
STA:16/little, 0:16, TP:16/little, MST:16/little >>.
|
||||
|
||||
%% @doc Validate the character's name.
|
||||
%% 00F7 is the RGBA color control character.
|
||||
%% 03F7 is the RGB color control character.
|
||||
%% Trigger an exception rather than handling errors.
|
||||
|
||||
validate_name(_Name) ->
|
||||
%~ Something like that probably: << true = X =/= 16#00F7 andalso X =/= 16#03F7 || X:16 <- Name>>.
|
||||
ok.
|
||||
|
Loading…
Reference in New Issue
Block a user